snips.sh

    1{
    2  "SchemaVersion": 2,
    3  "ArtifactName": "nginx:1.22.0",
    4  "ArtifactType": "container_image",
    5  "Metadata": {
    6    "OS": {
    7      "Family": "debian",
    8      "Name": "11.5"
    9    },
   10    "ImageID": "sha256:08a1cbf9c69edd2ab8e5250ae97703f60b9393fc5a4827cedda4b7387a5cfc6a",
   11    "DiffIDs": [
   12      "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229",
   13      "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b",
   14      "sha256:89dade9c1793e410569e09590ef37bbad0a66f55106880547a5bf79fc045be11",
   15      "sha256:eabe89adceee656a54376951753f0721007fcc311429d8f8be78c50e06b3b624",
   16      "sha256:a6edfce9a309ca578ed40204ad3332ad5a098cedac483bf8187698891835c1d4",
   17      "sha256:0810d1ac3f2f042aaa11f5dc95b5d2bad0a2be99fb6563672b47738acb6b011b"
   18    ],
   19    "RepoTags": [
   20      "nginx:1.22.0"
   21    ],
   22    "RepoDigests": [
   23      "nginx@sha256:f0d28f2047853cbc10732d6eaa1b57f1f4db9b017679b9fd7966b6a2f9ccc2d1"
   24    ],
   25    "ImageConfig": {
   26      "architecture": "amd64",
   27      "container": "6d7ed41168122fb8cbf1944218eb7f8fbae3ace6e9cde2efa4246436e5fa94d4",
   28      "created": "2022-10-05T12:45:11.834223042Z",
   29      "docker_version": "20.10.12",
   30      "history": [
   31        {
   32          "created": "2022-10-04T23:26:39Z",
   33          "created_by": "/bin/sh -c #(nop) ADD file:b78b777208be08edd8f297035cdfbacddb45170ad778fd643c792ee045187e39 in / "
   34        },
   35        {
   36          "created": "2022-10-04T23:26:39Z",
   37          "created_by": "/bin/sh -c #(nop)  CMD [\"bash\"]",
   38          "empty_layer": true
   39        },
   40        {
   41          "created": "2022-10-05T12:44:01Z",
   42          "created_by": "/bin/sh -c #(nop)  LABEL maintainer=NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e",
   43          "empty_layer": true
   44        },
   45        {
   46          "created": "2022-10-05T12:44:52Z",
   47          "created_by": "/bin/sh -c #(nop)  ENV NGINX_VERSION=1.22.0",
   48          "empty_layer": true
   49        },
   50        {
   51          "created": "2022-10-05T12:44:53Z",
   52          "created_by": "/bin/sh -c #(nop)  ENV NJS_VERSION=0.7.6",
   53          "empty_layer": true
   54        },
   55        {
   56          "created": "2022-10-05T12:44:53Z",
   57          "created_by": "/bin/sh -c #(nop)  ENV PKG_RELEASE=1~bullseye",
   58          "empty_layer": true
   59        },
   60        {
   61          "created": "2022-10-05T12:45:10Z",
   62          "created_by": "/bin/sh -c set -x     \u0026\u0026 addgroup --system --gid 101 nginx     \u0026\u0026 adduser --system --disabled-login --ingroup nginx --no-create-home --home /nonexistent --gecos \"nginx user\" --shell /bin/false --uid 101 nginx     \u0026\u0026 apt-get update     \u0026\u0026 apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates     \u0026\u0026     NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62;     found='';     for server in         hkp://keyserver.ubuntu.com:80         pgp.mit.edu     ; do         echo \"Fetching GPG key $NGINX_GPGKEY from $server\";         apt-key adv --keyserver \"$server\" --keyserver-options timeout=10 --recv-keys \"$NGINX_GPGKEY\" \u0026\u0026 found=yes \u0026\u0026 break;     done;     test -z \"$found\" \u0026\u0026 echo \u003e\u00262 \"error: failed to fetch GPG key $NGINX_GPGKEY\" \u0026\u0026 exit 1;     apt-get remove --purge --auto-remove -y gnupg1 \u0026\u0026 rm -rf /var/lib/apt/lists/*     \u0026\u0026 dpkgArch=\"$(dpkg --print-architecture)\"     \u0026\u0026 nginxPackages=\"         nginx=${NGINX_VERSION}-${PKG_RELEASE}         nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE}         nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE}         nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE}         nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${PKG_RELEASE}     \"     \u0026\u0026 case \"$dpkgArch\" in         amd64|arm64)             echo \"deb https://nginx.org/packages/debian/ bullseye nginx\" \u003e\u003e /etc/apt/sources.list.d/nginx.list             \u0026\u0026 apt-get update             ;;         *)             echo \"deb-src https://nginx.org/packages/debian/ bullseye nginx\" \u003e\u003e /etc/apt/sources.list.d/nginx.list                         \u0026\u0026 tempDir=\"$(mktemp -d)\"             \u0026\u0026 chmod 777 \"$tempDir\"                         \u0026\u0026 savedAptMark=\"$(apt-mark showmanual)\"                         \u0026\u0026 apt-get update             \u0026\u0026 apt-get build-dep -y $nginxPackages             \u0026\u0026 (                 cd \"$tempDir\"                 \u0026\u0026 DEB_BUILD_OPTIONS=\"nocheck parallel=$(nproc)\"                     apt-get source --compile $nginxPackages             )                         \u0026\u0026 apt-mark showmanual | xargs apt-mark auto \u003e /dev/null             \u0026\u0026 { [ -z \"$savedAptMark\" ] || apt-mark manual $savedAptMark; }                         \u0026\u0026 ls -lAFh \"$tempDir\"             \u0026\u0026 ( cd \"$tempDir\" \u0026\u0026 dpkg-scanpackages . \u003e Packages )             \u0026\u0026 grep '^Package: ' \"$tempDir/Packages\"             \u0026\u0026 echo \"deb [ trusted=yes ] file://$tempDir ./\" \u003e /etc/apt/sources.list.d/temp.list             \u0026\u0026 apt-get -o Acquire::GzipIndexes=false update             ;;     esac         \u0026\u0026 apt-get install --no-install-recommends --no-install-suggests -y                         $nginxPackages                         gettext-base                         curl     \u0026\u0026 apt-get remove --purge --auto-remove -y \u0026\u0026 rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list         \u0026\u0026 if [ -n \"$tempDir\" ]; then         apt-get purge -y --auto-remove         \u0026\u0026 rm -rf \"$tempDir\" /etc/apt/sources.list.d/temp.list;     fi     \u0026\u0026 ln -sf /dev/stdout /var/log/nginx/access.log     \u0026\u0026 ln -sf /dev/stderr /var/log/nginx/error.log     \u0026\u0026 mkdir /docker-entrypoint.d"
   63        },
   64        {
   65          "created": "2022-10-05T12:45:11Z",
   66          "created_by": "/bin/sh -c #(nop) COPY file:65504f71f5855ca017fb64d502ce873a31b2e0decd75297a8fb0a287f97acf92 in / "
   67        },
   68        {
   69          "created": "2022-10-05T12:45:11Z",
   70          "created_by": "/bin/sh -c #(nop) COPY file:0b866ff3fc1ef5b03c4e6c8c513ae014f691fb05d530257dfffd07035c1b75da in /docker-entrypoint.d "
   71        },
   72        {
   73          "created": "2022-10-05T12:45:11Z",
   74          "created_by": "/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d "
   75        },
   76        {
   77          "created": "2022-10-05T12:45:11Z",
   78          "created_by": "/bin/sh -c #(nop) COPY file:09a214a3e07c919af2fb2d7c749ccbc446b8c10eb217366e5a65640ee9edcc25 in /docker-entrypoint.d "
   79        },
   80        {
   81          "created": "2022-10-05T12:45:11Z",
   82          "created_by": "/bin/sh -c #(nop)  ENTRYPOINT [\"/docker-entrypoint.sh\"]",
   83          "empty_layer": true
   84        },
   85        {
   86          "created": "2022-10-05T12:45:11Z",
   87          "created_by": "/bin/sh -c #(nop)  EXPOSE 80",
   88          "empty_layer": true
   89        },
   90        {
   91          "created": "2022-10-05T12:45:11Z",
   92          "created_by": "/bin/sh -c #(nop)  STOPSIGNAL SIGQUIT",
   93          "empty_layer": true
   94        },
   95        {
   96          "created": "2022-10-05T12:45:11Z",
   97          "created_by": "/bin/sh -c #(nop)  CMD [\"nginx\" \"-g\" \"daemon off;\"]",
   98          "empty_layer": true
   99        }
  100      ],
  101      "os": "linux",
  102      "rootfs": {
  103        "type": "layers",
  104        "diff_ids": [
  105          "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229",
  106          "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b",
  107          "sha256:89dade9c1793e410569e09590ef37bbad0a66f55106880547a5bf79fc045be11",
  108          "sha256:eabe89adceee656a54376951753f0721007fcc311429d8f8be78c50e06b3b624",
  109          "sha256:a6edfce9a309ca578ed40204ad3332ad5a098cedac483bf8187698891835c1d4",
  110          "sha256:0810d1ac3f2f042aaa11f5dc95b5d2bad0a2be99fb6563672b47738acb6b011b"
  111        ]
  112      },
  113      "config": {
  114        "Cmd": [
  115          "nginx",
  116          "-g",
  117          "daemon off;"
  118        ],
  119        "Entrypoint": [
  120          "/docker-entrypoint.sh"
  121        ],
  122        "Env": [
  123          "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
  124          "NGINX_VERSION=1.22.0",
  125          "NJS_VERSION=0.7.6",
  126          "PKG_RELEASE=1~bullseye"
  127        ],
  128        "Image": "sha256:36fe753fd94f36bbf8b4a860f26278ade5e65892cd46338aff73d4885bac53cd",
  129        "Labels": {
  130          "maintainer": "NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e"
  131        },
  132        "StopSignal": "SIGQUIT"
  133      }
  134    }
  135  },
  136  "Results": [
  137    {
  138      "Target": "nginx:1.22.0 (debian 11.5)",
  139      "Class": "os-pkgs",
  140      "Type": "debian",
  141      "Vulnerabilities": [
  142        {
  143          "VulnerabilityID": "CVE-2011-3374",
  144          "PkgID": "apt@2.2.4",
  145          "PkgName": "apt",
  146          "InstalledVersion": "2.2.4",
  147          "Status": "affected",
  148          "Layer": {
  149            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
  150            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
  151          },
  152          "SeveritySource": "debian",
  153          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374",
  154          "DataSource": {
  155            "ID": "debian",
  156            "Name": "Debian Security Tracker",
  157            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  158          },
  159          "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...",
  160          "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.",
  161          "Severity": "LOW",
  162          "CweIDs": [
  163            "CWE-347"
  164          ],
  165          "CVSS": {
  166            "nvd": {
  167              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N",
  168              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N",
  169              "V2Score": 4.3,
  170              "V3Score": 3.7
  171            }
  172          },
  173          "References": [
  174            "https://access.redhat.com/security/cve/cve-2011-3374",
  175            "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480",
  176            "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html",
  177            "https://seclists.org/fulldisclosure/2011/Sep/221",
  178            "https://security-tracker.debian.org/tracker/CVE-2011-3374",
  179            "https://snyk.io/vuln/SNYK-LINUX-APT-116518",
  180            "https://ubuntu.com/security/CVE-2011-3374"
  181          ],
  182          "PublishedDate": "2019-11-26T00:15:00Z",
  183          "LastModifiedDate": "2021-02-09T16:08:00Z"
  184        },
  185        {
  186          "VulnerabilityID": "CVE-2022-3715",
  187          "PkgID": "bash@5.1-2+deb11u1",
  188          "PkgName": "bash",
  189          "InstalledVersion": "5.1-2+deb11u1",
  190          "Status": "affected",
  191          "Layer": {
  192            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
  193            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
  194          },
  195          "SeveritySource": "nvd",
  196          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3715",
  197          "DataSource": {
  198            "ID": "debian",
  199            "Name": "Debian Security Tracker",
  200            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  201          },
  202          "Title": "a heap-buffer-overflow in valid_parameter_transform",
  203          "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.",
  204          "Severity": "HIGH",
  205          "CweIDs": [
  206            "CWE-787"
  207          ],
  208          "CVSS": {
  209            "nvd": {
  210              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
  211              "V3Score": 7.8
  212            },
  213            "redhat": {
  214              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:H",
  215              "V3Score": 6.6
  216            }
  217          },
  218          "References": [
  219            "https://access.redhat.com/errata/RHSA-2023:0340",
  220            "https://access.redhat.com/security/cve/CVE-2022-3715",
  221            "https://bugzilla.redhat.com/2126720",
  222            "https://bugzilla.redhat.com/show_bug.cgi?id=2126720",
  223            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3715",
  224            "https://errata.almalinux.org/9/ALSA-2023-0340.html",
  225            "https://errata.rockylinux.org/RLSA-2023:0340",
  226            "https://linux.oracle.com/cve/CVE-2022-3715.html",
  227            "https://linux.oracle.com/errata/ELSA-2023-0340.html",
  228            "https://lists.gnu.org/archive/html/bug-bash/2022-08/msg00147.html",
  229            "https://nvd.nist.gov/vuln/detail/CVE-2022-3715",
  230            "https://www.cve.org/CVERecord?id=CVE-2022-3715"
  231          ],
  232          "PublishedDate": "2023-01-05T15:15:00Z",
  233          "LastModifiedDate": "2023-02-24T18:38:00Z"
  234        },
  235        {
  236          "VulnerabilityID": "CVE-2022-0563",
  237          "PkgID": "bsdutils@1:2.36.1-8+deb11u1",
  238          "PkgName": "bsdutils",
  239          "InstalledVersion": "1:2.36.1-8+deb11u1",
  240          "Status": "affected",
  241          "Layer": {
  242            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
  243            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
  244          },
  245          "SeveritySource": "debian",
  246          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563",
  247          "DataSource": {
  248            "ID": "debian",
  249            "Name": "Debian Security Tracker",
  250            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  251          },
  252          "Title": "partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline",
  253          "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.",
  254          "Severity": "LOW",
  255          "CweIDs": [
  256            "CWE-209"
  257          ],
  258          "CVSS": {
  259            "nvd": {
  260              "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N",
  261              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
  262              "V2Score": 1.9,
  263              "V3Score": 5.5
  264            },
  265            "redhat": {
  266              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
  267              "V3Score": 5.5
  268            }
  269          },
  270          "References": [
  271            "https://access.redhat.com/security/cve/CVE-2022-0563",
  272            "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/",
  273            "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u",
  274            "https://nvd.nist.gov/vuln/detail/CVE-2022-0563",
  275            "https://security.netapp.com/advisory/ntap-20220331-0002/",
  276            "https://www.cve.org/CVERecord?id=CVE-2022-0563"
  277          ],
  278          "PublishedDate": "2022-02-21T19:15:00Z",
  279          "LastModifiedDate": "2022-06-03T14:15:00Z"
  280        },
  281        {
  282          "VulnerabilityID": "CVE-2016-2781",
  283          "PkgID": "coreutils@8.32-4+b1",
  284          "PkgName": "coreutils",
  285          "InstalledVersion": "8.32-4+b1",
  286          "Status": "will_not_fix",
  287          "Layer": {
  288            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
  289            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
  290          },
  291          "SeveritySource": "debian",
  292          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-2781",
  293          "DataSource": {
  294            "ID": "debian",
  295            "Name": "Debian Security Tracker",
  296            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  297          },
  298          "Title": "coreutils: Non-privileged session can escape to the parent session in chroot",
  299          "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.",
  300          "Severity": "LOW",
  301          "CweIDs": [
  302            "CWE-20"
  303          ],
  304          "CVSS": {
  305            "nvd": {
  306              "V2Vector": "AV:L/AC:L/Au:N/C:N/I:P/A:N",
  307              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:N",
  308              "V2Score": 2.1,
  309              "V3Score": 6.5
  310            },
  311            "redhat": {
  312              "V2Vector": "AV:L/AC:H/Au:N/C:C/I:C/A:C",
  313              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H",
  314              "V2Score": 6.2,
  315              "V3Score": 8.6
  316            }
  317          },
  318          "References": [
  319            "http://seclists.org/oss-sec/2016/q1/452",
  320            "http://www.openwall.com/lists/oss-security/2016/02/28/2",
  321            "http://www.openwall.com/lists/oss-security/2016/02/28/3",
  322            "https://access.redhat.com/security/cve/CVE-2016-2781",
  323            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781",
  324            "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E",
  325            "https://lore.kernel.org/patchwork/patch/793178/",
  326            "https://nvd.nist.gov/vuln/detail/CVE-2016-2781",
  327            "https://www.cve.org/CVERecord?id=CVE-2016-2781"
  328          ],
  329          "PublishedDate": "2017-02-07T15:59:00Z",
  330          "LastModifiedDate": "2021-02-25T17:15:00Z"
  331        },
  332        {
  333          "VulnerabilityID": "CVE-2017-18018",
  334          "PkgID": "coreutils@8.32-4+b1",
  335          "PkgName": "coreutils",
  336          "InstalledVersion": "8.32-4+b1",
  337          "Status": "affected",
  338          "Layer": {
  339            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
  340            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
  341          },
  342          "SeveritySource": "debian",
  343          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-18018",
  344          "DataSource": {
  345            "ID": "debian",
  346            "Name": "Debian Security Tracker",
  347            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  348          },
  349          "Title": "coreutils: race condition vulnerability in chown and chgrp",
  350          "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.",
  351          "Severity": "LOW",
  352          "CweIDs": [
  353            "CWE-362"
  354          ],
  355          "CVSS": {
  356            "nvd": {
  357              "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N",
  358              "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N",
  359              "V2Score": 1.9,
  360              "V3Score": 4.7
  361            },
  362            "redhat": {
  363              "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:R/S:U/C:L/I:L/A:L",
  364              "V3Score": 4.2
  365            }
  366          },
  367          "References": [
  368            "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html",
  369            "https://access.redhat.com/security/cve/CVE-2017-18018",
  370            "https://nvd.nist.gov/vuln/detail/CVE-2017-18018",
  371            "https://www.cve.org/CVERecord?id=CVE-2017-18018"
  372          ],
  373          "PublishedDate": "2018-01-04T04:29:00Z",
  374          "LastModifiedDate": "2018-01-19T15:46:00Z"
  375        },
  376        {
  377          "VulnerabilityID": "CVE-2022-32221",
  378          "VendorIDs": [
  379            "DSA-5330-1"
  380          ],
  381          "PkgID": "curl@7.74.0-1.3+deb11u3",
  382          "PkgName": "curl",
  383          "InstalledVersion": "7.74.0-1.3+deb11u3",
  384          "FixedVersion": "7.74.0-1.3+deb11u5",
  385          "Status": "fixed",
  386          "Layer": {
  387            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
  388            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
  389          },
  390          "SeveritySource": "nvd",
  391          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32221",
  392          "DataSource": {
  393            "ID": "debian",
  394            "Name": "Debian Security Tracker",
  395            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  396          },
  397          "Title": "POST following PUT confusion",
  398          "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.",
  399          "Severity": "CRITICAL",
  400          "CweIDs": [
  401            "CWE-668"
  402          ],
  403          "CVSS": {
  404            "nvd": {
  405              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
  406              "V3Score": 9.8
  407            },
  408            "redhat": {
  409              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N",
  410              "V3Score": 4.8
  411            }
  412          },
  413          "References": [
  414            "http://seclists.org/fulldisclosure/2023/Jan/19",
  415            "http://seclists.org/fulldisclosure/2023/Jan/20",
  416            "http://www.openwall.com/lists/oss-security/2023/05/17/4",
  417            "https://access.redhat.com/errata/RHSA-2023:0333",
  418            "https://access.redhat.com/security/cve/CVE-2022-32221",
  419            "https://bugzilla.redhat.com/2135411",
  420            "https://bugzilla.redhat.com/show_bug.cgi?id=2135411",
  421            "https://curl.se/docs/CVE-2022-32221.html",
  422            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32221",
  423            "https://errata.almalinux.org/9/ALSA-2023-0333.html",
  424            "https://errata.rockylinux.org/RLSA-2023:0333",
  425            "https://hackerone.com/reports/1704017",
  426            "https://linux.oracle.com/cve/CVE-2022-32221.html",
  427            "https://linux.oracle.com/errata/ELSA-2023-0333.html",
  428            "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html",
  429            "https://nvd.nist.gov/vuln/detail/CVE-2022-32221",
  430            "https://security.gentoo.org/glsa/202212-01",
  431            "https://security.netapp.com/advisory/ntap-20230110-0006/",
  432            "https://security.netapp.com/advisory/ntap-20230208-0002/",
  433            "https://support.apple.com/kb/HT213604",
  434            "https://support.apple.com/kb/HT213605",
  435            "https://ubuntu.com/security/notices/USN-5702-1",
  436            "https://ubuntu.com/security/notices/USN-5702-2",
  437            "https://ubuntu.com/security/notices/USN-5823-1",
  438            "https://www.cve.org/CVERecord?id=CVE-2022-32221",
  439            "https://www.debian.org/security/2023/dsa-5330"
  440          ],
  441          "PublishedDate": "2022-12-05T22:15:00Z",
  442          "LastModifiedDate": "2023-05-17T09:15:00Z"
  443        },
  444        {
  445          "VulnerabilityID": "CVE-2023-23914",
  446          "PkgID": "curl@7.74.0-1.3+deb11u3",
  447          "PkgName": "curl",
  448          "InstalledVersion": "7.74.0-1.3+deb11u3",
  449          "Status": "will_not_fix",
  450          "Layer": {
  451            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
  452            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
  453          },
  454          "SeveritySource": "nvd",
  455          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23914",
  456          "DataSource": {
  457            "ID": "debian",
  458            "Name": "Debian Security Tracker",
  459            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  460          },
  461          "Title": "HSTS ignored on multiple requests",
  462          "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.",
  463          "Severity": "CRITICAL",
  464          "CweIDs": [
  465            "CWE-319"
  466          ],
  467          "CVSS": {
  468            "nvd": {
  469              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
  470              "V3Score": 9.1
  471            },
  472            "redhat": {
  473              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
  474              "V3Score": 6.5
  475            }
  476          },
  477          "References": [
  478            "https://access.redhat.com/security/cve/CVE-2023-23914",
  479            "https://curl.se/docs/CVE-2023-23914.html",
  480            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23914",
  481            "https://hackerone.com/reports/1813864",
  482            "https://nvd.nist.gov/vuln/detail/CVE-2023-23914",
  483            "https://security.netapp.com/advisory/ntap-20230309-0006/",
  484            "https://ubuntu.com/security/notices/USN-5891-1",
  485            "https://www.cve.org/CVERecord?id=CVE-2023-23914"
  486          ],
  487          "PublishedDate": "2023-02-23T20:15:00Z",
  488          "LastModifiedDate": "2023-03-09T19:15:00Z"
  489        },
  490        {
  491          "VulnerabilityID": "CVE-2022-42916",
  492          "PkgID": "curl@7.74.0-1.3+deb11u3",
  493          "PkgName": "curl",
  494          "InstalledVersion": "7.74.0-1.3+deb11u3",
  495          "Status": "will_not_fix",
  496          "Layer": {
  497            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
  498            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
  499          },
  500          "SeveritySource": "nvd",
  501          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42916",
  502          "DataSource": {
  503            "ID": "debian",
  504            "Name": "Debian Security Tracker",
  505            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  506          },
  507          "Title": "HSTS bypass via IDN",
  508          "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.",
  509          "Severity": "HIGH",
  510          "CweIDs": [
  511            "CWE-319"
  512          ],
  513          "CVSS": {
  514            "nvd": {
  515              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
  516              "V3Score": 7.5
  517            },
  518            "redhat": {
  519              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
  520              "V3Score": 7.5
  521            }
  522          },
  523          "References": [
  524            "http://seclists.org/fulldisclosure/2023/Jan/19",
  525            "http://seclists.org/fulldisclosure/2023/Jan/20",
  526            "http://www.openwall.com/lists/oss-security/2022/12/21/1",
  527            "https://access.redhat.com/security/cve/CVE-2022-42916",
  528            "https://curl.se/docs/CVE-2022-42916.html",
  529            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42916",
  530            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/37YEVVC6NAF6H7UHH6YAUY5QEVY6LIH2/",
  531            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HVU3IMZCKR4VE6KJ4GCWRL2ILLC6OV76/",
  532            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q27V5YYMXUVI6PRZQVECON32XPVWTKDK/",
  533            "https://nvd.nist.gov/vuln/detail/CVE-2022-42916",
  534            "https://security.gentoo.org/glsa/202212-01",
  535            "https://security.netapp.com/advisory/ntap-20221209-0010/",
  536            "https://support.apple.com/kb/HT213604",
  537            "https://support.apple.com/kb/HT213605",
  538            "https://ubuntu.com/security/notices/USN-5702-1",
  539            "https://www.cve.org/CVERecord?id=CVE-2022-42916"
  540          ],
  541          "PublishedDate": "2022-10-29T02:15:00Z",
  542          "LastModifiedDate": "2023-03-28T14:13:00Z"
  543        },
  544        {
  545          "VulnerabilityID": "CVE-2022-43551",
  546          "PkgID": "curl@7.74.0-1.3+deb11u3",
  547          "PkgName": "curl",
  548          "InstalledVersion": "7.74.0-1.3+deb11u3",
  549          "Status": "will_not_fix",
  550          "Layer": {
  551            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
  552            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
  553          },
  554          "SeveritySource": "nvd",
  555          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43551",
  556          "DataSource": {
  557            "ID": "debian",
  558            "Name": "Debian Security Tracker",
  559            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  560          },
  561          "Title": "HSTS bypass via IDN",
  562          "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.",
  563          "Severity": "HIGH",
  564          "CweIDs": [
  565            "CWE-319"
  566          ],
  567          "CVSS": {
  568            "nvd": {
  569              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
  570              "V3Score": 7.5
  571            },
  572            "redhat": {
  573              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
  574              "V3Score": 7.5
  575            }
  576          },
  577          "References": [
  578            "https://access.redhat.com/security/cve/CVE-2022-43551",
  579            "https://curl.se/docs/CVE-2022-43551.html",
  580            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43551",
  581            "https://hackerone.com/reports/1755083",
  582            "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/TVWZW5CNSJ7UYAF2BGSYAWAEXDJYUBHA/",
  583            "https://nvd.nist.gov/vuln/detail/CVE-2022-43551",
  584            "https://security.netapp.com/advisory/ntap-20230427-0007/",
  585            "https://ubuntu.com/security/notices/USN-5788-1",
  586            "https://www.cve.org/CVERecord?id=CVE-2022-43551"
  587          ],
  588          "PublishedDate": "2022-12-23T15:15:00Z",
  589          "LastModifiedDate": "2023-04-27T15:15:00Z"
  590        },
  591        {
  592          "VulnerabilityID": "CVE-2023-27533",
  593          "PkgID": "curl@7.74.0-1.3+deb11u3",
  594          "PkgName": "curl",
  595          "InstalledVersion": "7.74.0-1.3+deb11u3",
  596          "Status": "affected",
  597          "Layer": {
  598            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
  599            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
  600          },
  601          "SeveritySource": "nvd",
  602          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27533",
  603          "DataSource": {
  604            "ID": "debian",
  605            "Name": "Debian Security Tracker",
  606            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  607          },
  608          "Title": "TELNET option IAC injection",
  609          "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.",
  610          "Severity": "HIGH",
  611          "CweIDs": [
  612            "CWE-74"
  613          ],
  614          "CVSS": {
  615            "nvd": {
  616              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
  617              "V3Score": 8.8
  618            },
  619            "redhat": {
  620              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:L/A:N",
  621              "V3Score": 3.1
  622            }
  623          },
  624          "References": [
  625            "https://access.redhat.com/security/cve/CVE-2023-27533",
  626            "https://curl.se/docs/CVE-2023-27533.html",
  627            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27533",
  628            "https://hackerone.com/reports/1891474",
  629            "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html",
  630            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/",
  631            "https://nvd.nist.gov/vuln/detail/CVE-2023-27533",
  632            "https://security.netapp.com/advisory/ntap-20230420-0011/",
  633            "https://ubuntu.com/security/notices/USN-5964-1",
  634            "https://ubuntu.com/security/notices/USN-5964-2",
  635            "https://www.cve.org/CVERecord?id=CVE-2023-27533"
  636          ],
  637          "PublishedDate": "2023-03-30T20:15:00Z",
  638          "LastModifiedDate": "2023-04-21T23:15:00Z"
  639        },
  640        {
  641          "VulnerabilityID": "CVE-2023-27534",
  642          "PkgID": "curl@7.74.0-1.3+deb11u3",
  643          "PkgName": "curl",
  644          "InstalledVersion": "7.74.0-1.3+deb11u3",
  645          "Status": "affected",
  646          "Layer": {
  647            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
  648            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
  649          },
  650          "SeveritySource": "nvd",
  651          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27534",
  652          "DataSource": {
  653            "ID": "debian",
  654            "Name": "Debian Security Tracker",
  655            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  656          },
  657          "Title": "SFTP path ~ resolving discrepancy",
  658          "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.",
  659          "Severity": "HIGH",
  660          "CweIDs": [
  661            "CWE-22"
  662          ],
  663          "CVSS": {
  664            "nvd": {
  665              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
  666              "V3Score": 8.8
  667            },
  668            "redhat": {
  669              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N",
  670              "V3Score": 3.7
  671            }
  672          },
  673          "References": [
  674            "https://access.redhat.com/security/cve/CVE-2023-27534",
  675            "https://curl.se/docs/CVE-2023-27534.html",
  676            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27534",
  677            "https://hackerone.com/reports/1892351",
  678            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/",
  679            "https://nvd.nist.gov/vuln/detail/CVE-2023-27534",
  680            "https://security.netapp.com/advisory/ntap-20230420-0012/",
  681            "https://ubuntu.com/security/notices/USN-5964-1",
  682            "https://www.cve.org/CVERecord?id=CVE-2023-27534"
  683          ],
  684          "PublishedDate": "2023-03-30T20:15:00Z",
  685          "LastModifiedDate": "2023-04-20T09:15:00Z"
  686        },
  687        {
  688          "VulnerabilityID": "CVE-2022-43552",
  689          "VendorIDs": [
  690            "DSA-5330-1"
  691          ],
  692          "PkgID": "curl@7.74.0-1.3+deb11u3",
  693          "PkgName": "curl",
  694          "InstalledVersion": "7.74.0-1.3+deb11u3",
  695          "FixedVersion": "7.74.0-1.3+deb11u5",
  696          "Status": "fixed",
  697          "Layer": {
  698            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
  699            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
  700          },
  701          "SeveritySource": "nvd",
  702          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43552",
  703          "DataSource": {
  704            "ID": "debian",
  705            "Name": "Debian Security Tracker",
  706            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  707          },
  708          "Title": "Use-after-free triggered by an HTTP proxy deny response",
  709          "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.",
  710          "Severity": "MEDIUM",
  711          "CweIDs": [
  712            "CWE-416"
  713          ],
  714          "CVSS": {
  715            "nvd": {
  716              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
  717              "V3Score": 5.9
  718            },
  719            "redhat": {
  720              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
  721              "V3Score": 5.9
  722            }
  723          },
  724          "References": [
  725            "http://seclists.org/fulldisclosure/2023/Mar/17",
  726            "https://access.redhat.com/errata/RHSA-2023:2478",
  727            "https://access.redhat.com/security/cve/CVE-2022-43552",
  728            "https://bugzilla.redhat.com/2120718",
  729            "https://bugzilla.redhat.com/2152652",
  730            "https://curl.se/docs/CVE-2022-43552.html",
  731            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43552",
  732            "https://errata.almalinux.org/9/ALSA-2023-2478.html",
  733            "https://hackerone.com/reports/1764858",
  734            "https://linux.oracle.com/cve/CVE-2022-43552.html",
  735            "https://linux.oracle.com/errata/ELSA-2023-2963.html",
  736            "https://nvd.nist.gov/vuln/detail/CVE-2022-43552",
  737            "https://security.netapp.com/advisory/ntap-20230214-0002/",
  738            "https://support.apple.com/kb/HT213670",
  739            "https://ubuntu.com/security/notices/USN-5788-1",
  740            "https://ubuntu.com/security/notices/USN-5894-1",
  741            "https://www.cve.org/CVERecord?id=CVE-2022-43552"
  742          ],
  743          "PublishedDate": "2023-02-09T20:15:00Z",
  744          "LastModifiedDate": "2023-03-28T05:15:00Z"
  745        },
  746        {
  747          "VulnerabilityID": "CVE-2023-23915",
  748          "PkgID": "curl@7.74.0-1.3+deb11u3",
  749          "PkgName": "curl",
  750          "InstalledVersion": "7.74.0-1.3+deb11u3",
  751          "Status": "will_not_fix",
  752          "Layer": {
  753            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
  754            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
  755          },
  756          "SeveritySource": "nvd",
  757          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23915",
  758          "DataSource": {
  759            "ID": "debian",
  760            "Name": "Debian Security Tracker",
  761            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  762          },
  763          "Title": "HSTS amnesia with --parallel",
  764          "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.",
  765          "Severity": "MEDIUM",
  766          "CweIDs": [
  767            "CWE-319"
  768          ],
  769          "CVSS": {
  770            "nvd": {
  771              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
  772              "V3Score": 6.5
  773            },
  774            "redhat": {
  775              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N",
  776              "V3Score": 4.2
  777            }
  778          },
  779          "References": [
  780            "https://access.redhat.com/security/cve/CVE-2023-23915",
  781            "https://curl.se/docs/CVE-2023-23915.html",
  782            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23915",
  783            "https://hackerone.com/reports/1826048",
  784            "https://nvd.nist.gov/vuln/detail/CVE-2023-23915",
  785            "https://security.netapp.com/advisory/ntap-20230309-0006/",
  786            "https://ubuntu.com/security/notices/USN-5891-1",
  787            "https://www.cve.org/CVERecord?id=CVE-2023-23915"
  788          ],
  789          "PublishedDate": "2023-02-23T20:15:00Z",
  790          "LastModifiedDate": "2023-03-09T19:15:00Z"
  791        },
  792        {
  793          "VulnerabilityID": "CVE-2023-23916",
  794          "VendorIDs": [
  795            "DSA-5365-1"
  796          ],
  797          "PkgID": "curl@7.74.0-1.3+deb11u3",
  798          "PkgName": "curl",
  799          "InstalledVersion": "7.74.0-1.3+deb11u3",
  800          "FixedVersion": "7.74.0-1.3+deb11u7",
  801          "Status": "fixed",
  802          "Layer": {
  803            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
  804            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
  805          },
  806          "SeveritySource": "nvd",
  807          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23916",
  808          "DataSource": {
  809            "ID": "debian",
  810            "Name": "Debian Security Tracker",
  811            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  812          },
  813          "Title": "HTTP multi-header compression denial of service",
  814          "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.",
  815          "Severity": "MEDIUM",
  816          "CweIDs": [
  817            "CWE-770"
  818          ],
  819          "CVSS": {
  820            "nvd": {
  821              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
  822              "V3Score": 6.5
  823            },
  824            "redhat": {
  825              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
  826              "V3Score": 6.5
  827            }
  828          },
  829          "References": [
  830            "https://access.redhat.com/errata/RHSA-2023:1701",
  831            "https://access.redhat.com/security/cve/CVE-2023-23916",
  832            "https://bugzilla.redhat.com/2167815",
  833            "https://bugzilla.redhat.com/show_bug.cgi?id=2167815",
  834            "https://curl.se/docs/CVE-2023-23916.html",
  835            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23916",
  836            "https://errata.almalinux.org/9/ALSA-2023-1701.html",
  837            "https://errata.rockylinux.org/RLSA-2023:1140",
  838            "https://hackerone.com/reports/1826048",
  839            "https://linux.oracle.com/cve/CVE-2023-23916.html",
  840            "https://linux.oracle.com/errata/ELSA-2023-1701.html",
  841            "https://lists.debian.org/debian-lts-announce/2023/02/msg00035.html",
  842            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BQKE6TXYDHOTFHLTBZ5X73GTKI7II5KO/",
  843            "https://nvd.nist.gov/vuln/detail/CVE-2023-23916",
  844            "https://security.netapp.com/advisory/ntap-20230309-0006/",
  845            "https://ubuntu.com/security/notices/USN-5891-1",
  846            "https://www.cve.org/CVERecord?id=CVE-2023-23916",
  847            "https://www.debian.org/security/2023/dsa-5365"
  848          ],
  849          "PublishedDate": "2023-02-23T20:15:00Z",
  850          "LastModifiedDate": "2023-04-18T16:49:00Z"
  851        },
  852        {
  853          "VulnerabilityID": "CVE-2023-27535",
  854          "PkgID": "curl@7.74.0-1.3+deb11u3",
  855          "PkgName": "curl",
  856          "InstalledVersion": "7.74.0-1.3+deb11u3",
  857          "Status": "affected",
  858          "Layer": {
  859            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
  860            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
  861          },
  862          "SeveritySource": "nvd",
  863          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27535",
  864          "DataSource": {
  865            "ID": "debian",
  866            "Name": "Debian Security Tracker",
  867            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  868          },
  869          "Title": "FTP too eager connection reuse",
  870          "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.",
  871          "Severity": "MEDIUM",
  872          "CweIDs": [
  873            "CWE-287"
  874          ],
  875          "CVSS": {
  876            "nvd": {
  877              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
  878              "V3Score": 5.9
  879            },
  880            "redhat": {
  881              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
  882              "V3Score": 5.9
  883            }
  884          },
  885          "References": [
  886            "https://access.redhat.com/errata/RHSA-2023:2650",
  887            "https://access.redhat.com/security/cve/CVE-2023-27535",
  888            "https://bugzilla.redhat.com/2179073",
  889            "https://bugzilla.redhat.com/show_bug.cgi?id=2179073",
  890            "https://bugzilla.redhat.com/show_bug.cgi?id=2188029",
  891            "https://curl.se/docs/CVE-2023-27535.html",
  892            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27535",
  893            "https://errata.almalinux.org/9/ALSA-2023-2650.html",
  894            "https://errata.rockylinux.org/RLSA-2023:3106",
  895            "https://hackerone.com/reports/1892780",
  896            "https://linux.oracle.com/cve/CVE-2023-27535.html",
  897            "https://linux.oracle.com/errata/ELSA-2023-3106.html",
  898            "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html",
  899            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/",
  900            "https://nvd.nist.gov/vuln/detail/CVE-2023-27535",
  901            "https://security.netapp.com/advisory/ntap-20230420-0010/",
  902            "https://ubuntu.com/security/notices/USN-5964-1",
  903            "https://ubuntu.com/security/notices/USN-5964-2",
  904            "https://www.cve.org/CVERecord?id=CVE-2023-27535"
  905          ],
  906          "PublishedDate": "2023-03-30T20:15:00Z",
  907          "LastModifiedDate": "2023-06-29T19:29:00Z"
  908        },
  909        {
  910          "VulnerabilityID": "CVE-2023-27536",
  911          "PkgID": "curl@7.74.0-1.3+deb11u3",
  912          "PkgName": "curl",
  913          "InstalledVersion": "7.74.0-1.3+deb11u3",
  914          "Status": "affected",
  915          "Layer": {
  916            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
  917            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
  918          },
  919          "SeveritySource": "nvd",
  920          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27536",
  921          "DataSource": {
  922            "ID": "debian",
  923            "Name": "Debian Security Tracker",
  924            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  925          },
  926          "Title": "GSS delegation too eager connection re-use",
  927          "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.",
  928          "Severity": "MEDIUM",
  929          "CweIDs": [
  930            "CWE-287"
  931          ],
  932          "CVSS": {
  933            "nvd": {
  934              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
  935              "V3Score": 5.9
  936            },
  937            "redhat": {
  938              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
  939              "V3Score": 5.9
  940            }
  941          },
  942          "References": [
  943            "https://access.redhat.com/security/cve/CVE-2023-27536",
  944            "https://curl.se/docs/CVE-2023-27536.html",
  945            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27536",
  946            "https://hackerone.com/reports/1895135",
  947            "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html",
  948            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/",
  949            "https://nvd.nist.gov/vuln/detail/CVE-2023-27536",
  950            "https://security.netapp.com/advisory/ntap-20230420-0010/",
  951            "https://ubuntu.com/security/notices/USN-5964-1",
  952            "https://ubuntu.com/security/notices/USN-5964-2",
  953            "https://www.cve.org/CVERecord?id=CVE-2023-27536"
  954          ],
  955          "PublishedDate": "2023-03-30T20:15:00Z",
  956          "LastModifiedDate": "2023-06-06T20:34:00Z"
  957        },
  958        {
  959          "VulnerabilityID": "CVE-2023-27538",
  960          "PkgID": "curl@7.74.0-1.3+deb11u3",
  961          "PkgName": "curl",
  962          "InstalledVersion": "7.74.0-1.3+deb11u3",
  963          "Status": "affected",
  964          "Layer": {
  965            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
  966            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
  967          },
  968          "SeveritySource": "nvd",
  969          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27538",
  970          "DataSource": {
  971            "ID": "debian",
  972            "Name": "Debian Security Tracker",
  973            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
  974          },
  975          "Title": "SSH connection too eager reuse still",
  976          "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.",
  977          "Severity": "MEDIUM",
  978          "CweIDs": [
  979            "CWE-287"
  980          ],
  981          "CVSS": {
  982            "nvd": {
  983              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
  984              "V3Score": 5.5
  985            },
  986            "redhat": {
  987              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
  988              "V3Score": 5.9
  989            }
  990          },
  991          "References": [
  992            "https://access.redhat.com/security/cve/CVE-2023-27538",
  993            "https://curl.se/docs/CVE-2023-27538.html",
  994            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27538",
  995            "https://hackerone.com/reports/1898475",
  996            "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html",
  997            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/",
  998            "https://nvd.nist.gov/vuln/detail/CVE-2023-27538",
  999            "https://security.netapp.com/advisory/ntap-20230420-0010/",
 1000            "https://ubuntu.com/security/notices/USN-5964-1",
 1001            "https://www.cve.org/CVERecord?id=CVE-2023-27538"
 1002          ],
 1003          "PublishedDate": "2023-03-30T20:15:00Z",
 1004          "LastModifiedDate": "2023-04-21T23:15:00Z"
 1005        },
 1006        {
 1007          "VulnerabilityID": "CVE-2023-28321",
 1008          "PkgID": "curl@7.74.0-1.3+deb11u3",
 1009          "PkgName": "curl",
 1010          "InstalledVersion": "7.74.0-1.3+deb11u3",
 1011          "Status": "affected",
 1012          "Layer": {
 1013            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 1014            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 1015          },
 1016          "SeveritySource": "nvd",
 1017          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28321",
 1018          "DataSource": {
 1019            "ID": "debian",
 1020            "Name": "Debian Security Tracker",
 1021            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1022          },
 1023          "Title": "IDN wildcard match may lead to Improper Cerificate Validation",
 1024          "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`.",
 1025          "Severity": "MEDIUM",
 1026          "CweIDs": [
 1027            "CWE-295"
 1028          ],
 1029          "CVSS": {
 1030            "nvd": {
 1031              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
 1032              "V3Score": 5.9
 1033            },
 1034            "redhat": {
 1035              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
 1036              "V3Score": 5.9
 1037            }
 1038          },
 1039          "References": [
 1040            "http://seclists.org/fulldisclosure/2023/Jul/47",
 1041            "http://seclists.org/fulldisclosure/2023/Jul/48",
 1042            "http://seclists.org/fulldisclosure/2023/Jul/52",
 1043            "https://access.redhat.com/errata/RHSA-2023:4354",
 1044            "https://access.redhat.com/security/cve/CVE-2023-28321",
 1045            "https://bugzilla.redhat.com/2196786",
 1046            "https://bugzilla.redhat.com/2196793",
 1047            "https://curl.se/docs/CVE-2023-28321.html",
 1048            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28321",
 1049            "https://errata.almalinux.org/9/ALSA-2023-4354.html",
 1050            "https://hackerone.com/reports/1950627",
 1051            "https://linux.oracle.com/cve/CVE-2023-28321.html",
 1052            "https://linux.oracle.com/errata/ELSA-2023-4354.html",
 1053            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F4I75RDGX5ULSSCBE5BF3P5I5SFO7ULQ/",
 1054            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z2LIWHWKOVH24COGGBCVOWDXXIUPKOMK/",
 1055            "https://nvd.nist.gov/vuln/detail/CVE-2023-28321",
 1056            "https://security.netapp.com/advisory/ntap-20230609-0009/",
 1057            "https://support.apple.com/kb/HT213843",
 1058            "https://support.apple.com/kb/HT213844",
 1059            "https://support.apple.com/kb/HT213845",
 1060            "https://ubuntu.com/security/notices/USN-6237-1",
 1061            "https://www.cve.org/CVERecord?id=CVE-2023-28321"
 1062          ],
 1063          "PublishedDate": "2023-05-26T21:15:00Z",
 1064          "LastModifiedDate": "2023-08-02T16:46:00Z"
 1065        },
 1066        {
 1067          "VulnerabilityID": "CVE-2021-22922",
 1068          "PkgID": "curl@7.74.0-1.3+deb11u3",
 1069          "PkgName": "curl",
 1070          "InstalledVersion": "7.74.0-1.3+deb11u3",
 1071          "Status": "affected",
 1072          "Layer": {
 1073            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 1074            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 1075          },
 1076          "SeveritySource": "debian",
 1077          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-22922",
 1078          "DataSource": {
 1079            "ID": "debian",
 1080            "Name": "Debian Security Tracker",
 1081            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1082          },
 1083          "Title": "curl: Content not matching hash in Metalink is not being discarded",
 1084          "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.",
 1085          "Severity": "LOW",
 1086          "CweIDs": [
 1087            "CWE-755"
 1088          ],
 1089          "CVSS": {
 1090            "nvd": {
 1091              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N",
 1092              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N",
 1093              "V2Score": 4.3,
 1094              "V3Score": 6.5
 1095            },
 1096            "redhat": {
 1097              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N",
 1098              "V3Score": 6.5
 1099            }
 1100          },
 1101          "References": [
 1102            "https://access.redhat.com/security/cve/CVE-2021-22922",
 1103            "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf",
 1104            "https://curl.se/docs/CVE-2021-22922.html",
 1105            "https://hackerone.com/reports/1213175",
 1106            "https://linux.oracle.com/cve/CVE-2021-22922.html",
 1107            "https://linux.oracle.com/errata/ELSA-2021-3582.html",
 1108            "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cdev.kafka.apache.org%3E",
 1109            "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cusers.kafka.apache.org%3E",
 1110            "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cdev.kafka.apache.org%3E",
 1111            "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cusers.kafka.apache.org%3E",
 1112            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRUCW2UVNYUDZF72DQLFQR4PJEC6CF7V/",
 1113            "https://nvd.nist.gov/vuln/detail/CVE-2021-22922",
 1114            "https://security.gentoo.org/glsa/202212-01",
 1115            "https://security.netapp.com/advisory/ntap-20210902-0003/",
 1116            "https://www.cve.org/CVERecord?id=CVE-2021-22922",
 1117            "https://www.oracle.com/security-alerts/cpuoct2021.html"
 1118          ],
 1119          "PublishedDate": "2021-08-05T21:15:00Z",
 1120          "LastModifiedDate": "2023-01-05T18:16:00Z"
 1121        },
 1122        {
 1123          "VulnerabilityID": "CVE-2021-22923",
 1124          "PkgID": "curl@7.74.0-1.3+deb11u3",
 1125          "PkgName": "curl",
 1126          "InstalledVersion": "7.74.0-1.3+deb11u3",
 1127          "Status": "affected",
 1128          "Layer": {
 1129            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 1130            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 1131          },
 1132          "SeveritySource": "debian",
 1133          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-22923",
 1134          "DataSource": {
 1135            "ID": "debian",
 1136            "Name": "Debian Security Tracker",
 1137            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1138          },
 1139          "Title": "curl: Metalink download sends credentials",
 1140          "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.",
 1141          "Severity": "LOW",
 1142          "CweIDs": [
 1143            "CWE-319",
 1144            "CWE-522"
 1145          ],
 1146          "CVSS": {
 1147            "nvd": {
 1148              "V2Vector": "AV:N/AC:H/Au:N/C:P/I:N/A:N",
 1149              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:N/A:N",
 1150              "V2Score": 2.6,
 1151              "V3Score": 5.3
 1152            },
 1153            "redhat": {
 1154              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:N/A:N",
 1155              "V3Score": 5.7
 1156            }
 1157          },
 1158          "References": [
 1159            "https://access.redhat.com/security/cve/CVE-2021-22923",
 1160            "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf",
 1161            "https://curl.se/docs/CVE-2021-22923.html",
 1162            "https://hackerone.com/reports/1213181",
 1163            "https://linux.oracle.com/cve/CVE-2021-22923.html",
 1164            "https://linux.oracle.com/errata/ELSA-2021-3582.html",
 1165            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRUCW2UVNYUDZF72DQLFQR4PJEC6CF7V/",
 1166            "https://nvd.nist.gov/vuln/detail/CVE-2021-22923",
 1167            "https://security.gentoo.org/glsa/202212-01",
 1168            "https://security.netapp.com/advisory/ntap-20210902-0003/",
 1169            "https://www.cve.org/CVERecord?id=CVE-2021-22923",
 1170            "https://www.oracle.com/security-alerts/cpuoct2021.html"
 1171          ],
 1172          "PublishedDate": "2021-08-05T21:15:00Z",
 1173          "LastModifiedDate": "2023-06-30T17:47:00Z"
 1174        },
 1175        {
 1176          "VulnerabilityID": "CVE-2023-28320",
 1177          "PkgID": "curl@7.74.0-1.3+deb11u3",
 1178          "PkgName": "curl",
 1179          "InstalledVersion": "7.74.0-1.3+deb11u3",
 1180          "Status": "affected",
 1181          "Layer": {
 1182            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 1183            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 1184          },
 1185          "SeveritySource": "debian",
 1186          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28320",
 1187          "DataSource": {
 1188            "ID": "debian",
 1189            "Name": "Debian Security Tracker",
 1190            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1191          },
 1192          "Title": "siglongjmp race condition may lead to crash",
 1193          "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.",
 1194          "Severity": "LOW",
 1195          "CweIDs": [
 1196            "CWE-362",
 1197            "CWE-400"
 1198          ],
 1199          "CVSS": {
 1200            "nvd": {
 1201              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
 1202              "V3Score": 5.9
 1203            },
 1204            "redhat": {
 1205              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L",
 1206              "V3Score": 3.7
 1207            }
 1208          },
 1209          "References": [
 1210            "http://seclists.org/fulldisclosure/2023/Jul/47",
 1211            "http://seclists.org/fulldisclosure/2023/Jul/48",
 1212            "http://seclists.org/fulldisclosure/2023/Jul/52",
 1213            "https://access.redhat.com/security/cve/CVE-2023-28320",
 1214            "https://curl.se/docs/CVE-2023-28320.html",
 1215            "https://hackerone.com/reports/1929597",
 1216            "https://nvd.nist.gov/vuln/detail/CVE-2023-28320",
 1217            "https://security.netapp.com/advisory/ntap-20230609-0009/",
 1218            "https://support.apple.com/kb/HT213843",
 1219            "https://support.apple.com/kb/HT213844",
 1220            "https://support.apple.com/kb/HT213845",
 1221            "https://www.cve.org/CVERecord?id=CVE-2023-28320"
 1222          ],
 1223          "PublishedDate": "2023-05-26T21:15:00Z",
 1224          "LastModifiedDate": "2023-08-02T16:46:00Z"
 1225        },
 1226        {
 1227          "VulnerabilityID": "CVE-2023-28322",
 1228          "PkgID": "curl@7.74.0-1.3+deb11u3",
 1229          "PkgName": "curl",
 1230          "InstalledVersion": "7.74.0-1.3+deb11u3",
 1231          "Status": "affected",
 1232          "Layer": {
 1233            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 1234            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 1235          },
 1236          "SeveritySource": "nvd",
 1237          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28322",
 1238          "DataSource": {
 1239            "ID": "debian",
 1240            "Name": "Debian Security Tracker",
 1241            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1242          },
 1243          "Title": "more POST-after-PUT confusion",
 1244          "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.",
 1245          "Severity": "LOW",
 1246          "CVSS": {
 1247            "nvd": {
 1248              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N",
 1249              "V3Score": 3.7
 1250            },
 1251            "redhat": {
 1252              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N",
 1253              "V3Score": 3.7
 1254            }
 1255          },
 1256          "References": [
 1257            "http://seclists.org/fulldisclosure/2023/Jul/47",
 1258            "http://seclists.org/fulldisclosure/2023/Jul/48",
 1259            "http://seclists.org/fulldisclosure/2023/Jul/52",
 1260            "https://access.redhat.com/errata/RHSA-2023:4354",
 1261            "https://access.redhat.com/security/cve/CVE-2023-28322",
 1262            "https://bugzilla.redhat.com/2196786",
 1263            "https://bugzilla.redhat.com/2196793",
 1264            "https://curl.se/docs/CVE-2023-28322.html",
 1265            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28322",
 1266            "https://errata.almalinux.org/9/ALSA-2023-4354.html",
 1267            "https://hackerone.com/reports/1954658",
 1268            "https://linux.oracle.com/cve/CVE-2023-28322.html",
 1269            "https://linux.oracle.com/errata/ELSA-2023-4354.html",
 1270            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F4I75RDGX5ULSSCBE5BF3P5I5SFO7ULQ/",
 1271            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z2LIWHWKOVH24COGGBCVOWDXXIUPKOMK/",
 1272            "https://nvd.nist.gov/vuln/detail/CVE-2023-28322",
 1273            "https://security.netapp.com/advisory/ntap-20230609-0009/",
 1274            "https://support.apple.com/kb/HT213843",
 1275            "https://support.apple.com/kb/HT213844",
 1276            "https://support.apple.com/kb/HT213845",
 1277            "https://ubuntu.com/security/notices/USN-6237-1",
 1278            "https://www.cve.org/CVERecord?id=CVE-2023-28322"
 1279          ],
 1280          "PublishedDate": "2023-05-26T21:15:00Z",
 1281          "LastModifiedDate": "2023-08-02T16:46:00Z"
 1282        },
 1283        {
 1284          "VulnerabilityID": "CVE-2022-1304",
 1285          "PkgID": "e2fsprogs@1.46.2-2",
 1286          "PkgName": "e2fsprogs",
 1287          "InstalledVersion": "1.46.2-2",
 1288          "Status": "affected",
 1289          "Layer": {
 1290            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1291            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1292          },
 1293          "SeveritySource": "nvd",
 1294          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1304",
 1295          "DataSource": {
 1296            "ID": "debian",
 1297            "Name": "Debian Security Tracker",
 1298            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1299          },
 1300          "Title": "out-of-bounds read/write via crafted filesystem",
 1301          "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.",
 1302          "Severity": "HIGH",
 1303          "CweIDs": [
 1304            "CWE-125",
 1305            "CWE-787"
 1306          ],
 1307          "CVSS": {
 1308            "nvd": {
 1309              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
 1310              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 1311              "V2Score": 6.8,
 1312              "V3Score": 7.8
 1313            },
 1314            "redhat": {
 1315              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H",
 1316              "V3Score": 5.8
 1317            }
 1318          },
 1319          "References": [
 1320            "https://access.redhat.com/errata/RHSA-2022:8361",
 1321            "https://access.redhat.com/security/cve/CVE-2022-1304",
 1322            "https://bugzilla.redhat.com/2069726",
 1323            "https://bugzilla.redhat.com/show_bug.cgi?id=2069726",
 1324            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304",
 1325            "https://errata.almalinux.org/9/ALSA-2022-8361.html",
 1326            "https://errata.rockylinux.org/RLSA-2022:8361",
 1327            "https://linux.oracle.com/cve/CVE-2022-1304.html",
 1328            "https://linux.oracle.com/errata/ELSA-2022-8361.html",
 1329            "https://marc.info/?l=linux-ext4\u0026m=165056234501732\u0026w=2",
 1330            "https://nvd.nist.gov/vuln/detail/CVE-2022-1304",
 1331            "https://ubuntu.com/security/notices/USN-5464-1",
 1332            "https://www.cve.org/CVERecord?id=CVE-2022-1304"
 1333          ],
 1334          "PublishedDate": "2022-04-14T21:15:00Z",
 1335          "LastModifiedDate": "2023-02-12T22:15:00Z"
 1336        },
 1337        {
 1338          "VulnerabilityID": "CVE-2022-3219",
 1339          "PkgID": "gpgv@2.2.27-2+deb11u2",
 1340          "PkgName": "gpgv",
 1341          "InstalledVersion": "2.2.27-2+deb11u2",
 1342          "Status": "affected",
 1343          "Layer": {
 1344            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1345            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1346          },
 1347          "SeveritySource": "debian",
 1348          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3219",
 1349          "DataSource": {
 1350            "ID": "debian",
 1351            "Name": "Debian Security Tracker",
 1352            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1353          },
 1354          "Title": "denial of service issue (resource consumption) using compressed packets",
 1355          "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.",
 1356          "Severity": "LOW",
 1357          "CweIDs": [
 1358            "CWE-787"
 1359          ],
 1360          "CVSS": {
 1361            "nvd": {
 1362              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L",
 1363              "V3Score": 3.3
 1364            },
 1365            "redhat": {
 1366              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 1367              "V3Score": 6.2
 1368            }
 1369          },
 1370          "References": [
 1371            "https://access.redhat.com/security/cve/CVE-2022-3219",
 1372            "https://bugzilla.redhat.com/show_bug.cgi?id=2127010",
 1373            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219",
 1374            "https://dev.gnupg.org/D556",
 1375            "https://dev.gnupg.org/T5993",
 1376            "https://marc.info/?l=oss-security\u0026m=165696590211434\u0026w=4",
 1377            "https://nvd.nist.gov/vuln/detail/CVE-2022-3219",
 1378            "https://security.netapp.com/advisory/ntap-20230324-0001/",
 1379            "https://www.cve.org/CVERecord?id=CVE-2022-3219"
 1380          ],
 1381          "PublishedDate": "2023-02-23T20:15:00Z",
 1382          "LastModifiedDate": "2023-05-26T16:31:00Z"
 1383        },
 1384        {
 1385          "VulnerabilityID": "CVE-2011-3374",
 1386          "PkgID": "libapt-pkg6.0@2.2.4",
 1387          "PkgName": "libapt-pkg6.0",
 1388          "InstalledVersion": "2.2.4",
 1389          "Status": "affected",
 1390          "Layer": {
 1391            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1392            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1393          },
 1394          "SeveritySource": "debian",
 1395          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374",
 1396          "DataSource": {
 1397            "ID": "debian",
 1398            "Name": "Debian Security Tracker",
 1399            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1400          },
 1401          "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...",
 1402          "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.",
 1403          "Severity": "LOW",
 1404          "CweIDs": [
 1405            "CWE-347"
 1406          ],
 1407          "CVSS": {
 1408            "nvd": {
 1409              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N",
 1410              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N",
 1411              "V2Score": 4.3,
 1412              "V3Score": 3.7
 1413            }
 1414          },
 1415          "References": [
 1416            "https://access.redhat.com/security/cve/cve-2011-3374",
 1417            "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480",
 1418            "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html",
 1419            "https://seclists.org/fulldisclosure/2011/Sep/221",
 1420            "https://security-tracker.debian.org/tracker/CVE-2011-3374",
 1421            "https://snyk.io/vuln/SNYK-LINUX-APT-116518",
 1422            "https://ubuntu.com/security/CVE-2011-3374"
 1423          ],
 1424          "PublishedDate": "2019-11-26T00:15:00Z",
 1425          "LastModifiedDate": "2021-02-09T16:08:00Z"
 1426        },
 1427        {
 1428          "VulnerabilityID": "CVE-2022-0563",
 1429          "PkgID": "libblkid1@2.36.1-8+deb11u1",
 1430          "PkgName": "libblkid1",
 1431          "InstalledVersion": "2.36.1-8+deb11u1",
 1432          "Status": "affected",
 1433          "Layer": {
 1434            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1435            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1436          },
 1437          "SeveritySource": "debian",
 1438          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563",
 1439          "DataSource": {
 1440            "ID": "debian",
 1441            "Name": "Debian Security Tracker",
 1442            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1443          },
 1444          "Title": "partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline",
 1445          "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.",
 1446          "Severity": "LOW",
 1447          "CweIDs": [
 1448            "CWE-209"
 1449          ],
 1450          "CVSS": {
 1451            "nvd": {
 1452              "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N",
 1453              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
 1454              "V2Score": 1.9,
 1455              "V3Score": 5.5
 1456            },
 1457            "redhat": {
 1458              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
 1459              "V3Score": 5.5
 1460            }
 1461          },
 1462          "References": [
 1463            "https://access.redhat.com/security/cve/CVE-2022-0563",
 1464            "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/",
 1465            "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u",
 1466            "https://nvd.nist.gov/vuln/detail/CVE-2022-0563",
 1467            "https://security.netapp.com/advisory/ntap-20220331-0002/",
 1468            "https://www.cve.org/CVERecord?id=CVE-2022-0563"
 1469          ],
 1470          "PublishedDate": "2022-02-21T19:15:00Z",
 1471          "LastModifiedDate": "2022-06-03T14:15:00Z"
 1472        },
 1473        {
 1474          "VulnerabilityID": "CVE-2010-4756",
 1475          "PkgID": "libc-bin@2.31-13+deb11u4",
 1476          "PkgName": "libc-bin",
 1477          "InstalledVersion": "2.31-13+deb11u4",
 1478          "Status": "affected",
 1479          "Layer": {
 1480            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1481            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1482          },
 1483          "SeveritySource": "debian",
 1484          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756",
 1485          "DataSource": {
 1486            "ID": "debian",
 1487            "Name": "Debian Security Tracker",
 1488            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1489          },
 1490          "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions",
 1491          "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.",
 1492          "Severity": "LOW",
 1493          "CweIDs": [
 1494            "CWE-399"
 1495          ],
 1496          "CVSS": {
 1497            "nvd": {
 1498              "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P",
 1499              "V2Score": 4
 1500            },
 1501            "redhat": {
 1502              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
 1503              "V2Score": 5
 1504            }
 1505          },
 1506          "References": [
 1507            "http://cxib.net/stuff/glob-0day.c",
 1508            "http://securityreason.com/achievement_securityalert/89",
 1509            "http://securityreason.com/exploitalert/9223",
 1510            "https://access.redhat.com/security/cve/CVE-2010-4756",
 1511            "https://bugzilla.redhat.com/show_bug.cgi?id=681681",
 1512            "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756",
 1513            "https://nvd.nist.gov/vuln/detail/CVE-2010-4756",
 1514            "https://www.cve.org/CVERecord?id=CVE-2010-4756"
 1515          ],
 1516          "PublishedDate": "2011-03-02T20:00:00Z",
 1517          "LastModifiedDate": "2021-09-01T12:15:00Z"
 1518        },
 1519        {
 1520          "VulnerabilityID": "CVE-2018-20796",
 1521          "PkgID": "libc-bin@2.31-13+deb11u4",
 1522          "PkgName": "libc-bin",
 1523          "InstalledVersion": "2.31-13+deb11u4",
 1524          "Status": "affected",
 1525          "Layer": {
 1526            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1527            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1528          },
 1529          "SeveritySource": "debian",
 1530          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796",
 1531          "DataSource": {
 1532            "ID": "debian",
 1533            "Name": "Debian Security Tracker",
 1534            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1535          },
 1536          "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
 1537          "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.",
 1538          "Severity": "LOW",
 1539          "CweIDs": [
 1540            "CWE-674"
 1541          ],
 1542          "CVSS": {
 1543            "nvd": {
 1544              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
 1545              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 1546              "V2Score": 5,
 1547              "V3Score": 7.5
 1548            },
 1549            "redhat": {
 1550              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
 1551              "V3Score": 5.3
 1552            }
 1553          },
 1554          "References": [
 1555            "http://www.securityfocus.com/bid/107160",
 1556            "https://access.redhat.com/security/cve/CVE-2018-20796",
 1557            "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141",
 1558            "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html",
 1559            "https://nvd.nist.gov/vuln/detail/CVE-2018-20796",
 1560            "https://security.netapp.com/advisory/ntap-20190315-0002/",
 1561            "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS",
 1562            "https://www.cve.org/CVERecord?id=CVE-2018-20796"
 1563          ],
 1564          "PublishedDate": "2019-02-26T02:29:00Z",
 1565          "LastModifiedDate": "2019-11-05T21:15:00Z"
 1566        },
 1567        {
 1568          "VulnerabilityID": "CVE-2019-1010022",
 1569          "PkgID": "libc-bin@2.31-13+deb11u4",
 1570          "PkgName": "libc-bin",
 1571          "InstalledVersion": "2.31-13+deb11u4",
 1572          "Status": "affected",
 1573          "Layer": {
 1574            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1575            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1576          },
 1577          "SeveritySource": "debian",
 1578          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022",
 1579          "DataSource": {
 1580            "ID": "debian",
 1581            "Name": "Debian Security Tracker",
 1582            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1583          },
 1584          "Title": "glibc: stack guard protection bypass",
 1585          "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.\"",
 1586          "Severity": "LOW",
 1587          "CweIDs": [
 1588            "CWE-119"
 1589          ],
 1590          "CVSS": {
 1591            "nvd": {
 1592              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P",
 1593              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
 1594              "V2Score": 7.5,
 1595              "V3Score": 9.8
 1596            }
 1597          },
 1598          "References": [
 1599            "https://access.redhat.com/security/cve/CVE-2019-1010022",
 1600            "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022",
 1601            "https://security-tracker.debian.org/tracker/CVE-2019-1010022",
 1602            "https://sourceware.org/bugzilla/show_bug.cgi?id=22850",
 1603            "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3",
 1604            "https://ubuntu.com/security/CVE-2019-1010022",
 1605            "https://www.cve.org/CVERecord?id=CVE-2019-1010022"
 1606          ],
 1607          "PublishedDate": "2019-07-15T04:15:00Z",
 1608          "LastModifiedDate": "2021-06-10T17:15:00Z"
 1609        },
 1610        {
 1611          "VulnerabilityID": "CVE-2019-1010023",
 1612          "PkgID": "libc-bin@2.31-13+deb11u4",
 1613          "PkgName": "libc-bin",
 1614          "InstalledVersion": "2.31-13+deb11u4",
 1615          "Status": "affected",
 1616          "Layer": {
 1617            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1618            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1619          },
 1620          "SeveritySource": "debian",
 1621          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023",
 1622          "DataSource": {
 1623            "ID": "debian",
 1624            "Name": "Debian Security Tracker",
 1625            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1626          },
 1627          "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation",
 1628          "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.\"",
 1629          "Severity": "LOW",
 1630          "CVSS": {
 1631            "nvd": {
 1632              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
 1633              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 1634              "V2Score": 6.8,
 1635              "V3Score": 8.8
 1636            },
 1637            "redhat": {
 1638              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 1639              "V3Score": 7.8
 1640            }
 1641          },
 1642          "References": [
 1643            "http://www.securityfocus.com/bid/109167",
 1644            "https://access.redhat.com/security/cve/CVE-2019-1010023",
 1645            "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023",
 1646            "https://security-tracker.debian.org/tracker/CVE-2019-1010023",
 1647            "https://sourceware.org/bugzilla/show_bug.cgi?id=22851",
 1648            "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS",
 1649            "https://ubuntu.com/security/CVE-2019-1010023",
 1650            "https://www.cve.org/CVERecord?id=CVE-2019-1010023"
 1651          ],
 1652          "PublishedDate": "2019-07-15T04:15:00Z",
 1653          "LastModifiedDate": "2020-11-16T20:15:00Z"
 1654        },
 1655        {
 1656          "VulnerabilityID": "CVE-2019-1010024",
 1657          "PkgID": "libc-bin@2.31-13+deb11u4",
 1658          "PkgName": "libc-bin",
 1659          "InstalledVersion": "2.31-13+deb11u4",
 1660          "Status": "affected",
 1661          "Layer": {
 1662            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1663            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1664          },
 1665          "SeveritySource": "debian",
 1666          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024",
 1667          "DataSource": {
 1668            "ID": "debian",
 1669            "Name": "Debian Security Tracker",
 1670            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1671          },
 1672          "Title": "glibc: ASLR bypass using cache of thread stack and heap",
 1673          "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.\"",
 1674          "Severity": "LOW",
 1675          "CweIDs": [
 1676            "CWE-200"
 1677          ],
 1678          "CVSS": {
 1679            "nvd": {
 1680              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N",
 1681              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
 1682              "V2Score": 5,
 1683              "V3Score": 5.3
 1684            },
 1685            "redhat": {
 1686              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
 1687              "V3Score": 5.3
 1688            }
 1689          },
 1690          "References": [
 1691            "http://www.securityfocus.com/bid/109162",
 1692            "https://access.redhat.com/security/cve/CVE-2019-1010024",
 1693            "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024",
 1694            "https://security-tracker.debian.org/tracker/CVE-2019-1010024",
 1695            "https://sourceware.org/bugzilla/show_bug.cgi?id=22852",
 1696            "https://support.f5.com/csp/article/K06046097",
 1697            "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS",
 1698            "https://ubuntu.com/security/CVE-2019-1010024",
 1699            "https://www.cve.org/CVERecord?id=CVE-2019-1010024"
 1700          ],
 1701          "PublishedDate": "2019-07-15T04:15:00Z",
 1702          "LastModifiedDate": "2020-11-16T20:15:00Z"
 1703        },
 1704        {
 1705          "VulnerabilityID": "CVE-2019-1010025",
 1706          "PkgID": "libc-bin@2.31-13+deb11u4",
 1707          "PkgName": "libc-bin",
 1708          "InstalledVersion": "2.31-13+deb11u4",
 1709          "Status": "affected",
 1710          "Layer": {
 1711            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1712            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1713          },
 1714          "SeveritySource": "debian",
 1715          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025",
 1716          "DataSource": {
 1717            "ID": "debian",
 1718            "Name": "Debian Security Tracker",
 1719            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1720          },
 1721          "Title": "glibc: information disclosure of heap addresses of pthread_created thread",
 1722          "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.\"",
 1723          "Severity": "LOW",
 1724          "CweIDs": [
 1725            "CWE-330"
 1726          ],
 1727          "CVSS": {
 1728            "nvd": {
 1729              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N",
 1730              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
 1731              "V2Score": 5,
 1732              "V3Score": 5.3
 1733            },
 1734            "redhat": {
 1735              "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N",
 1736              "V3Score": 2.9
 1737            }
 1738          },
 1739          "References": [
 1740            "https://access.redhat.com/security/cve/CVE-2019-1010025",
 1741            "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025",
 1742            "https://security-tracker.debian.org/tracker/CVE-2019-1010025",
 1743            "https://sourceware.org/bugzilla/show_bug.cgi?id=22853",
 1744            "https://support.f5.com/csp/article/K06046097",
 1745            "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS",
 1746            "https://ubuntu.com/security/CVE-2019-1010025",
 1747            "https://www.cve.org/CVERecord?id=CVE-2019-1010025"
 1748          ],
 1749          "PublishedDate": "2019-07-15T04:15:00Z",
 1750          "LastModifiedDate": "2020-11-16T20:15:00Z"
 1751        },
 1752        {
 1753          "VulnerabilityID": "CVE-2019-9192",
 1754          "PkgID": "libc-bin@2.31-13+deb11u4",
 1755          "PkgName": "libc-bin",
 1756          "InstalledVersion": "2.31-13+deb11u4",
 1757          "Status": "affected",
 1758          "Layer": {
 1759            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1760            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1761          },
 1762          "SeveritySource": "debian",
 1763          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192",
 1764          "DataSource": {
 1765            "ID": "debian",
 1766            "Name": "Debian Security Tracker",
 1767            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1768          },
 1769          "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
 1770          "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.",
 1771          "Severity": "LOW",
 1772          "CweIDs": [
 1773            "CWE-674"
 1774          ],
 1775          "CVSS": {
 1776            "nvd": {
 1777              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
 1778              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 1779              "V2Score": 5,
 1780              "V3Score": 7.5
 1781            },
 1782            "redhat": {
 1783              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L",
 1784              "V3Score": 2.8
 1785            }
 1786          },
 1787          "References": [
 1788            "https://access.redhat.com/security/cve/CVE-2019-9192",
 1789            "https://nvd.nist.gov/vuln/detail/CVE-2019-9192",
 1790            "https://sourceware.org/bugzilla/show_bug.cgi?id=24269",
 1791            "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS",
 1792            "https://www.cve.org/CVERecord?id=CVE-2019-9192"
 1793          ],
 1794          "PublishedDate": "2019-02-26T18:29:00Z",
 1795          "LastModifiedDate": "2020-08-24T17:37:00Z"
 1796        },
 1797        {
 1798          "VulnerabilityID": "CVE-2010-4756",
 1799          "PkgID": "libc6@2.31-13+deb11u4",
 1800          "PkgName": "libc6",
 1801          "InstalledVersion": "2.31-13+deb11u4",
 1802          "Status": "affected",
 1803          "Layer": {
 1804            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1805            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1806          },
 1807          "SeveritySource": "debian",
 1808          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756",
 1809          "DataSource": {
 1810            "ID": "debian",
 1811            "Name": "Debian Security Tracker",
 1812            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1813          },
 1814          "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions",
 1815          "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.",
 1816          "Severity": "LOW",
 1817          "CweIDs": [
 1818            "CWE-399"
 1819          ],
 1820          "CVSS": {
 1821            "nvd": {
 1822              "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P",
 1823              "V2Score": 4
 1824            },
 1825            "redhat": {
 1826              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
 1827              "V2Score": 5
 1828            }
 1829          },
 1830          "References": [
 1831            "http://cxib.net/stuff/glob-0day.c",
 1832            "http://securityreason.com/achievement_securityalert/89",
 1833            "http://securityreason.com/exploitalert/9223",
 1834            "https://access.redhat.com/security/cve/CVE-2010-4756",
 1835            "https://bugzilla.redhat.com/show_bug.cgi?id=681681",
 1836            "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756",
 1837            "https://nvd.nist.gov/vuln/detail/CVE-2010-4756",
 1838            "https://www.cve.org/CVERecord?id=CVE-2010-4756"
 1839          ],
 1840          "PublishedDate": "2011-03-02T20:00:00Z",
 1841          "LastModifiedDate": "2021-09-01T12:15:00Z"
 1842        },
 1843        {
 1844          "VulnerabilityID": "CVE-2018-20796",
 1845          "PkgID": "libc6@2.31-13+deb11u4",
 1846          "PkgName": "libc6",
 1847          "InstalledVersion": "2.31-13+deb11u4",
 1848          "Status": "affected",
 1849          "Layer": {
 1850            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1851            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1852          },
 1853          "SeveritySource": "debian",
 1854          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796",
 1855          "DataSource": {
 1856            "ID": "debian",
 1857            "Name": "Debian Security Tracker",
 1858            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1859          },
 1860          "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
 1861          "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.",
 1862          "Severity": "LOW",
 1863          "CweIDs": [
 1864            "CWE-674"
 1865          ],
 1866          "CVSS": {
 1867            "nvd": {
 1868              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
 1869              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 1870              "V2Score": 5,
 1871              "V3Score": 7.5
 1872            },
 1873            "redhat": {
 1874              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
 1875              "V3Score": 5.3
 1876            }
 1877          },
 1878          "References": [
 1879            "http://www.securityfocus.com/bid/107160",
 1880            "https://access.redhat.com/security/cve/CVE-2018-20796",
 1881            "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141",
 1882            "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html",
 1883            "https://nvd.nist.gov/vuln/detail/CVE-2018-20796",
 1884            "https://security.netapp.com/advisory/ntap-20190315-0002/",
 1885            "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS",
 1886            "https://www.cve.org/CVERecord?id=CVE-2018-20796"
 1887          ],
 1888          "PublishedDate": "2019-02-26T02:29:00Z",
 1889          "LastModifiedDate": "2019-11-05T21:15:00Z"
 1890        },
 1891        {
 1892          "VulnerabilityID": "CVE-2019-1010022",
 1893          "PkgID": "libc6@2.31-13+deb11u4",
 1894          "PkgName": "libc6",
 1895          "InstalledVersion": "2.31-13+deb11u4",
 1896          "Status": "affected",
 1897          "Layer": {
 1898            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1899            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1900          },
 1901          "SeveritySource": "debian",
 1902          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022",
 1903          "DataSource": {
 1904            "ID": "debian",
 1905            "Name": "Debian Security Tracker",
 1906            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1907          },
 1908          "Title": "glibc: stack guard protection bypass",
 1909          "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.\"",
 1910          "Severity": "LOW",
 1911          "CweIDs": [
 1912            "CWE-119"
 1913          ],
 1914          "CVSS": {
 1915            "nvd": {
 1916              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P",
 1917              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
 1918              "V2Score": 7.5,
 1919              "V3Score": 9.8
 1920            }
 1921          },
 1922          "References": [
 1923            "https://access.redhat.com/security/cve/CVE-2019-1010022",
 1924            "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022",
 1925            "https://security-tracker.debian.org/tracker/CVE-2019-1010022",
 1926            "https://sourceware.org/bugzilla/show_bug.cgi?id=22850",
 1927            "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3",
 1928            "https://ubuntu.com/security/CVE-2019-1010022",
 1929            "https://www.cve.org/CVERecord?id=CVE-2019-1010022"
 1930          ],
 1931          "PublishedDate": "2019-07-15T04:15:00Z",
 1932          "LastModifiedDate": "2021-06-10T17:15:00Z"
 1933        },
 1934        {
 1935          "VulnerabilityID": "CVE-2019-1010023",
 1936          "PkgID": "libc6@2.31-13+deb11u4",
 1937          "PkgName": "libc6",
 1938          "InstalledVersion": "2.31-13+deb11u4",
 1939          "Status": "affected",
 1940          "Layer": {
 1941            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1942            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1943          },
 1944          "SeveritySource": "debian",
 1945          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023",
 1946          "DataSource": {
 1947            "ID": "debian",
 1948            "Name": "Debian Security Tracker",
 1949            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1950          },
 1951          "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation",
 1952          "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.\"",
 1953          "Severity": "LOW",
 1954          "CVSS": {
 1955            "nvd": {
 1956              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
 1957              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 1958              "V2Score": 6.8,
 1959              "V3Score": 8.8
 1960            },
 1961            "redhat": {
 1962              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 1963              "V3Score": 7.8
 1964            }
 1965          },
 1966          "References": [
 1967            "http://www.securityfocus.com/bid/109167",
 1968            "https://access.redhat.com/security/cve/CVE-2019-1010023",
 1969            "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023",
 1970            "https://security-tracker.debian.org/tracker/CVE-2019-1010023",
 1971            "https://sourceware.org/bugzilla/show_bug.cgi?id=22851",
 1972            "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS",
 1973            "https://ubuntu.com/security/CVE-2019-1010023",
 1974            "https://www.cve.org/CVERecord?id=CVE-2019-1010023"
 1975          ],
 1976          "PublishedDate": "2019-07-15T04:15:00Z",
 1977          "LastModifiedDate": "2020-11-16T20:15:00Z"
 1978        },
 1979        {
 1980          "VulnerabilityID": "CVE-2019-1010024",
 1981          "PkgID": "libc6@2.31-13+deb11u4",
 1982          "PkgName": "libc6",
 1983          "InstalledVersion": "2.31-13+deb11u4",
 1984          "Status": "affected",
 1985          "Layer": {
 1986            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 1987            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 1988          },
 1989          "SeveritySource": "debian",
 1990          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024",
 1991          "DataSource": {
 1992            "ID": "debian",
 1993            "Name": "Debian Security Tracker",
 1994            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 1995          },
 1996          "Title": "glibc: ASLR bypass using cache of thread stack and heap",
 1997          "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.\"",
 1998          "Severity": "LOW",
 1999          "CweIDs": [
 2000            "CWE-200"
 2001          ],
 2002          "CVSS": {
 2003            "nvd": {
 2004              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N",
 2005              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
 2006              "V2Score": 5,
 2007              "V3Score": 5.3
 2008            },
 2009            "redhat": {
 2010              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
 2011              "V3Score": 5.3
 2012            }
 2013          },
 2014          "References": [
 2015            "http://www.securityfocus.com/bid/109162",
 2016            "https://access.redhat.com/security/cve/CVE-2019-1010024",
 2017            "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024",
 2018            "https://security-tracker.debian.org/tracker/CVE-2019-1010024",
 2019            "https://sourceware.org/bugzilla/show_bug.cgi?id=22852",
 2020            "https://support.f5.com/csp/article/K06046097",
 2021            "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS",
 2022            "https://ubuntu.com/security/CVE-2019-1010024",
 2023            "https://www.cve.org/CVERecord?id=CVE-2019-1010024"
 2024          ],
 2025          "PublishedDate": "2019-07-15T04:15:00Z",
 2026          "LastModifiedDate": "2020-11-16T20:15:00Z"
 2027        },
 2028        {
 2029          "VulnerabilityID": "CVE-2019-1010025",
 2030          "PkgID": "libc6@2.31-13+deb11u4",
 2031          "PkgName": "libc6",
 2032          "InstalledVersion": "2.31-13+deb11u4",
 2033          "Status": "affected",
 2034          "Layer": {
 2035            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 2036            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 2037          },
 2038          "SeveritySource": "debian",
 2039          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025",
 2040          "DataSource": {
 2041            "ID": "debian",
 2042            "Name": "Debian Security Tracker",
 2043            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2044          },
 2045          "Title": "glibc: information disclosure of heap addresses of pthread_created thread",
 2046          "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.\"",
 2047          "Severity": "LOW",
 2048          "CweIDs": [
 2049            "CWE-330"
 2050          ],
 2051          "CVSS": {
 2052            "nvd": {
 2053              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N",
 2054              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
 2055              "V2Score": 5,
 2056              "V3Score": 5.3
 2057            },
 2058            "redhat": {
 2059              "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N",
 2060              "V3Score": 2.9
 2061            }
 2062          },
 2063          "References": [
 2064            "https://access.redhat.com/security/cve/CVE-2019-1010025",
 2065            "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025",
 2066            "https://security-tracker.debian.org/tracker/CVE-2019-1010025",
 2067            "https://sourceware.org/bugzilla/show_bug.cgi?id=22853",
 2068            "https://support.f5.com/csp/article/K06046097",
 2069            "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS",
 2070            "https://ubuntu.com/security/CVE-2019-1010025",
 2071            "https://www.cve.org/CVERecord?id=CVE-2019-1010025"
 2072          ],
 2073          "PublishedDate": "2019-07-15T04:15:00Z",
 2074          "LastModifiedDate": "2020-11-16T20:15:00Z"
 2075        },
 2076        {
 2077          "VulnerabilityID": "CVE-2019-9192",
 2078          "PkgID": "libc6@2.31-13+deb11u4",
 2079          "PkgName": "libc6",
 2080          "InstalledVersion": "2.31-13+deb11u4",
 2081          "Status": "affected",
 2082          "Layer": {
 2083            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 2084            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 2085          },
 2086          "SeveritySource": "debian",
 2087          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192",
 2088          "DataSource": {
 2089            "ID": "debian",
 2090            "Name": "Debian Security Tracker",
 2091            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2092          },
 2093          "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c",
 2094          "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.",
 2095          "Severity": "LOW",
 2096          "CweIDs": [
 2097            "CWE-674"
 2098          ],
 2099          "CVSS": {
 2100            "nvd": {
 2101              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
 2102              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 2103              "V2Score": 5,
 2104              "V3Score": 7.5
 2105            },
 2106            "redhat": {
 2107              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L",
 2108              "V3Score": 2.8
 2109            }
 2110          },
 2111          "References": [
 2112            "https://access.redhat.com/security/cve/CVE-2019-9192",
 2113            "https://nvd.nist.gov/vuln/detail/CVE-2019-9192",
 2114            "https://sourceware.org/bugzilla/show_bug.cgi?id=24269",
 2115            "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS",
 2116            "https://www.cve.org/CVERecord?id=CVE-2019-9192"
 2117          ],
 2118          "PublishedDate": "2019-02-26T18:29:00Z",
 2119          "LastModifiedDate": "2020-08-24T17:37:00Z"
 2120        },
 2121        {
 2122          "VulnerabilityID": "CVE-2022-1304",
 2123          "PkgID": "libcom-err2@1.46.2-2",
 2124          "PkgName": "libcom-err2",
 2125          "InstalledVersion": "1.46.2-2",
 2126          "Status": "affected",
 2127          "Layer": {
 2128            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 2129            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 2130          },
 2131          "SeveritySource": "nvd",
 2132          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1304",
 2133          "DataSource": {
 2134            "ID": "debian",
 2135            "Name": "Debian Security Tracker",
 2136            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2137          },
 2138          "Title": "out-of-bounds read/write via crafted filesystem",
 2139          "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.",
 2140          "Severity": "HIGH",
 2141          "CweIDs": [
 2142            "CWE-125",
 2143            "CWE-787"
 2144          ],
 2145          "CVSS": {
 2146            "nvd": {
 2147              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
 2148              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 2149              "V2Score": 6.8,
 2150              "V3Score": 7.8
 2151            },
 2152            "redhat": {
 2153              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H",
 2154              "V3Score": 5.8
 2155            }
 2156          },
 2157          "References": [
 2158            "https://access.redhat.com/errata/RHSA-2022:8361",
 2159            "https://access.redhat.com/security/cve/CVE-2022-1304",
 2160            "https://bugzilla.redhat.com/2069726",
 2161            "https://bugzilla.redhat.com/show_bug.cgi?id=2069726",
 2162            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304",
 2163            "https://errata.almalinux.org/9/ALSA-2022-8361.html",
 2164            "https://errata.rockylinux.org/RLSA-2022:8361",
 2165            "https://linux.oracle.com/cve/CVE-2022-1304.html",
 2166            "https://linux.oracle.com/errata/ELSA-2022-8361.html",
 2167            "https://marc.info/?l=linux-ext4\u0026m=165056234501732\u0026w=2",
 2168            "https://nvd.nist.gov/vuln/detail/CVE-2022-1304",
 2169            "https://ubuntu.com/security/notices/USN-5464-1",
 2170            "https://www.cve.org/CVERecord?id=CVE-2022-1304"
 2171          ],
 2172          "PublishedDate": "2022-04-14T21:15:00Z",
 2173          "LastModifiedDate": "2023-02-12T22:15:00Z"
 2174        },
 2175        {
 2176          "VulnerabilityID": "CVE-2022-32221",
 2177          "VendorIDs": [
 2178            "DSA-5330-1"
 2179          ],
 2180          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2181          "PkgName": "libcurl4",
 2182          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2183          "FixedVersion": "7.74.0-1.3+deb11u5",
 2184          "Status": "fixed",
 2185          "Layer": {
 2186            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2187            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2188          },
 2189          "SeveritySource": "nvd",
 2190          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32221",
 2191          "DataSource": {
 2192            "ID": "debian",
 2193            "Name": "Debian Security Tracker",
 2194            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2195          },
 2196          "Title": "POST following PUT confusion",
 2197          "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.",
 2198          "Severity": "CRITICAL",
 2199          "CweIDs": [
 2200            "CWE-668"
 2201          ],
 2202          "CVSS": {
 2203            "nvd": {
 2204              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
 2205              "V3Score": 9.8
 2206            },
 2207            "redhat": {
 2208              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N",
 2209              "V3Score": 4.8
 2210            }
 2211          },
 2212          "References": [
 2213            "http://seclists.org/fulldisclosure/2023/Jan/19",
 2214            "http://seclists.org/fulldisclosure/2023/Jan/20",
 2215            "http://www.openwall.com/lists/oss-security/2023/05/17/4",
 2216            "https://access.redhat.com/errata/RHSA-2023:0333",
 2217            "https://access.redhat.com/security/cve/CVE-2022-32221",
 2218            "https://bugzilla.redhat.com/2135411",
 2219            "https://bugzilla.redhat.com/show_bug.cgi?id=2135411",
 2220            "https://curl.se/docs/CVE-2022-32221.html",
 2221            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32221",
 2222            "https://errata.almalinux.org/9/ALSA-2023-0333.html",
 2223            "https://errata.rockylinux.org/RLSA-2023:0333",
 2224            "https://hackerone.com/reports/1704017",
 2225            "https://linux.oracle.com/cve/CVE-2022-32221.html",
 2226            "https://linux.oracle.com/errata/ELSA-2023-0333.html",
 2227            "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html",
 2228            "https://nvd.nist.gov/vuln/detail/CVE-2022-32221",
 2229            "https://security.gentoo.org/glsa/202212-01",
 2230            "https://security.netapp.com/advisory/ntap-20230110-0006/",
 2231            "https://security.netapp.com/advisory/ntap-20230208-0002/",
 2232            "https://support.apple.com/kb/HT213604",
 2233            "https://support.apple.com/kb/HT213605",
 2234            "https://ubuntu.com/security/notices/USN-5702-1",
 2235            "https://ubuntu.com/security/notices/USN-5702-2",
 2236            "https://ubuntu.com/security/notices/USN-5823-1",
 2237            "https://www.cve.org/CVERecord?id=CVE-2022-32221",
 2238            "https://www.debian.org/security/2023/dsa-5330"
 2239          ],
 2240          "PublishedDate": "2022-12-05T22:15:00Z",
 2241          "LastModifiedDate": "2023-05-17T09:15:00Z"
 2242        },
 2243        {
 2244          "VulnerabilityID": "CVE-2023-23914",
 2245          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2246          "PkgName": "libcurl4",
 2247          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2248          "Status": "will_not_fix",
 2249          "Layer": {
 2250            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2251            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2252          },
 2253          "SeveritySource": "nvd",
 2254          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23914",
 2255          "DataSource": {
 2256            "ID": "debian",
 2257            "Name": "Debian Security Tracker",
 2258            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2259          },
 2260          "Title": "HSTS ignored on multiple requests",
 2261          "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.",
 2262          "Severity": "CRITICAL",
 2263          "CweIDs": [
 2264            "CWE-319"
 2265          ],
 2266          "CVSS": {
 2267            "nvd": {
 2268              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
 2269              "V3Score": 9.1
 2270            },
 2271            "redhat": {
 2272              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
 2273              "V3Score": 6.5
 2274            }
 2275          },
 2276          "References": [
 2277            "https://access.redhat.com/security/cve/CVE-2023-23914",
 2278            "https://curl.se/docs/CVE-2023-23914.html",
 2279            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23914",
 2280            "https://hackerone.com/reports/1813864",
 2281            "https://nvd.nist.gov/vuln/detail/CVE-2023-23914",
 2282            "https://security.netapp.com/advisory/ntap-20230309-0006/",
 2283            "https://ubuntu.com/security/notices/USN-5891-1",
 2284            "https://www.cve.org/CVERecord?id=CVE-2023-23914"
 2285          ],
 2286          "PublishedDate": "2023-02-23T20:15:00Z",
 2287          "LastModifiedDate": "2023-03-09T19:15:00Z"
 2288        },
 2289        {
 2290          "VulnerabilityID": "CVE-2022-42916",
 2291          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2292          "PkgName": "libcurl4",
 2293          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2294          "Status": "will_not_fix",
 2295          "Layer": {
 2296            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2297            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2298          },
 2299          "SeveritySource": "nvd",
 2300          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42916",
 2301          "DataSource": {
 2302            "ID": "debian",
 2303            "Name": "Debian Security Tracker",
 2304            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2305          },
 2306          "Title": "HSTS bypass via IDN",
 2307          "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.",
 2308          "Severity": "HIGH",
 2309          "CweIDs": [
 2310            "CWE-319"
 2311          ],
 2312          "CVSS": {
 2313            "nvd": {
 2314              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
 2315              "V3Score": 7.5
 2316            },
 2317            "redhat": {
 2318              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
 2319              "V3Score": 7.5
 2320            }
 2321          },
 2322          "References": [
 2323            "http://seclists.org/fulldisclosure/2023/Jan/19",
 2324            "http://seclists.org/fulldisclosure/2023/Jan/20",
 2325            "http://www.openwall.com/lists/oss-security/2022/12/21/1",
 2326            "https://access.redhat.com/security/cve/CVE-2022-42916",
 2327            "https://curl.se/docs/CVE-2022-42916.html",
 2328            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42916",
 2329            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/37YEVVC6NAF6H7UHH6YAUY5QEVY6LIH2/",
 2330            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HVU3IMZCKR4VE6KJ4GCWRL2ILLC6OV76/",
 2331            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q27V5YYMXUVI6PRZQVECON32XPVWTKDK/",
 2332            "https://nvd.nist.gov/vuln/detail/CVE-2022-42916",
 2333            "https://security.gentoo.org/glsa/202212-01",
 2334            "https://security.netapp.com/advisory/ntap-20221209-0010/",
 2335            "https://support.apple.com/kb/HT213604",
 2336            "https://support.apple.com/kb/HT213605",
 2337            "https://ubuntu.com/security/notices/USN-5702-1",
 2338            "https://www.cve.org/CVERecord?id=CVE-2022-42916"
 2339          ],
 2340          "PublishedDate": "2022-10-29T02:15:00Z",
 2341          "LastModifiedDate": "2023-03-28T14:13:00Z"
 2342        },
 2343        {
 2344          "VulnerabilityID": "CVE-2022-43551",
 2345          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2346          "PkgName": "libcurl4",
 2347          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2348          "Status": "will_not_fix",
 2349          "Layer": {
 2350            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2351            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2352          },
 2353          "SeveritySource": "nvd",
 2354          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43551",
 2355          "DataSource": {
 2356            "ID": "debian",
 2357            "Name": "Debian Security Tracker",
 2358            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2359          },
 2360          "Title": "HSTS bypass via IDN",
 2361          "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.",
 2362          "Severity": "HIGH",
 2363          "CweIDs": [
 2364            "CWE-319"
 2365          ],
 2366          "CVSS": {
 2367            "nvd": {
 2368              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
 2369              "V3Score": 7.5
 2370            },
 2371            "redhat": {
 2372              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
 2373              "V3Score": 7.5
 2374            }
 2375          },
 2376          "References": [
 2377            "https://access.redhat.com/security/cve/CVE-2022-43551",
 2378            "https://curl.se/docs/CVE-2022-43551.html",
 2379            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43551",
 2380            "https://hackerone.com/reports/1755083",
 2381            "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/TVWZW5CNSJ7UYAF2BGSYAWAEXDJYUBHA/",
 2382            "https://nvd.nist.gov/vuln/detail/CVE-2022-43551",
 2383            "https://security.netapp.com/advisory/ntap-20230427-0007/",
 2384            "https://ubuntu.com/security/notices/USN-5788-1",
 2385            "https://www.cve.org/CVERecord?id=CVE-2022-43551"
 2386          ],
 2387          "PublishedDate": "2022-12-23T15:15:00Z",
 2388          "LastModifiedDate": "2023-04-27T15:15:00Z"
 2389        },
 2390        {
 2391          "VulnerabilityID": "CVE-2023-27533",
 2392          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2393          "PkgName": "libcurl4",
 2394          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2395          "Status": "affected",
 2396          "Layer": {
 2397            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2398            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2399          },
 2400          "SeveritySource": "nvd",
 2401          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27533",
 2402          "DataSource": {
 2403            "ID": "debian",
 2404            "Name": "Debian Security Tracker",
 2405            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2406          },
 2407          "Title": "TELNET option IAC injection",
 2408          "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.",
 2409          "Severity": "HIGH",
 2410          "CweIDs": [
 2411            "CWE-74"
 2412          ],
 2413          "CVSS": {
 2414            "nvd": {
 2415              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 2416              "V3Score": 8.8
 2417            },
 2418            "redhat": {
 2419              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:L/A:N",
 2420              "V3Score": 3.1
 2421            }
 2422          },
 2423          "References": [
 2424            "https://access.redhat.com/security/cve/CVE-2023-27533",
 2425            "https://curl.se/docs/CVE-2023-27533.html",
 2426            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27533",
 2427            "https://hackerone.com/reports/1891474",
 2428            "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html",
 2429            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/",
 2430            "https://nvd.nist.gov/vuln/detail/CVE-2023-27533",
 2431            "https://security.netapp.com/advisory/ntap-20230420-0011/",
 2432            "https://ubuntu.com/security/notices/USN-5964-1",
 2433            "https://ubuntu.com/security/notices/USN-5964-2",
 2434            "https://www.cve.org/CVERecord?id=CVE-2023-27533"
 2435          ],
 2436          "PublishedDate": "2023-03-30T20:15:00Z",
 2437          "LastModifiedDate": "2023-04-21T23:15:00Z"
 2438        },
 2439        {
 2440          "VulnerabilityID": "CVE-2023-27534",
 2441          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2442          "PkgName": "libcurl4",
 2443          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2444          "Status": "affected",
 2445          "Layer": {
 2446            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2447            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2448          },
 2449          "SeveritySource": "nvd",
 2450          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27534",
 2451          "DataSource": {
 2452            "ID": "debian",
 2453            "Name": "Debian Security Tracker",
 2454            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2455          },
 2456          "Title": "SFTP path ~ resolving discrepancy",
 2457          "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.",
 2458          "Severity": "HIGH",
 2459          "CweIDs": [
 2460            "CWE-22"
 2461          ],
 2462          "CVSS": {
 2463            "nvd": {
 2464              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
 2465              "V3Score": 8.8
 2466            },
 2467            "redhat": {
 2468              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N",
 2469              "V3Score": 3.7
 2470            }
 2471          },
 2472          "References": [
 2473            "https://access.redhat.com/security/cve/CVE-2023-27534",
 2474            "https://curl.se/docs/CVE-2023-27534.html",
 2475            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27534",
 2476            "https://hackerone.com/reports/1892351",
 2477            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/",
 2478            "https://nvd.nist.gov/vuln/detail/CVE-2023-27534",
 2479            "https://security.netapp.com/advisory/ntap-20230420-0012/",
 2480            "https://ubuntu.com/security/notices/USN-5964-1",
 2481            "https://www.cve.org/CVERecord?id=CVE-2023-27534"
 2482          ],
 2483          "PublishedDate": "2023-03-30T20:15:00Z",
 2484          "LastModifiedDate": "2023-04-20T09:15:00Z"
 2485        },
 2486        {
 2487          "VulnerabilityID": "CVE-2022-43552",
 2488          "VendorIDs": [
 2489            "DSA-5330-1"
 2490          ],
 2491          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2492          "PkgName": "libcurl4",
 2493          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2494          "FixedVersion": "7.74.0-1.3+deb11u5",
 2495          "Status": "fixed",
 2496          "Layer": {
 2497            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2498            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2499          },
 2500          "SeveritySource": "nvd",
 2501          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43552",
 2502          "DataSource": {
 2503            "ID": "debian",
 2504            "Name": "Debian Security Tracker",
 2505            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2506          },
 2507          "Title": "Use-after-free triggered by an HTTP proxy deny response",
 2508          "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.",
 2509          "Severity": "MEDIUM",
 2510          "CweIDs": [
 2511            "CWE-416"
 2512          ],
 2513          "CVSS": {
 2514            "nvd": {
 2515              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
 2516              "V3Score": 5.9
 2517            },
 2518            "redhat": {
 2519              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
 2520              "V3Score": 5.9
 2521            }
 2522          },
 2523          "References": [
 2524            "http://seclists.org/fulldisclosure/2023/Mar/17",
 2525            "https://access.redhat.com/errata/RHSA-2023:2478",
 2526            "https://access.redhat.com/security/cve/CVE-2022-43552",
 2527            "https://bugzilla.redhat.com/2120718",
 2528            "https://bugzilla.redhat.com/2152652",
 2529            "https://curl.se/docs/CVE-2022-43552.html",
 2530            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43552",
 2531            "https://errata.almalinux.org/9/ALSA-2023-2478.html",
 2532            "https://hackerone.com/reports/1764858",
 2533            "https://linux.oracle.com/cve/CVE-2022-43552.html",
 2534            "https://linux.oracle.com/errata/ELSA-2023-2963.html",
 2535            "https://nvd.nist.gov/vuln/detail/CVE-2022-43552",
 2536            "https://security.netapp.com/advisory/ntap-20230214-0002/",
 2537            "https://support.apple.com/kb/HT213670",
 2538            "https://ubuntu.com/security/notices/USN-5788-1",
 2539            "https://ubuntu.com/security/notices/USN-5894-1",
 2540            "https://www.cve.org/CVERecord?id=CVE-2022-43552"
 2541          ],
 2542          "PublishedDate": "2023-02-09T20:15:00Z",
 2543          "LastModifiedDate": "2023-03-28T05:15:00Z"
 2544        },
 2545        {
 2546          "VulnerabilityID": "CVE-2023-23915",
 2547          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2548          "PkgName": "libcurl4",
 2549          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2550          "Status": "will_not_fix",
 2551          "Layer": {
 2552            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2553            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2554          },
 2555          "SeveritySource": "nvd",
 2556          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23915",
 2557          "DataSource": {
 2558            "ID": "debian",
 2559            "Name": "Debian Security Tracker",
 2560            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2561          },
 2562          "Title": "HSTS amnesia with --parallel",
 2563          "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.",
 2564          "Severity": "MEDIUM",
 2565          "CweIDs": [
 2566            "CWE-319"
 2567          ],
 2568          "CVSS": {
 2569            "nvd": {
 2570              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
 2571              "V3Score": 6.5
 2572            },
 2573            "redhat": {
 2574              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N",
 2575              "V3Score": 4.2
 2576            }
 2577          },
 2578          "References": [
 2579            "https://access.redhat.com/security/cve/CVE-2023-23915",
 2580            "https://curl.se/docs/CVE-2023-23915.html",
 2581            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23915",
 2582            "https://hackerone.com/reports/1826048",
 2583            "https://nvd.nist.gov/vuln/detail/CVE-2023-23915",
 2584            "https://security.netapp.com/advisory/ntap-20230309-0006/",
 2585            "https://ubuntu.com/security/notices/USN-5891-1",
 2586            "https://www.cve.org/CVERecord?id=CVE-2023-23915"
 2587          ],
 2588          "PublishedDate": "2023-02-23T20:15:00Z",
 2589          "LastModifiedDate": "2023-03-09T19:15:00Z"
 2590        },
 2591        {
 2592          "VulnerabilityID": "CVE-2023-23916",
 2593          "VendorIDs": [
 2594            "DSA-5365-1"
 2595          ],
 2596          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2597          "PkgName": "libcurl4",
 2598          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2599          "FixedVersion": "7.74.0-1.3+deb11u7",
 2600          "Status": "fixed",
 2601          "Layer": {
 2602            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2603            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2604          },
 2605          "SeveritySource": "nvd",
 2606          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23916",
 2607          "DataSource": {
 2608            "ID": "debian",
 2609            "Name": "Debian Security Tracker",
 2610            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2611          },
 2612          "Title": "HTTP multi-header compression denial of service",
 2613          "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.",
 2614          "Severity": "MEDIUM",
 2615          "CweIDs": [
 2616            "CWE-770"
 2617          ],
 2618          "CVSS": {
 2619            "nvd": {
 2620              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 2621              "V3Score": 6.5
 2622            },
 2623            "redhat": {
 2624              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 2625              "V3Score": 6.5
 2626            }
 2627          },
 2628          "References": [
 2629            "https://access.redhat.com/errata/RHSA-2023:1701",
 2630            "https://access.redhat.com/security/cve/CVE-2023-23916",
 2631            "https://bugzilla.redhat.com/2167815",
 2632            "https://bugzilla.redhat.com/show_bug.cgi?id=2167815",
 2633            "https://curl.se/docs/CVE-2023-23916.html",
 2634            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23916",
 2635            "https://errata.almalinux.org/9/ALSA-2023-1701.html",
 2636            "https://errata.rockylinux.org/RLSA-2023:1140",
 2637            "https://hackerone.com/reports/1826048",
 2638            "https://linux.oracle.com/cve/CVE-2023-23916.html",
 2639            "https://linux.oracle.com/errata/ELSA-2023-1701.html",
 2640            "https://lists.debian.org/debian-lts-announce/2023/02/msg00035.html",
 2641            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BQKE6TXYDHOTFHLTBZ5X73GTKI7II5KO/",
 2642            "https://nvd.nist.gov/vuln/detail/CVE-2023-23916",
 2643            "https://security.netapp.com/advisory/ntap-20230309-0006/",
 2644            "https://ubuntu.com/security/notices/USN-5891-1",
 2645            "https://www.cve.org/CVERecord?id=CVE-2023-23916",
 2646            "https://www.debian.org/security/2023/dsa-5365"
 2647          ],
 2648          "PublishedDate": "2023-02-23T20:15:00Z",
 2649          "LastModifiedDate": "2023-04-18T16:49:00Z"
 2650        },
 2651        {
 2652          "VulnerabilityID": "CVE-2023-27535",
 2653          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2654          "PkgName": "libcurl4",
 2655          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2656          "Status": "affected",
 2657          "Layer": {
 2658            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2659            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2660          },
 2661          "SeveritySource": "nvd",
 2662          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27535",
 2663          "DataSource": {
 2664            "ID": "debian",
 2665            "Name": "Debian Security Tracker",
 2666            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2667          },
 2668          "Title": "FTP too eager connection reuse",
 2669          "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.",
 2670          "Severity": "MEDIUM",
 2671          "CweIDs": [
 2672            "CWE-287"
 2673          ],
 2674          "CVSS": {
 2675            "nvd": {
 2676              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
 2677              "V3Score": 5.9
 2678            },
 2679            "redhat": {
 2680              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
 2681              "V3Score": 5.9
 2682            }
 2683          },
 2684          "References": [
 2685            "https://access.redhat.com/errata/RHSA-2023:2650",
 2686            "https://access.redhat.com/security/cve/CVE-2023-27535",
 2687            "https://bugzilla.redhat.com/2179073",
 2688            "https://bugzilla.redhat.com/show_bug.cgi?id=2179073",
 2689            "https://bugzilla.redhat.com/show_bug.cgi?id=2188029",
 2690            "https://curl.se/docs/CVE-2023-27535.html",
 2691            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27535",
 2692            "https://errata.almalinux.org/9/ALSA-2023-2650.html",
 2693            "https://errata.rockylinux.org/RLSA-2023:3106",
 2694            "https://hackerone.com/reports/1892780",
 2695            "https://linux.oracle.com/cve/CVE-2023-27535.html",
 2696            "https://linux.oracle.com/errata/ELSA-2023-3106.html",
 2697            "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html",
 2698            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/",
 2699            "https://nvd.nist.gov/vuln/detail/CVE-2023-27535",
 2700            "https://security.netapp.com/advisory/ntap-20230420-0010/",
 2701            "https://ubuntu.com/security/notices/USN-5964-1",
 2702            "https://ubuntu.com/security/notices/USN-5964-2",
 2703            "https://www.cve.org/CVERecord?id=CVE-2023-27535"
 2704          ],
 2705          "PublishedDate": "2023-03-30T20:15:00Z",
 2706          "LastModifiedDate": "2023-06-29T19:29:00Z"
 2707        },
 2708        {
 2709          "VulnerabilityID": "CVE-2023-27536",
 2710          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2711          "PkgName": "libcurl4",
 2712          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2713          "Status": "affected",
 2714          "Layer": {
 2715            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2716            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2717          },
 2718          "SeveritySource": "nvd",
 2719          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27536",
 2720          "DataSource": {
 2721            "ID": "debian",
 2722            "Name": "Debian Security Tracker",
 2723            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2724          },
 2725          "Title": "GSS delegation too eager connection re-use",
 2726          "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.",
 2727          "Severity": "MEDIUM",
 2728          "CweIDs": [
 2729            "CWE-287"
 2730          ],
 2731          "CVSS": {
 2732            "nvd": {
 2733              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
 2734              "V3Score": 5.9
 2735            },
 2736            "redhat": {
 2737              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
 2738              "V3Score": 5.9
 2739            }
 2740          },
 2741          "References": [
 2742            "https://access.redhat.com/security/cve/CVE-2023-27536",
 2743            "https://curl.se/docs/CVE-2023-27536.html",
 2744            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27536",
 2745            "https://hackerone.com/reports/1895135",
 2746            "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html",
 2747            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/",
 2748            "https://nvd.nist.gov/vuln/detail/CVE-2023-27536",
 2749            "https://security.netapp.com/advisory/ntap-20230420-0010/",
 2750            "https://ubuntu.com/security/notices/USN-5964-1",
 2751            "https://ubuntu.com/security/notices/USN-5964-2",
 2752            "https://www.cve.org/CVERecord?id=CVE-2023-27536"
 2753          ],
 2754          "PublishedDate": "2023-03-30T20:15:00Z",
 2755          "LastModifiedDate": "2023-06-06T20:34:00Z"
 2756        },
 2757        {
 2758          "VulnerabilityID": "CVE-2023-27538",
 2759          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2760          "PkgName": "libcurl4",
 2761          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2762          "Status": "affected",
 2763          "Layer": {
 2764            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2765            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2766          },
 2767          "SeveritySource": "nvd",
 2768          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27538",
 2769          "DataSource": {
 2770            "ID": "debian",
 2771            "Name": "Debian Security Tracker",
 2772            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2773          },
 2774          "Title": "SSH connection too eager reuse still",
 2775          "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.",
 2776          "Severity": "MEDIUM",
 2777          "CweIDs": [
 2778            "CWE-287"
 2779          ],
 2780          "CVSS": {
 2781            "nvd": {
 2782              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
 2783              "V3Score": 5.5
 2784            },
 2785            "redhat": {
 2786              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
 2787              "V3Score": 5.9
 2788            }
 2789          },
 2790          "References": [
 2791            "https://access.redhat.com/security/cve/CVE-2023-27538",
 2792            "https://curl.se/docs/CVE-2023-27538.html",
 2793            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27538",
 2794            "https://hackerone.com/reports/1898475",
 2795            "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html",
 2796            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/",
 2797            "https://nvd.nist.gov/vuln/detail/CVE-2023-27538",
 2798            "https://security.netapp.com/advisory/ntap-20230420-0010/",
 2799            "https://ubuntu.com/security/notices/USN-5964-1",
 2800            "https://www.cve.org/CVERecord?id=CVE-2023-27538"
 2801          ],
 2802          "PublishedDate": "2023-03-30T20:15:00Z",
 2803          "LastModifiedDate": "2023-04-21T23:15:00Z"
 2804        },
 2805        {
 2806          "VulnerabilityID": "CVE-2023-28321",
 2807          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2808          "PkgName": "libcurl4",
 2809          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2810          "Status": "affected",
 2811          "Layer": {
 2812            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2813            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2814          },
 2815          "SeveritySource": "nvd",
 2816          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28321",
 2817          "DataSource": {
 2818            "ID": "debian",
 2819            "Name": "Debian Security Tracker",
 2820            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2821          },
 2822          "Title": "IDN wildcard match may lead to Improper Cerificate Validation",
 2823          "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`.",
 2824          "Severity": "MEDIUM",
 2825          "CweIDs": [
 2826            "CWE-295"
 2827          ],
 2828          "CVSS": {
 2829            "nvd": {
 2830              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
 2831              "V3Score": 5.9
 2832            },
 2833            "redhat": {
 2834              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
 2835              "V3Score": 5.9
 2836            }
 2837          },
 2838          "References": [
 2839            "http://seclists.org/fulldisclosure/2023/Jul/47",
 2840            "http://seclists.org/fulldisclosure/2023/Jul/48",
 2841            "http://seclists.org/fulldisclosure/2023/Jul/52",
 2842            "https://access.redhat.com/errata/RHSA-2023:4354",
 2843            "https://access.redhat.com/security/cve/CVE-2023-28321",
 2844            "https://bugzilla.redhat.com/2196786",
 2845            "https://bugzilla.redhat.com/2196793",
 2846            "https://curl.se/docs/CVE-2023-28321.html",
 2847            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28321",
 2848            "https://errata.almalinux.org/9/ALSA-2023-4354.html",
 2849            "https://hackerone.com/reports/1950627",
 2850            "https://linux.oracle.com/cve/CVE-2023-28321.html",
 2851            "https://linux.oracle.com/errata/ELSA-2023-4354.html",
 2852            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F4I75RDGX5ULSSCBE5BF3P5I5SFO7ULQ/",
 2853            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z2LIWHWKOVH24COGGBCVOWDXXIUPKOMK/",
 2854            "https://nvd.nist.gov/vuln/detail/CVE-2023-28321",
 2855            "https://security.netapp.com/advisory/ntap-20230609-0009/",
 2856            "https://support.apple.com/kb/HT213843",
 2857            "https://support.apple.com/kb/HT213844",
 2858            "https://support.apple.com/kb/HT213845",
 2859            "https://ubuntu.com/security/notices/USN-6237-1",
 2860            "https://www.cve.org/CVERecord?id=CVE-2023-28321"
 2861          ],
 2862          "PublishedDate": "2023-05-26T21:15:00Z",
 2863          "LastModifiedDate": "2023-08-02T16:46:00Z"
 2864        },
 2865        {
 2866          "VulnerabilityID": "CVE-2021-22922",
 2867          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2868          "PkgName": "libcurl4",
 2869          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2870          "Status": "affected",
 2871          "Layer": {
 2872            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2873            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2874          },
 2875          "SeveritySource": "debian",
 2876          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-22922",
 2877          "DataSource": {
 2878            "ID": "debian",
 2879            "Name": "Debian Security Tracker",
 2880            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2881          },
 2882          "Title": "curl: Content not matching hash in Metalink is not being discarded",
 2883          "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.",
 2884          "Severity": "LOW",
 2885          "CweIDs": [
 2886            "CWE-755"
 2887          ],
 2888          "CVSS": {
 2889            "nvd": {
 2890              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N",
 2891              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N",
 2892              "V2Score": 4.3,
 2893              "V3Score": 6.5
 2894            },
 2895            "redhat": {
 2896              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N",
 2897              "V3Score": 6.5
 2898            }
 2899          },
 2900          "References": [
 2901            "https://access.redhat.com/security/cve/CVE-2021-22922",
 2902            "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf",
 2903            "https://curl.se/docs/CVE-2021-22922.html",
 2904            "https://hackerone.com/reports/1213175",
 2905            "https://linux.oracle.com/cve/CVE-2021-22922.html",
 2906            "https://linux.oracle.com/errata/ELSA-2021-3582.html",
 2907            "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cdev.kafka.apache.org%3E",
 2908            "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cusers.kafka.apache.org%3E",
 2909            "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cdev.kafka.apache.org%3E",
 2910            "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cusers.kafka.apache.org%3E",
 2911            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRUCW2UVNYUDZF72DQLFQR4PJEC6CF7V/",
 2912            "https://nvd.nist.gov/vuln/detail/CVE-2021-22922",
 2913            "https://security.gentoo.org/glsa/202212-01",
 2914            "https://security.netapp.com/advisory/ntap-20210902-0003/",
 2915            "https://www.cve.org/CVERecord?id=CVE-2021-22922",
 2916            "https://www.oracle.com/security-alerts/cpuoct2021.html"
 2917          ],
 2918          "PublishedDate": "2021-08-05T21:15:00Z",
 2919          "LastModifiedDate": "2023-01-05T18:16:00Z"
 2920        },
 2921        {
 2922          "VulnerabilityID": "CVE-2021-22923",
 2923          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2924          "PkgName": "libcurl4",
 2925          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2926          "Status": "affected",
 2927          "Layer": {
 2928            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2929            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2930          },
 2931          "SeveritySource": "debian",
 2932          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-22923",
 2933          "DataSource": {
 2934            "ID": "debian",
 2935            "Name": "Debian Security Tracker",
 2936            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2937          },
 2938          "Title": "curl: Metalink download sends credentials",
 2939          "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.",
 2940          "Severity": "LOW",
 2941          "CweIDs": [
 2942            "CWE-319",
 2943            "CWE-522"
 2944          ],
 2945          "CVSS": {
 2946            "nvd": {
 2947              "V2Vector": "AV:N/AC:H/Au:N/C:P/I:N/A:N",
 2948              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:N/A:N",
 2949              "V2Score": 2.6,
 2950              "V3Score": 5.3
 2951            },
 2952            "redhat": {
 2953              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:N/A:N",
 2954              "V3Score": 5.7
 2955            }
 2956          },
 2957          "References": [
 2958            "https://access.redhat.com/security/cve/CVE-2021-22923",
 2959            "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf",
 2960            "https://curl.se/docs/CVE-2021-22923.html",
 2961            "https://hackerone.com/reports/1213181",
 2962            "https://linux.oracle.com/cve/CVE-2021-22923.html",
 2963            "https://linux.oracle.com/errata/ELSA-2021-3582.html",
 2964            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRUCW2UVNYUDZF72DQLFQR4PJEC6CF7V/",
 2965            "https://nvd.nist.gov/vuln/detail/CVE-2021-22923",
 2966            "https://security.gentoo.org/glsa/202212-01",
 2967            "https://security.netapp.com/advisory/ntap-20210902-0003/",
 2968            "https://www.cve.org/CVERecord?id=CVE-2021-22923",
 2969            "https://www.oracle.com/security-alerts/cpuoct2021.html"
 2970          ],
 2971          "PublishedDate": "2021-08-05T21:15:00Z",
 2972          "LastModifiedDate": "2023-06-30T17:47:00Z"
 2973        },
 2974        {
 2975          "VulnerabilityID": "CVE-2023-28320",
 2976          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 2977          "PkgName": "libcurl4",
 2978          "InstalledVersion": "7.74.0-1.3+deb11u3",
 2979          "Status": "affected",
 2980          "Layer": {
 2981            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 2982            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 2983          },
 2984          "SeveritySource": "debian",
 2985          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28320",
 2986          "DataSource": {
 2987            "ID": "debian",
 2988            "Name": "Debian Security Tracker",
 2989            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 2990          },
 2991          "Title": "siglongjmp race condition may lead to crash",
 2992          "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.",
 2993          "Severity": "LOW",
 2994          "CweIDs": [
 2995            "CWE-362",
 2996            "CWE-400"
 2997          ],
 2998          "CVSS": {
 2999            "nvd": {
 3000              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
 3001              "V3Score": 5.9
 3002            },
 3003            "redhat": {
 3004              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L",
 3005              "V3Score": 3.7
 3006            }
 3007          },
 3008          "References": [
 3009            "http://seclists.org/fulldisclosure/2023/Jul/47",
 3010            "http://seclists.org/fulldisclosure/2023/Jul/48",
 3011            "http://seclists.org/fulldisclosure/2023/Jul/52",
 3012            "https://access.redhat.com/security/cve/CVE-2023-28320",
 3013            "https://curl.se/docs/CVE-2023-28320.html",
 3014            "https://hackerone.com/reports/1929597",
 3015            "https://nvd.nist.gov/vuln/detail/CVE-2023-28320",
 3016            "https://security.netapp.com/advisory/ntap-20230609-0009/",
 3017            "https://support.apple.com/kb/HT213843",
 3018            "https://support.apple.com/kb/HT213844",
 3019            "https://support.apple.com/kb/HT213845",
 3020            "https://www.cve.org/CVERecord?id=CVE-2023-28320"
 3021          ],
 3022          "PublishedDate": "2023-05-26T21:15:00Z",
 3023          "LastModifiedDate": "2023-08-02T16:46:00Z"
 3024        },
 3025        {
 3026          "VulnerabilityID": "CVE-2023-28322",
 3027          "PkgID": "libcurl4@7.74.0-1.3+deb11u3",
 3028          "PkgName": "libcurl4",
 3029          "InstalledVersion": "7.74.0-1.3+deb11u3",
 3030          "Status": "affected",
 3031          "Layer": {
 3032            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 3033            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 3034          },
 3035          "SeveritySource": "nvd",
 3036          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28322",
 3037          "DataSource": {
 3038            "ID": "debian",
 3039            "Name": "Debian Security Tracker",
 3040            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3041          },
 3042          "Title": "more POST-after-PUT confusion",
 3043          "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.",
 3044          "Severity": "LOW",
 3045          "CVSS": {
 3046            "nvd": {
 3047              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N",
 3048              "V3Score": 3.7
 3049            },
 3050            "redhat": {
 3051              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N",
 3052              "V3Score": 3.7
 3053            }
 3054          },
 3055          "References": [
 3056            "http://seclists.org/fulldisclosure/2023/Jul/47",
 3057            "http://seclists.org/fulldisclosure/2023/Jul/48",
 3058            "http://seclists.org/fulldisclosure/2023/Jul/52",
 3059            "https://access.redhat.com/errata/RHSA-2023:4354",
 3060            "https://access.redhat.com/security/cve/CVE-2023-28322",
 3061            "https://bugzilla.redhat.com/2196786",
 3062            "https://bugzilla.redhat.com/2196793",
 3063            "https://curl.se/docs/CVE-2023-28322.html",
 3064            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28322",
 3065            "https://errata.almalinux.org/9/ALSA-2023-4354.html",
 3066            "https://hackerone.com/reports/1954658",
 3067            "https://linux.oracle.com/cve/CVE-2023-28322.html",
 3068            "https://linux.oracle.com/errata/ELSA-2023-4354.html",
 3069            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F4I75RDGX5ULSSCBE5BF3P5I5SFO7ULQ/",
 3070            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z2LIWHWKOVH24COGGBCVOWDXXIUPKOMK/",
 3071            "https://nvd.nist.gov/vuln/detail/CVE-2023-28322",
 3072            "https://security.netapp.com/advisory/ntap-20230609-0009/",
 3073            "https://support.apple.com/kb/HT213843",
 3074            "https://support.apple.com/kb/HT213844",
 3075            "https://support.apple.com/kb/HT213845",
 3076            "https://ubuntu.com/security/notices/USN-6237-1",
 3077            "https://www.cve.org/CVERecord?id=CVE-2023-28322"
 3078          ],
 3079          "PublishedDate": "2023-05-26T21:15:00Z",
 3080          "LastModifiedDate": "2023-08-02T16:46:00Z"
 3081        },
 3082        {
 3083          "VulnerabilityID": "CVE-2019-8457",
 3084          "PkgID": "libdb5.3@5.3.28+dfsg1-0.8",
 3085          "PkgName": "libdb5.3",
 3086          "InstalledVersion": "5.3.28+dfsg1-0.8",
 3087          "Status": "affected",
 3088          "Layer": {
 3089            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 3090            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 3091          },
 3092          "SeveritySource": "nvd",
 3093          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-8457",
 3094          "DataSource": {
 3095            "ID": "debian",
 3096            "Name": "Debian Security Tracker",
 3097            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3098          },
 3099          "Title": "sqlite: heap out-of-bound read in function rtreenode()",
 3100          "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.",
 3101          "Severity": "CRITICAL",
 3102          "CweIDs": [
 3103            "CWE-125"
 3104          ],
 3105          "CVSS": {
 3106            "nvd": {
 3107              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P",
 3108              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
 3109              "V2Score": 7.5,
 3110              "V3Score": 9.8
 3111            },
 3112            "redhat": {
 3113              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 3114              "V3Score": 7.5
 3115            }
 3116          },
 3117          "References": [
 3118            "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html",
 3119            "https://access.redhat.com/security/cve/CVE-2019-8457",
 3120            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457",
 3121            "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365",
 3122            "https://linux.oracle.com/cve/CVE-2019-8457.html",
 3123            "https://linux.oracle.com/errata/ELSA-2020-1810.html",
 3124            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/",
 3125            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/",
 3126            "https://nvd.nist.gov/vuln/detail/CVE-2019-8457",
 3127            "https://security.netapp.com/advisory/ntap-20190606-0002/",
 3128            "https://ubuntu.com/security/notices/USN-4004-1",
 3129            "https://ubuntu.com/security/notices/USN-4004-2",
 3130            "https://ubuntu.com/security/notices/USN-4019-1",
 3131            "https://ubuntu.com/security/notices/USN-4019-2",
 3132            "https://usn.ubuntu.com/4004-1/",
 3133            "https://usn.ubuntu.com/4004-2/",
 3134            "https://usn.ubuntu.com/4019-1/",
 3135            "https://usn.ubuntu.com/4019-2/",
 3136            "https://www.cve.org/CVERecord?id=CVE-2019-8457",
 3137            "https://www.oracle.com/security-alerts/cpuapr2020.html",
 3138            "https://www.oracle.com/security-alerts/cpujan2020.html",
 3139            "https://www.oracle.com/security-alerts/cpujul2020.html",
 3140            "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html",
 3141            "https://www.sqlite.org/releaselog/3_28_0.html",
 3142            "https://www.sqlite.org/src/info/90acdbfce9c08858"
 3143          ],
 3144          "PublishedDate": "2019-05-30T16:29:00Z",
 3145          "LastModifiedDate": "2021-07-31T08:15:00Z"
 3146        },
 3147        {
 3148          "VulnerabilityID": "CVE-2022-43680",
 3149          "VendorIDs": [
 3150            "DSA-5266-1"
 3151          ],
 3152          "PkgID": "libexpat1@2.2.10-2+deb11u4",
 3153          "PkgName": "libexpat1",
 3154          "InstalledVersion": "2.2.10-2+deb11u4",
 3155          "FixedVersion": "2.2.10-2+deb11u5",
 3156          "Status": "fixed",
 3157          "Layer": {
 3158            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 3159            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 3160          },
 3161          "SeveritySource": "nvd",
 3162          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43680",
 3163          "DataSource": {
 3164            "ID": "debian",
 3165            "Name": "Debian Security Tracker",
 3166            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3167          },
 3168          "Title": "use-after free caused by overeager destruction of a shared DTD in XML_ExternalEntityParserCreate",
 3169          "Description": "In libexpat through 2.4.9, there is a use-after free caused by overeager destruction of a shared DTD in XML_ExternalEntityParserCreate in out-of-memory situations.",
 3170          "Severity": "HIGH",
 3171          "CweIDs": [
 3172            "CWE-416"
 3173          ],
 3174          "CVSS": {
 3175            "nvd": {
 3176              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 3177              "V3Score": 7.5
 3178            },
 3179            "redhat": {
 3180              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 3181              "V3Score": 7.5
 3182            }
 3183          },
 3184          "References": [
 3185            "https://access.redhat.com/errata/RHSA-2023:0337",
 3186            "https://access.redhat.com/security/cve/CVE-2022-43680",
 3187            "https://bugzilla.redhat.com/2140059",
 3188            "https://bugzilla.redhat.com/show_bug.cgi?id=2140059",
 3189            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43680",
 3190            "https://errata.almalinux.org/9/ALSA-2023-0337.html",
 3191            "https://errata.rockylinux.org/RLSA-2023:0337",
 3192            "https://github.com/libexpat/libexpat/issues/649",
 3193            "https://github.com/libexpat/libexpat/pull/616",
 3194            "https://github.com/libexpat/libexpat/pull/650",
 3195            "https://linux.oracle.com/cve/CVE-2022-43680.html",
 3196            "https://linux.oracle.com/errata/ELSA-2023-0337.html",
 3197            "https://lists.debian.org/debian-lts-announce/2022/10/msg00033.html",
 3198            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AJ5VY2VYXE4WTRGQ6LMGLF6FV3SY37YE/",
 3199            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BY4OPSIB33ETNUXZY2UPZ4NGQ3OKDY4D/",
 3200            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DPQVIF6TOJNY2T3ZZETFKR4G34FFREBQ/",
 3201            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FFCOMBSOJKLIKCGCJWHLJXO4EVYBG7AR/",
 3202            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IUJ2BULJTZ2BMSKQHB6US674P55UCWWS/",
 3203            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XG5XOOB7CD55CEE6OJYKSACSIMQ4RWQ6/",
 3204            "https://nvd.nist.gov/vuln/detail/CVE-2022-43680",
 3205            "https://security.gentoo.org/glsa/202210-38",
 3206            "https://security.netapp.com/advisory/ntap-20221118-0007/",
 3207            "https://ubuntu.com/security/notices/USN-5638-2",
 3208            "https://ubuntu.com/security/notices/USN-5638-3",
 3209            "https://ubuntu.com/security/notices/USN-5638-4",
 3210            "https://www.cve.org/CVERecord?id=CVE-2022-43680",
 3211            "https://www.debian.org/security/2022/dsa-5266"
 3212          ],
 3213          "PublishedDate": "2022-10-24T14:15:00Z",
 3214          "LastModifiedDate": "2022-12-02T23:00:00Z"
 3215        },
 3216        {
 3217          "VulnerabilityID": "CVE-2013-0340",
 3218          "PkgID": "libexpat1@2.2.10-2+deb11u4",
 3219          "PkgName": "libexpat1",
 3220          "InstalledVersion": "2.2.10-2+deb11u4",
 3221          "Status": "affected",
 3222          "Layer": {
 3223            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 3224            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 3225          },
 3226          "SeveritySource": "debian",
 3227          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-0340",
 3228          "DataSource": {
 3229            "ID": "debian",
 3230            "Name": "Debian Security Tracker",
 3231            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3232          },
 3233          "Title": "expat: internal entity expansion",
 3234          "Description": "expat 2.1.0 and earlier does not properly handle entities expansion unless an application developer uses the XML_SetEntityDeclHandler function, which allows remote attackers to cause a denial of service (resource consumption), send HTTP requests to intranet servers, or read arbitrary files via a crafted XML document, aka an XML External Entity (XXE) issue. NOTE: it could be argued that because expat already provides the ability to disable external entity expansion, the responsibility for resolving this issue lies with application developers; according to this argument, this entry should be REJECTed, and each affected application would need its own CVE.",
 3235          "Severity": "LOW",
 3236          "CweIDs": [
 3237            "CWE-611"
 3238          ],
 3239          "CVSS": {
 3240            "nvd": {
 3241              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
 3242              "V2Score": 6.8
 3243            },
 3244            "redhat": {
 3245              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 3246              "V2Score": 4.3
 3247            }
 3248          },
 3249          "References": [
 3250            "http://openwall.com/lists/oss-security/2013/02/22/3",
 3251            "http://seclists.org/fulldisclosure/2021/Oct/61",
 3252            "http://seclists.org/fulldisclosure/2021/Oct/62",
 3253            "http://seclists.org/fulldisclosure/2021/Oct/63",
 3254            "http://seclists.org/fulldisclosure/2021/Sep/33",
 3255            "http://seclists.org/fulldisclosure/2021/Sep/34",
 3256            "http://seclists.org/fulldisclosure/2021/Sep/35",
 3257            "http://seclists.org/fulldisclosure/2021/Sep/38",
 3258            "http://seclists.org/fulldisclosure/2021/Sep/39",
 3259            "http://seclists.org/fulldisclosure/2021/Sep/40",
 3260            "http://securitytracker.com/id?1028213",
 3261            "http://www.openwall.com/lists/oss-security/2013/04/12/6",
 3262            "http://www.openwall.com/lists/oss-security/2021/10/07/4",
 3263            "http://www.osvdb.org/90634",
 3264            "http://www.securityfocus.com/bid/58233",
 3265            "https://access.redhat.com/security/cve/CVE-2013-0340",
 3266            "https://lists.apache.org/thread.html/r41eca5f4f09e74436cbb05dec450fc2bef37b5d3e966aa7cc5fada6d%40%3Cannounce.apache.org%3E",
 3267            "https://lists.apache.org/thread.html/rfb2c193360436e230b85547e85a41bea0916916f96c501f5b6fc4702%40%3Cusers.openoffice.apache.org%3E",
 3268            "https://nvd.nist.gov/vuln/detail/CVE-2013-0340",
 3269            "https://security.gentoo.org/glsa/201701-21",
 3270            "https://support.apple.com/kb/HT212804",
 3271            "https://support.apple.com/kb/HT212805",
 3272            "https://support.apple.com/kb/HT212807",
 3273            "https://support.apple.com/kb/HT212814",
 3274            "https://support.apple.com/kb/HT212815",
 3275            "https://support.apple.com/kb/HT212819",
 3276            "https://www.cve.org/CVERecord?id=CVE-2013-0340"
 3277          ],
 3278          "PublishedDate": "2014-01-21T18:55:00Z",
 3279          "LastModifiedDate": "2023-02-13T04:41:00Z"
 3280        },
 3281        {
 3282          "VulnerabilityID": "CVE-2022-1304",
 3283          "PkgID": "libext2fs2@1.46.2-2",
 3284          "PkgName": "libext2fs2",
 3285          "InstalledVersion": "1.46.2-2",
 3286          "Status": "affected",
 3287          "Layer": {
 3288            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 3289            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 3290          },
 3291          "SeveritySource": "nvd",
 3292          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1304",
 3293          "DataSource": {
 3294            "ID": "debian",
 3295            "Name": "Debian Security Tracker",
 3296            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3297          },
 3298          "Title": "out-of-bounds read/write via crafted filesystem",
 3299          "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.",
 3300          "Severity": "HIGH",
 3301          "CweIDs": [
 3302            "CWE-125",
 3303            "CWE-787"
 3304          ],
 3305          "CVSS": {
 3306            "nvd": {
 3307              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
 3308              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 3309              "V2Score": 6.8,
 3310              "V3Score": 7.8
 3311            },
 3312            "redhat": {
 3313              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H",
 3314              "V3Score": 5.8
 3315            }
 3316          },
 3317          "References": [
 3318            "https://access.redhat.com/errata/RHSA-2022:8361",
 3319            "https://access.redhat.com/security/cve/CVE-2022-1304",
 3320            "https://bugzilla.redhat.com/2069726",
 3321            "https://bugzilla.redhat.com/show_bug.cgi?id=2069726",
 3322            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304",
 3323            "https://errata.almalinux.org/9/ALSA-2022-8361.html",
 3324            "https://errata.rockylinux.org/RLSA-2022:8361",
 3325            "https://linux.oracle.com/cve/CVE-2022-1304.html",
 3326            "https://linux.oracle.com/errata/ELSA-2022-8361.html",
 3327            "https://marc.info/?l=linux-ext4\u0026m=165056234501732\u0026w=2",
 3328            "https://nvd.nist.gov/vuln/detail/CVE-2022-1304",
 3329            "https://ubuntu.com/security/notices/USN-5464-1",
 3330            "https://www.cve.org/CVERecord?id=CVE-2022-1304"
 3331          ],
 3332          "PublishedDate": "2022-04-14T21:15:00Z",
 3333          "LastModifiedDate": "2023-02-12T22:15:00Z"
 3334        },
 3335        {
 3336          "VulnerabilityID": "CVE-2022-31782",
 3337          "PkgID": "libfreetype6@2.10.4+dfsg-1+deb11u1",
 3338          "PkgName": "libfreetype6",
 3339          "InstalledVersion": "2.10.4+dfsg-1+deb11u1",
 3340          "Status": "affected",
 3341          "Layer": {
 3342            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 3343            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 3344          },
 3345          "SeveritySource": "debian",
 3346          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-31782",
 3347          "DataSource": {
 3348            "ID": "debian",
 3349            "Name": "Debian Security Tracker",
 3350            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3351          },
 3352          "Title": "ftbench.c in FreeType Demo Programs through 2.12.1 has a heap-based bu ...",
 3353          "Description": "ftbench.c in FreeType Demo Programs through 2.12.1 has a heap-based buffer overflow.",
 3354          "Severity": "LOW",
 3355          "CweIDs": [
 3356            "CWE-787"
 3357          ],
 3358          "CVSS": {
 3359            "nvd": {
 3360              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
 3361              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 3362              "V2Score": 6.8,
 3363              "V3Score": 7.8
 3364            }
 3365          },
 3366          "References": [
 3367            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-31782",
 3368            "https://gitlab.freedesktop.org/freetype/freetype-demos/-/issues/8",
 3369            "https://ubuntu.com/security/notices/USN-5528-1"
 3370          ],
 3371          "PublishedDate": "2022-06-02T14:15:00Z",
 3372          "LastModifiedDate": "2022-06-10T18:08:00Z"
 3373        },
 3374        {
 3375          "VulnerabilityID": "CVE-2021-33560",
 3376          "PkgID": "libgcrypt20@1.8.7-6",
 3377          "PkgName": "libgcrypt20",
 3378          "InstalledVersion": "1.8.7-6",
 3379          "Status": "affected",
 3380          "Layer": {
 3381            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 3382            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 3383          },
 3384          "SeveritySource": "nvd",
 3385          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33560",
 3386          "DataSource": {
 3387            "ID": "debian",
 3388            "Name": "Debian Security Tracker",
 3389            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3390          },
 3391          "Title": "libgcrypt: mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm",
 3392          "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.",
 3393          "Severity": "HIGH",
 3394          "CweIDs": [
 3395            "CWE-203"
 3396          ],
 3397          "CVSS": {
 3398            "nvd": {
 3399              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N",
 3400              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
 3401              "V2Score": 5,
 3402              "V3Score": 7.5
 3403            },
 3404            "redhat": {
 3405              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
 3406              "V3Score": 7.5
 3407            }
 3408          },
 3409          "References": [
 3410            "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json",
 3411            "https://access.redhat.com/security/cve/CVE-2021-33560",
 3412            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560",
 3413            "https://dev.gnupg.org/T5305",
 3414            "https://dev.gnupg.org/T5328",
 3415            "https://dev.gnupg.org/T5466",
 3416            "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61",
 3417            "https://eprint.iacr.org/2021/923",
 3418            "https://errata.almalinux.org/8/ALSA-2021-4409.html",
 3419            "https://linux.oracle.com/cve/CVE-2021-33560.html",
 3420            "https://linux.oracle.com/errata/ELSA-2022-9263.html",
 3421            "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html",
 3422            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/",
 3423            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/",
 3424            "https://nvd.nist.gov/vuln/detail/CVE-2021-33560",
 3425            "https://security.gentoo.org/glsa/202210-13",
 3426            "https://ubuntu.com/security/notices/USN-5080-1",
 3427            "https://ubuntu.com/security/notices/USN-5080-2",
 3428            "https://www.cve.org/CVERecord?id=CVE-2021-33560",
 3429            "https://www.oracle.com/security-alerts/cpuapr2022.html",
 3430            "https://www.oracle.com/security-alerts/cpujan2022.html",
 3431            "https://www.oracle.com/security-alerts/cpujul2022.html",
 3432            "https://www.oracle.com/security-alerts/cpuoct2021.html"
 3433          ],
 3434          "PublishedDate": "2021-06-08T11:15:00Z",
 3435          "LastModifiedDate": "2022-12-07T01:20:00Z"
 3436        },
 3437        {
 3438          "VulnerabilityID": "CVE-2018-6829",
 3439          "PkgID": "libgcrypt20@1.8.7-6",
 3440          "PkgName": "libgcrypt20",
 3441          "InstalledVersion": "1.8.7-6",
 3442          "Status": "affected",
 3443          "Layer": {
 3444            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 3445            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 3446          },
 3447          "SeveritySource": "debian",
 3448          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6829",
 3449          "DataSource": {
 3450            "ID": "debian",
 3451            "Name": "Debian Security Tracker",
 3452            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3453          },
 3454          "Title": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information",
 3455          "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.",
 3456          "Severity": "LOW",
 3457          "CweIDs": [
 3458            "CWE-327"
 3459          ],
 3460          "CVSS": {
 3461            "nvd": {
 3462              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N",
 3463              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
 3464              "V2Score": 5,
 3465              "V3Score": 7.5
 3466            },
 3467            "redhat": {
 3468              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
 3469              "V3Score": 5.3
 3470            }
 3471          },
 3472          "References": [
 3473            "https://access.redhat.com/security/cve/CVE-2018-6829",
 3474            "https://github.com/weikengchen/attack-on-libgcrypt-elgamal",
 3475            "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki",
 3476            "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html",
 3477            "https://nvd.nist.gov/vuln/detail/CVE-2018-6829",
 3478            "https://www.cve.org/CVERecord?id=CVE-2018-6829",
 3479            "https://www.oracle.com/security-alerts/cpujan2020.html"
 3480          ],
 3481          "PublishedDate": "2018-02-07T23:29:00Z",
 3482          "LastModifiedDate": "2020-01-15T20:15:00Z"
 3483        },
 3484        {
 3485          "VulnerabilityID": "CVE-2021-38115",
 3486          "PkgID": "libgd3@2.3.0-2",
 3487          "PkgName": "libgd3",
 3488          "InstalledVersion": "2.3.0-2",
 3489          "Status": "affected",
 3490          "Layer": {
 3491            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 3492            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 3493          },
 3494          "SeveritySource": "nvd",
 3495          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-38115",
 3496          "DataSource": {
 3497            "ID": "debian",
 3498            "Name": "Debian Security Tracker",
 3499            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3500          },
 3501          "Title": "read_header_tga in gd_tga.c in the GD Graphics Library (aka LibGD) thr ...",
 3502          "Description": "read_header_tga in gd_tga.c in the GD Graphics Library (aka LibGD) through 2.3.2 allows remote attackers to cause a denial of service (out-of-bounds read) via a crafted TGA file.",
 3503          "Severity": "MEDIUM",
 3504          "CweIDs": [
 3505            "CWE-125"
 3506          ],
 3507          "CVSS": {
 3508            "nvd": {
 3509              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 3510              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 3511              "V2Score": 4.3,
 3512              "V3Score": 6.5
 3513            }
 3514          },
 3515          "References": [
 3516            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38115",
 3517            "https://github.com/libgd/libgd/commit/8b111b2b4a4842179be66db68d84dda91a246032",
 3518            "https://github.com/libgd/libgd/issues/697",
 3519            "https://github.com/libgd/libgd/pull/711/commits/8b111b2b4a4842179be66db68d84dda91a246032",
 3520            "https://nvd.nist.gov/vuln/detail/CVE-2021-38115",
 3521            "https://ubuntu.com/security/notices/USN-5068-1"
 3522          ],
 3523          "PublishedDate": "2021-08-04T21:15:00Z",
 3524          "LastModifiedDate": "2021-08-11T19:39:00Z"
 3525        },
 3526        {
 3527          "VulnerabilityID": "CVE-2021-40812",
 3528          "PkgID": "libgd3@2.3.0-2",
 3529          "PkgName": "libgd3",
 3530          "InstalledVersion": "2.3.0-2",
 3531          "Status": "affected",
 3532          "Layer": {
 3533            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 3534            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 3535          },
 3536          "SeveritySource": "nvd",
 3537          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-40812",
 3538          "DataSource": {
 3539            "ID": "debian",
 3540            "Name": "Debian Security Tracker",
 3541            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3542          },
 3543          "Title": "The GD Graphics Library (aka LibGD) through 2.3.2 has an out-of-bounds ...",
 3544          "Description": "The GD Graphics Library (aka LibGD) through 2.3.2 has an out-of-bounds read because of the lack of certain gdGetBuf and gdPutBuf return value checks.",
 3545          "Severity": "MEDIUM",
 3546          "CweIDs": [
 3547            "CWE-125"
 3548          ],
 3549          "CVSS": {
 3550            "nvd": {
 3551              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 3552              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 3553              "V2Score": 4.3,
 3554              "V3Score": 6.5
 3555            }
 3556          },
 3557          "References": [
 3558            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-40812",
 3559            "https://github.com/libgd/libgd/commit/6f5136821be86e7068fcdf651ae9420b5d42e9a9",
 3560            "https://github.com/libgd/libgd/issues/750#issuecomment-914872385",
 3561            "https://github.com/libgd/libgd/issues/757",
 3562            "https://nvd.nist.gov/vuln/detail/CVE-2021-40812"
 3563          ],
 3564          "PublishedDate": "2021-09-08T21:15:00Z",
 3565          "LastModifiedDate": "2021-09-15T15:07:00Z"
 3566        },
 3567        {
 3568          "VulnerabilityID": "CVE-2021-40145",
 3569          "PkgID": "libgd3@2.3.0-2",
 3570          "PkgName": "libgd3",
 3571          "InstalledVersion": "2.3.0-2",
 3572          "Status": "affected",
 3573          "Layer": {
 3574            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 3575            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 3576          },
 3577          "SeveritySource": "debian",
 3578          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-40145",
 3579          "DataSource": {
 3580            "ID": "debian",
 3581            "Name": "Debian Security Tracker",
 3582            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3583          },
 3584          "Title": "gdImageGd2Ptr in gd_gd2.c in the GD Graphics Library (aka LibGD) throu ...",
 3585          "Description": "** DISPUTED ** gdImageGd2Ptr in gd_gd2.c in the GD Graphics Library (aka LibGD) through 2.3.2 has a double free. NOTE: the vendor's position is \"The GD2 image format is a proprietary image format of libgd. It has to be regarded as being obsolete, and should only be used for development and testing purposes.\"",
 3586          "Severity": "LOW",
 3587          "CweIDs": [
 3588            "CWE-415"
 3589          ],
 3590          "CVSS": {
 3591            "nvd": {
 3592              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
 3593              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 3594              "V2Score": 5,
 3595              "V3Score": 7.5
 3596            }
 3597          },
 3598          "References": [
 3599            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-40145",
 3600            "https://github.com/libgd/libgd/commit/c5fd25ce0e48fd5618a972ca9f5e28d6d62006af",
 3601            "https://github.com/libgd/libgd/issues/700",
 3602            "https://github.com/libgd/libgd/pull/713",
 3603            "https://nvd.nist.gov/vuln/detail/CVE-2021-40145",
 3604            "https://ubuntu.com/security/notices/USN-5068-1"
 3605          ],
 3606          "PublishedDate": "2021-08-26T01:15:00Z",
 3607          "LastModifiedDate": "2021-09-01T21:27:00Z"
 3608        },
 3609        {
 3610          "VulnerabilityID": "CVE-2023-0361",
 3611          "VendorIDs": [
 3612            "DSA-5349-1"
 3613          ],
 3614          "PkgID": "libgnutls30@3.7.1-5+deb11u2",
 3615          "PkgName": "libgnutls30",
 3616          "InstalledVersion": "3.7.1-5+deb11u2",
 3617          "FixedVersion": "3.7.1-5+deb11u3",
 3618          "Status": "fixed",
 3619          "Layer": {
 3620            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 3621            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 3622          },
 3623          "SeveritySource": "nvd",
 3624          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0361",
 3625          "DataSource": {
 3626            "ID": "debian",
 3627            "Name": "Debian Security Tracker",
 3628            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3629          },
 3630          "Title": "timing side-channel in the TLS RSA key exchange code",
 3631          "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.",
 3632          "Severity": "HIGH",
 3633          "CweIDs": [
 3634            "CWE-203"
 3635          ],
 3636          "CVSS": {
 3637            "nvd": {
 3638              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
 3639              "V3Score": 7.4
 3640            },
 3641            "redhat": {
 3642              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
 3643              "V3Score": 7.4
 3644            }
 3645          },
 3646          "References": [
 3647            "https://access.redhat.com/errata/RHSA-2023:1141",
 3648            "https://access.redhat.com/security/cve/CVE-2023-0361",
 3649            "https://bugzilla.redhat.com/2162596",
 3650            "https://bugzilla.redhat.com/show_bug.cgi?id=2144537",
 3651            "https://bugzilla.redhat.com/show_bug.cgi?id=2149640",
 3652            "https://bugzilla.redhat.com/show_bug.cgi?id=2162596",
 3653            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361",
 3654            "https://errata.almalinux.org/9/ALSA-2023-1141.html",
 3655            "https://errata.rockylinux.org/RLSA-2023:1141",
 3656            "https://github.com/tlsfuzzer/tlsfuzzer/pull/679",
 3657            "https://gitlab.com/gnutls/gnutls/-/issues/1050",
 3658            "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14",
 3659            "https://linux.oracle.com/cve/CVE-2023-0361.html",
 3660            "https://linux.oracle.com/errata/ELSA-2023-1569.html",
 3661            "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html",
 3662            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/",
 3663            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/",
 3664            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/",
 3665            "https://nvd.nist.gov/vuln/detail/CVE-2023-0361",
 3666            "https://security.netapp.com/advisory/ntap-20230324-0005/",
 3667            "https://security.netapp.com/advisory/ntap-20230725-0005/",
 3668            "https://ubuntu.com/security/notices/USN-5901-1",
 3669            "https://www.cve.org/CVERecord?id=CVE-2023-0361"
 3670          ],
 3671          "PublishedDate": "2023-02-15T18:15:00Z",
 3672          "LastModifiedDate": "2023-07-25T15:15:00Z"
 3673        },
 3674        {
 3675          "VulnerabilityID": "CVE-2011-3389",
 3676          "PkgID": "libgnutls30@3.7.1-5+deb11u2",
 3677          "PkgName": "libgnutls30",
 3678          "InstalledVersion": "3.7.1-5+deb11u2",
 3679          "Status": "affected",
 3680          "Layer": {
 3681            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 3682            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 3683          },
 3684          "SeveritySource": "debian",
 3685          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3389",
 3686          "DataSource": {
 3687            "ID": "debian",
 3688            "Name": "Debian Security Tracker",
 3689            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3690          },
 3691          "Title": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)",
 3692          "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.",
 3693          "Severity": "LOW",
 3694          "CweIDs": [
 3695            "CWE-326"
 3696          ],
 3697          "CVSS": {
 3698            "nvd": {
 3699              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N",
 3700              "V2Score": 4.3
 3701            },
 3702            "redhat": {
 3703              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N",
 3704              "V2Score": 4.3
 3705            }
 3706          },
 3707          "References": [
 3708            "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/",
 3709            "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/",
 3710            "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx",
 3711            "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx",
 3712            "http://curl.haxx.se/docs/adv_20120124B.html",
 3713            "http://downloads.asterisk.org/pub/security/AST-2016-001.html",
 3714            "http://ekoparty.org/2011/juliano-rizzo.php",
 3715            "http://eprint.iacr.org/2004/111",
 3716            "http://eprint.iacr.org/2006/136",
 3717            "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html",
 3718            "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635",
 3719            "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html",
 3720            "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html",
 3721            "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html",
 3722            "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html",
 3723            "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html",
 3724            "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html",
 3725            "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html",
 3726            "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html",
 3727            "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html",
 3728            "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html",
 3729            "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html",
 3730            "http://marc.info/?l=bugtraq\u0026m=132750579901589\u0026w=2",
 3731            "http://marc.info/?l=bugtraq\u0026m=132872385320240\u0026w=2",
 3732            "http://marc.info/?l=bugtraq\u0026m=133365109612558\u0026w=2",
 3733            "http://marc.info/?l=bugtraq\u0026m=133728004526190\u0026w=2",
 3734            "http://marc.info/?l=bugtraq\u0026m=134254866602253\u0026w=2",
 3735            "http://marc.info/?l=bugtraq\u0026m=134254957702612\u0026w=2",
 3736            "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue",
 3737            "http://osvdb.org/74829",
 3738            "http://rhn.redhat.com/errata/RHSA-2012-0508.html",
 3739            "http://rhn.redhat.com/errata/RHSA-2013-1455.html",
 3740            "http://secunia.com/advisories/45791",
 3741            "http://secunia.com/advisories/47998",
 3742            "http://secunia.com/advisories/48256",
 3743            "http://secunia.com/advisories/48692",
 3744            "http://secunia.com/advisories/48915",
 3745            "http://secunia.com/advisories/48948",
 3746            "http://secunia.com/advisories/49198",
 3747            "http://secunia.com/advisories/55322",
 3748            "http://secunia.com/advisories/55350",
 3749            "http://secunia.com/advisories/55351",
 3750            "http://security.gentoo.org/glsa/glsa-201203-02.xml",
 3751            "http://security.gentoo.org/glsa/glsa-201406-32.xml",
 3752            "http://support.apple.com/kb/HT4999",
 3753            "http://support.apple.com/kb/HT5001",
 3754            "http://support.apple.com/kb/HT5130",
 3755            "http://support.apple.com/kb/HT5281",
 3756            "http://support.apple.com/kb/HT5501",
 3757            "http://support.apple.com/kb/HT6150",
 3758            "http://technet.microsoft.com/security/advisory/2588513",
 3759            "http://vnhacker.blogspot.com/2011/09/beast.html",
 3760            "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf",
 3761            "http://www.debian.org/security/2012/dsa-2398",
 3762            "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html",
 3763            "http://www.ibm.com/developerworks/java/jdk/alerts/",
 3764            "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html",
 3765            "http://www.insecure.cl/Beast-SSL.rar",
 3766            "http://www.kb.cert.org/vuls/id/864643",
 3767            "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058",
 3768            "http://www.opera.com/docs/changelogs/mac/1151/",
 3769            "http://www.opera.com/docs/changelogs/mac/1160/",
 3770            "http://www.opera.com/docs/changelogs/unix/1151/",
 3771            "http://www.opera.com/docs/changelogs/unix/1160/",
 3772            "http://www.opera.com/docs/changelogs/windows/1151/",
 3773            "http://www.opera.com/docs/changelogs/windows/1160/",
 3774            "http://www.opera.com/support/kb/view/1004/",
 3775            "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html",
 3776            "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html",
 3777            "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html",
 3778            "http://www.redhat.com/support/errata/RHSA-2011-1384.html",
 3779            "http://www.redhat.com/support/errata/RHSA-2012-0006.html",
 3780            "http://www.securityfocus.com/bid/49388",
 3781            "http://www.securityfocus.com/bid/49778",
 3782            "http://www.securitytracker.com/id/1029190",
 3783            "http://www.securitytracker.com/id?1025997",
 3784            "http://www.securitytracker.com/id?1026103",
 3785            "http://www.securitytracker.com/id?1026704",
 3786            "http://www.ubuntu.com/usn/USN-1263-1",
 3787            "http://www.us-cert.gov/cas/techalerts/TA12-010A.html",
 3788            "https://access.redhat.com/security/cve/CVE-2011-3389",
 3789            "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail",
 3790            "https://bugzilla.novell.com/show_bug.cgi?id=719047",
 3791            "https://bugzilla.redhat.com/show_bug.cgi?id=737506",
 3792            "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf",
 3793            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389",
 3794            "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006",
 3795            "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862",
 3796            "https://hermes.opensuse.org/messages/13154861",
 3797            "https://hermes.opensuse.org/messages/13155432",
 3798            "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02",
 3799            "https://linux.oracle.com/cve/CVE-2011-3389.html",
 3800            "https://linux.oracle.com/errata/ELSA-2011-1380.html",
 3801            "https://nvd.nist.gov/vuln/detail/CVE-2011-3389",
 3802            "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752",
 3803            "https://ubuntu.com/security/notices/USN-1263-1",
 3804            "https://www.cve.org/CVERecord?id=CVE-2011-3389"
 3805          ],
 3806          "PublishedDate": "2011-09-06T19:55:00Z",
 3807          "LastModifiedDate": "2022-11-29T15:56:00Z"
 3808        },
 3809        {
 3810          "VulnerabilityID": "CVE-2022-42898",
 3811          "VendorIDs": [
 3812            "DSA-5286-1"
 3813          ],
 3814          "PkgID": "libgssapi-krb5-2@1.18.3-6+deb11u2",
 3815          "PkgName": "libgssapi-krb5-2",
 3816          "InstalledVersion": "1.18.3-6+deb11u2",
 3817          "FixedVersion": "1.18.3-6+deb11u3",
 3818          "Status": "fixed",
 3819          "Layer": {
 3820            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 3821            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 3822          },
 3823          "SeveritySource": "nvd",
 3824          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898",
 3825          "DataSource": {
 3826            "ID": "debian",
 3827            "Name": "Debian Security Tracker",
 3828            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3829          },
 3830          "Title": "integer overflow vulnerabilities in PAC parsing",
 3831          "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.\"",
 3832          "Severity": "HIGH",
 3833          "CweIDs": [
 3834            "CWE-190"
 3835          ],
 3836          "CVSS": {
 3837            "nvd": {
 3838              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
 3839              "V3Score": 8.8
 3840            },
 3841            "redhat": {
 3842              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
 3843              "V3Score": 8.8
 3844            }
 3845          },
 3846          "References": [
 3847            "https://access.redhat.com/errata/RHSA-2022:8637",
 3848            "https://access.redhat.com/security/cve/CVE-2022-42898",
 3849            "https://bugzilla.redhat.com/2140960",
 3850            "https://bugzilla.redhat.com/show_bug.cgi?id=2140960",
 3851            "https://bugzilla.samba.org/show_bug.cgi?id=15203",
 3852            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898",
 3853            "https://errata.almalinux.org/9/ALSA-2022-8637.html",
 3854            "https://errata.rockylinux.org/RLSA-2022:8637",
 3855            "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c",
 3856            "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583",
 3857            "https://linux.oracle.com/cve/CVE-2022-42898.html",
 3858            "https://linux.oracle.com/errata/ELSA-2023-12104.html",
 3859            "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html",
 3860            "https://nvd.nist.gov/vuln/detail/CVE-2022-42898",
 3861            "https://security.netapp.com/advisory/ntap-20230216-0008/",
 3862            "https://security.netapp.com/advisory/ntap-20230223-0001/",
 3863            "https://ubuntu.com/security/notices/USN-5800-1",
 3864            "https://ubuntu.com/security/notices/USN-5822-1",
 3865            "https://ubuntu.com/security/notices/USN-5822-2",
 3866            "https://ubuntu.com/security/notices/USN-5828-1",
 3867            "https://ubuntu.com/security/notices/USN-5936-1",
 3868            "https://web.mit.edu/kerberos/advisories/",
 3869            "https://web.mit.edu/kerberos/krb5-1.19/",
 3870            "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt",
 3871            "https://www.cve.org/CVERecord?id=CVE-2022-42898",
 3872            "https://www.samba.org/samba/security/CVE-2022-42898.html"
 3873          ],
 3874          "PublishedDate": "2022-12-25T06:15:00Z",
 3875          "LastModifiedDate": "2023-02-23T19:15:00Z"
 3876        },
 3877        {
 3878          "VulnerabilityID": "CVE-2023-36054",
 3879          "PkgID": "libgssapi-krb5-2@1.18.3-6+deb11u2",
 3880          "PkgName": "libgssapi-krb5-2",
 3881          "InstalledVersion": "1.18.3-6+deb11u2",
 3882          "Status": "affected",
 3883          "Layer": {
 3884            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 3885            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 3886          },
 3887          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-36054",
 3888          "DataSource": {
 3889            "ID": "debian",
 3890            "Name": "Debian Security Tracker",
 3891            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3892          },
 3893          "Title": "lib/kadm5/kadm_rpc_xdr.c in MIT Kerberos 5 (aka krb5) before 1.20.2 an ...",
 3894          "Description": "lib/kadm5/kadm_rpc_xdr.c in MIT Kerberos 5 (aka krb5) before 1.20.2 and 1.21.x before 1.21.1 frees an uninitialized pointer. A remote authenticated user can trigger a kadmind crash. This occurs because _xdr_kadm5_principal_ent_rec does not validate the relationship between n_key_data and the key_data array count.",
 3895          "Severity": "MEDIUM",
 3896          "References": [
 3897            "https://github.com/krb5/krb5/commit/ef08b09c9459551aabbe7924fb176f1583053cdd",
 3898            "https://github.com/krb5/krb5/compare/krb5-1.20.1-final...krb5-1.20.2-final",
 3899            "https://github.com/krb5/krb5/compare/krb5-1.21-final...krb5-1.21.1-final",
 3900            "https://web.mit.edu/kerberos/www/advisories/"
 3901          ],
 3902          "PublishedDate": "2023-08-07T19:15:00Z",
 3903          "LastModifiedDate": "2023-08-07T19:30:00Z"
 3904        },
 3905        {
 3906          "VulnerabilityID": "CVE-2018-5709",
 3907          "PkgID": "libgssapi-krb5-2@1.18.3-6+deb11u2",
 3908          "PkgName": "libgssapi-krb5-2",
 3909          "InstalledVersion": "1.18.3-6+deb11u2",
 3910          "Status": "affected",
 3911          "Layer": {
 3912            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 3913            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 3914          },
 3915          "SeveritySource": "debian",
 3916          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709",
 3917          "DataSource": {
 3918            "ID": "debian",
 3919            "Name": "Debian Security Tracker",
 3920            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3921          },
 3922          "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c",
 3923          "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.",
 3924          "Severity": "LOW",
 3925          "CweIDs": [
 3926            "CWE-190"
 3927          ],
 3928          "CVSS": {
 3929            "nvd": {
 3930              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N",
 3931              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
 3932              "V2Score": 5,
 3933              "V3Score": 7.5
 3934            },
 3935            "redhat": {
 3936              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L",
 3937              "V3Score": 6.3
 3938            }
 3939          },
 3940          "References": [
 3941            "https://access.redhat.com/security/cve/CVE-2018-5709",
 3942            "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow",
 3943            "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E",
 3944            "https://nvd.nist.gov/vuln/detail/CVE-2018-5709",
 3945            "https://www.cve.org/CVERecord?id=CVE-2018-5709"
 3946          ],
 3947          "PublishedDate": "2018-01-16T09:29:00Z",
 3948          "LastModifiedDate": "2021-02-25T17:15:00Z"
 3949        },
 3950        {
 3951          "VulnerabilityID": "CVE-2017-9937",
 3952          "PkgID": "libjbig0@2.1-3.1+b2",
 3953          "PkgName": "libjbig0",
 3954          "InstalledVersion": "2.1-3.1+b2",
 3955          "Status": "affected",
 3956          "Layer": {
 3957            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 3958            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 3959          },
 3960          "SeveritySource": "debian",
 3961          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-9937",
 3962          "DataSource": {
 3963            "ID": "debian",
 3964            "Name": "Debian Security Tracker",
 3965            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 3966          },
 3967          "Title": "libtiff: memory malloc failure in tif_jbig.c could cause DOS.",
 3968          "Description": "In LibTIFF 4.0.8, there is a memory malloc failure in tif_jbig.c. A crafted TIFF document can lead to an abort resulting in a remote denial of service attack.",
 3969          "Severity": "LOW",
 3970          "CweIDs": [
 3971            "CWE-119"
 3972          ],
 3973          "CVSS": {
 3974            "nvd": {
 3975              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 3976              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 3977              "V2Score": 4.3,
 3978              "V3Score": 6.5
 3979            },
 3980            "redhat": {
 3981              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L",
 3982              "V3Score": 3.3
 3983            }
 3984          },
 3985          "References": [
 3986            "http://bugzilla.maptools.org/show_bug.cgi?id=2707",
 3987            "http://www.securityfocus.com/bid/99304",
 3988            "https://access.redhat.com/security/cve/CVE-2017-9937",
 3989            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-9937",
 3990            "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E",
 3991            "https://nvd.nist.gov/vuln/detail/CVE-2017-9937",
 3992            "https://ubuntu.com/security/notices/USN-5742-1",
 3993            "https://www.cve.org/CVERecord?id=CVE-2017-9937"
 3994          ],
 3995          "PublishedDate": "2017-06-26T12:29:00Z",
 3996          "LastModifiedDate": "2021-02-25T17:15:00Z"
 3997        },
 3998        {
 3999          "VulnerabilityID": "CVE-2021-46822",
 4000          "PkgID": "libjpeg62-turbo@1:2.0.6-4",
 4001          "PkgName": "libjpeg62-turbo",
 4002          "InstalledVersion": "1:2.0.6-4",
 4003          "Status": "affected",
 4004          "Layer": {
 4005            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 4006            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 4007          },
 4008          "SeveritySource": "nvd",
 4009          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-46822",
 4010          "DataSource": {
 4011            "ID": "debian",
 4012            "Name": "Debian Security Tracker",
 4013            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4014          },
 4015          "Title": "libjpeg-turbo: heap buffer overflow in get_word_rgb_row() in rdppm.c",
 4016          "Description": "The PPM reader in libjpeg-turbo through 2.0.90 mishandles use of tjLoadImage for loading a 16-bit binary PPM file into a grayscale buffer and loading a 16-bit binary PGM file into an RGB buffer. This is related to a heap-based buffer overflow in the get_word_rgb_row function in rdppm.c.",
 4017          "Severity": "MEDIUM",
 4018          "CweIDs": [
 4019            "CWE-787"
 4020          ],
 4021          "CVSS": {
 4022            "nvd": {
 4023              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 4024              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 4025              "V2Score": 4.3,
 4026              "V3Score": 5.5
 4027            },
 4028            "redhat": {
 4029              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 4030              "V3Score": 5.5
 4031            }
 4032          },
 4033          "References": [
 4034            "https://access.redhat.com/errata/RHSA-2023:1068",
 4035            "https://access.redhat.com/security/cve/CVE-2021-46822",
 4036            "https://bugzilla.redhat.com/2100044",
 4037            "https://bugzilla.redhat.com/show_bug.cgi?id=2100044",
 4038            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46822",
 4039            "https://errata.almalinux.org/9/ALSA-2023-1068.html",
 4040            "https://errata.rockylinux.org/RLSA-2023:1068",
 4041            "https://exchange.xforce.ibmcloud.com/vulnerabilities/221567",
 4042            "https://github.com/libjpeg-turbo/libjpeg-turbo/commit/f35fd27ec641c42d6b115bfa595e483ec58188d2",
 4043            "https://linux.oracle.com/cve/CVE-2021-46822.html",
 4044            "https://linux.oracle.com/errata/ELSA-2023-1068.html",
 4045            "https://nvd.nist.gov/vuln/detail/CVE-2021-46822",
 4046            "https://ubuntu.com/security/notices/USN-5631-1",
 4047            "https://www.cve.org/CVERecord?id=CVE-2021-46822"
 4048          ],
 4049          "PublishedDate": "2022-06-18T16:15:00Z",
 4050          "LastModifiedDate": "2022-08-15T15:52:00Z"
 4051        },
 4052        {
 4053          "VulnerabilityID": "CVE-2022-42898",
 4054          "VendorIDs": [
 4055            "DSA-5286-1"
 4056          ],
 4057          "PkgID": "libk5crypto3@1.18.3-6+deb11u2",
 4058          "PkgName": "libk5crypto3",
 4059          "InstalledVersion": "1.18.3-6+deb11u2",
 4060          "FixedVersion": "1.18.3-6+deb11u3",
 4061          "Status": "fixed",
 4062          "Layer": {
 4063            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4064            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4065          },
 4066          "SeveritySource": "nvd",
 4067          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898",
 4068          "DataSource": {
 4069            "ID": "debian",
 4070            "Name": "Debian Security Tracker",
 4071            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4072          },
 4073          "Title": "integer overflow vulnerabilities in PAC parsing",
 4074          "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.\"",
 4075          "Severity": "HIGH",
 4076          "CweIDs": [
 4077            "CWE-190"
 4078          ],
 4079          "CVSS": {
 4080            "nvd": {
 4081              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
 4082              "V3Score": 8.8
 4083            },
 4084            "redhat": {
 4085              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
 4086              "V3Score": 8.8
 4087            }
 4088          },
 4089          "References": [
 4090            "https://access.redhat.com/errata/RHSA-2022:8637",
 4091            "https://access.redhat.com/security/cve/CVE-2022-42898",
 4092            "https://bugzilla.redhat.com/2140960",
 4093            "https://bugzilla.redhat.com/show_bug.cgi?id=2140960",
 4094            "https://bugzilla.samba.org/show_bug.cgi?id=15203",
 4095            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898",
 4096            "https://errata.almalinux.org/9/ALSA-2022-8637.html",
 4097            "https://errata.rockylinux.org/RLSA-2022:8637",
 4098            "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c",
 4099            "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583",
 4100            "https://linux.oracle.com/cve/CVE-2022-42898.html",
 4101            "https://linux.oracle.com/errata/ELSA-2023-12104.html",
 4102            "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html",
 4103            "https://nvd.nist.gov/vuln/detail/CVE-2022-42898",
 4104            "https://security.netapp.com/advisory/ntap-20230216-0008/",
 4105            "https://security.netapp.com/advisory/ntap-20230223-0001/",
 4106            "https://ubuntu.com/security/notices/USN-5800-1",
 4107            "https://ubuntu.com/security/notices/USN-5822-1",
 4108            "https://ubuntu.com/security/notices/USN-5822-2",
 4109            "https://ubuntu.com/security/notices/USN-5828-1",
 4110            "https://ubuntu.com/security/notices/USN-5936-1",
 4111            "https://web.mit.edu/kerberos/advisories/",
 4112            "https://web.mit.edu/kerberos/krb5-1.19/",
 4113            "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt",
 4114            "https://www.cve.org/CVERecord?id=CVE-2022-42898",
 4115            "https://www.samba.org/samba/security/CVE-2022-42898.html"
 4116          ],
 4117          "PublishedDate": "2022-12-25T06:15:00Z",
 4118          "LastModifiedDate": "2023-02-23T19:15:00Z"
 4119        },
 4120        {
 4121          "VulnerabilityID": "CVE-2023-36054",
 4122          "PkgID": "libk5crypto3@1.18.3-6+deb11u2",
 4123          "PkgName": "libk5crypto3",
 4124          "InstalledVersion": "1.18.3-6+deb11u2",
 4125          "Status": "affected",
 4126          "Layer": {
 4127            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4128            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4129          },
 4130          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-36054",
 4131          "DataSource": {
 4132            "ID": "debian",
 4133            "Name": "Debian Security Tracker",
 4134            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4135          },
 4136          "Title": "lib/kadm5/kadm_rpc_xdr.c in MIT Kerberos 5 (aka krb5) before 1.20.2 an ...",
 4137          "Description": "lib/kadm5/kadm_rpc_xdr.c in MIT Kerberos 5 (aka krb5) before 1.20.2 and 1.21.x before 1.21.1 frees an uninitialized pointer. A remote authenticated user can trigger a kadmind crash. This occurs because _xdr_kadm5_principal_ent_rec does not validate the relationship between n_key_data and the key_data array count.",
 4138          "Severity": "MEDIUM",
 4139          "References": [
 4140            "https://github.com/krb5/krb5/commit/ef08b09c9459551aabbe7924fb176f1583053cdd",
 4141            "https://github.com/krb5/krb5/compare/krb5-1.20.1-final...krb5-1.20.2-final",
 4142            "https://github.com/krb5/krb5/compare/krb5-1.21-final...krb5-1.21.1-final",
 4143            "https://web.mit.edu/kerberos/www/advisories/"
 4144          ],
 4145          "PublishedDate": "2023-08-07T19:15:00Z",
 4146          "LastModifiedDate": "2023-08-07T19:30:00Z"
 4147        },
 4148        {
 4149          "VulnerabilityID": "CVE-2018-5709",
 4150          "PkgID": "libk5crypto3@1.18.3-6+deb11u2",
 4151          "PkgName": "libk5crypto3",
 4152          "InstalledVersion": "1.18.3-6+deb11u2",
 4153          "Status": "affected",
 4154          "Layer": {
 4155            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4156            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4157          },
 4158          "SeveritySource": "debian",
 4159          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709",
 4160          "DataSource": {
 4161            "ID": "debian",
 4162            "Name": "Debian Security Tracker",
 4163            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4164          },
 4165          "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c",
 4166          "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.",
 4167          "Severity": "LOW",
 4168          "CweIDs": [
 4169            "CWE-190"
 4170          ],
 4171          "CVSS": {
 4172            "nvd": {
 4173              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N",
 4174              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
 4175              "V2Score": 5,
 4176              "V3Score": 7.5
 4177            },
 4178            "redhat": {
 4179              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L",
 4180              "V3Score": 6.3
 4181            }
 4182          },
 4183          "References": [
 4184            "https://access.redhat.com/security/cve/CVE-2018-5709",
 4185            "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow",
 4186            "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E",
 4187            "https://nvd.nist.gov/vuln/detail/CVE-2018-5709",
 4188            "https://www.cve.org/CVERecord?id=CVE-2018-5709"
 4189          ],
 4190          "PublishedDate": "2018-01-16T09:29:00Z",
 4191          "LastModifiedDate": "2021-02-25T17:15:00Z"
 4192        },
 4193        {
 4194          "VulnerabilityID": "CVE-2022-42898",
 4195          "VendorIDs": [
 4196            "DSA-5286-1"
 4197          ],
 4198          "PkgID": "libkrb5-3@1.18.3-6+deb11u2",
 4199          "PkgName": "libkrb5-3",
 4200          "InstalledVersion": "1.18.3-6+deb11u2",
 4201          "FixedVersion": "1.18.3-6+deb11u3",
 4202          "Status": "fixed",
 4203          "Layer": {
 4204            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4205            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4206          },
 4207          "SeveritySource": "nvd",
 4208          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898",
 4209          "DataSource": {
 4210            "ID": "debian",
 4211            "Name": "Debian Security Tracker",
 4212            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4213          },
 4214          "Title": "integer overflow vulnerabilities in PAC parsing",
 4215          "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.\"",
 4216          "Severity": "HIGH",
 4217          "CweIDs": [
 4218            "CWE-190"
 4219          ],
 4220          "CVSS": {
 4221            "nvd": {
 4222              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
 4223              "V3Score": 8.8
 4224            },
 4225            "redhat": {
 4226              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
 4227              "V3Score": 8.8
 4228            }
 4229          },
 4230          "References": [
 4231            "https://access.redhat.com/errata/RHSA-2022:8637",
 4232            "https://access.redhat.com/security/cve/CVE-2022-42898",
 4233            "https://bugzilla.redhat.com/2140960",
 4234            "https://bugzilla.redhat.com/show_bug.cgi?id=2140960",
 4235            "https://bugzilla.samba.org/show_bug.cgi?id=15203",
 4236            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898",
 4237            "https://errata.almalinux.org/9/ALSA-2022-8637.html",
 4238            "https://errata.rockylinux.org/RLSA-2022:8637",
 4239            "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c",
 4240            "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583",
 4241            "https://linux.oracle.com/cve/CVE-2022-42898.html",
 4242            "https://linux.oracle.com/errata/ELSA-2023-12104.html",
 4243            "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html",
 4244            "https://nvd.nist.gov/vuln/detail/CVE-2022-42898",
 4245            "https://security.netapp.com/advisory/ntap-20230216-0008/",
 4246            "https://security.netapp.com/advisory/ntap-20230223-0001/",
 4247            "https://ubuntu.com/security/notices/USN-5800-1",
 4248            "https://ubuntu.com/security/notices/USN-5822-1",
 4249            "https://ubuntu.com/security/notices/USN-5822-2",
 4250            "https://ubuntu.com/security/notices/USN-5828-1",
 4251            "https://ubuntu.com/security/notices/USN-5936-1",
 4252            "https://web.mit.edu/kerberos/advisories/",
 4253            "https://web.mit.edu/kerberos/krb5-1.19/",
 4254            "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt",
 4255            "https://www.cve.org/CVERecord?id=CVE-2022-42898",
 4256            "https://www.samba.org/samba/security/CVE-2022-42898.html"
 4257          ],
 4258          "PublishedDate": "2022-12-25T06:15:00Z",
 4259          "LastModifiedDate": "2023-02-23T19:15:00Z"
 4260        },
 4261        {
 4262          "VulnerabilityID": "CVE-2023-36054",
 4263          "PkgID": "libkrb5-3@1.18.3-6+deb11u2",
 4264          "PkgName": "libkrb5-3",
 4265          "InstalledVersion": "1.18.3-6+deb11u2",
 4266          "Status": "affected",
 4267          "Layer": {
 4268            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4269            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4270          },
 4271          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-36054",
 4272          "DataSource": {
 4273            "ID": "debian",
 4274            "Name": "Debian Security Tracker",
 4275            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4276          },
 4277          "Title": "lib/kadm5/kadm_rpc_xdr.c in MIT Kerberos 5 (aka krb5) before 1.20.2 an ...",
 4278          "Description": "lib/kadm5/kadm_rpc_xdr.c in MIT Kerberos 5 (aka krb5) before 1.20.2 and 1.21.x before 1.21.1 frees an uninitialized pointer. A remote authenticated user can trigger a kadmind crash. This occurs because _xdr_kadm5_principal_ent_rec does not validate the relationship between n_key_data and the key_data array count.",
 4279          "Severity": "MEDIUM",
 4280          "References": [
 4281            "https://github.com/krb5/krb5/commit/ef08b09c9459551aabbe7924fb176f1583053cdd",
 4282            "https://github.com/krb5/krb5/compare/krb5-1.20.1-final...krb5-1.20.2-final",
 4283            "https://github.com/krb5/krb5/compare/krb5-1.21-final...krb5-1.21.1-final",
 4284            "https://web.mit.edu/kerberos/www/advisories/"
 4285          ],
 4286          "PublishedDate": "2023-08-07T19:15:00Z",
 4287          "LastModifiedDate": "2023-08-07T19:30:00Z"
 4288        },
 4289        {
 4290          "VulnerabilityID": "CVE-2018-5709",
 4291          "PkgID": "libkrb5-3@1.18.3-6+deb11u2",
 4292          "PkgName": "libkrb5-3",
 4293          "InstalledVersion": "1.18.3-6+deb11u2",
 4294          "Status": "affected",
 4295          "Layer": {
 4296            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4297            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4298          },
 4299          "SeveritySource": "debian",
 4300          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709",
 4301          "DataSource": {
 4302            "ID": "debian",
 4303            "Name": "Debian Security Tracker",
 4304            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4305          },
 4306          "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c",
 4307          "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.",
 4308          "Severity": "LOW",
 4309          "CweIDs": [
 4310            "CWE-190"
 4311          ],
 4312          "CVSS": {
 4313            "nvd": {
 4314              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N",
 4315              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
 4316              "V2Score": 5,
 4317              "V3Score": 7.5
 4318            },
 4319            "redhat": {
 4320              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L",
 4321              "V3Score": 6.3
 4322            }
 4323          },
 4324          "References": [
 4325            "https://access.redhat.com/security/cve/CVE-2018-5709",
 4326            "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow",
 4327            "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E",
 4328            "https://nvd.nist.gov/vuln/detail/CVE-2018-5709",
 4329            "https://www.cve.org/CVERecord?id=CVE-2018-5709"
 4330          ],
 4331          "PublishedDate": "2018-01-16T09:29:00Z",
 4332          "LastModifiedDate": "2021-02-25T17:15:00Z"
 4333        },
 4334        {
 4335          "VulnerabilityID": "CVE-2022-42898",
 4336          "VendorIDs": [
 4337            "DSA-5286-1"
 4338          ],
 4339          "PkgID": "libkrb5support0@1.18.3-6+deb11u2",
 4340          "PkgName": "libkrb5support0",
 4341          "InstalledVersion": "1.18.3-6+deb11u2",
 4342          "FixedVersion": "1.18.3-6+deb11u3",
 4343          "Status": "fixed",
 4344          "Layer": {
 4345            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4346            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4347          },
 4348          "SeveritySource": "nvd",
 4349          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898",
 4350          "DataSource": {
 4351            "ID": "debian",
 4352            "Name": "Debian Security Tracker",
 4353            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4354          },
 4355          "Title": "integer overflow vulnerabilities in PAC parsing",
 4356          "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.\"",
 4357          "Severity": "HIGH",
 4358          "CweIDs": [
 4359            "CWE-190"
 4360          ],
 4361          "CVSS": {
 4362            "nvd": {
 4363              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
 4364              "V3Score": 8.8
 4365            },
 4366            "redhat": {
 4367              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
 4368              "V3Score": 8.8
 4369            }
 4370          },
 4371          "References": [
 4372            "https://access.redhat.com/errata/RHSA-2022:8637",
 4373            "https://access.redhat.com/security/cve/CVE-2022-42898",
 4374            "https://bugzilla.redhat.com/2140960",
 4375            "https://bugzilla.redhat.com/show_bug.cgi?id=2140960",
 4376            "https://bugzilla.samba.org/show_bug.cgi?id=15203",
 4377            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898",
 4378            "https://errata.almalinux.org/9/ALSA-2022-8637.html",
 4379            "https://errata.rockylinux.org/RLSA-2022:8637",
 4380            "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c",
 4381            "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583",
 4382            "https://linux.oracle.com/cve/CVE-2022-42898.html",
 4383            "https://linux.oracle.com/errata/ELSA-2023-12104.html",
 4384            "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html",
 4385            "https://nvd.nist.gov/vuln/detail/CVE-2022-42898",
 4386            "https://security.netapp.com/advisory/ntap-20230216-0008/",
 4387            "https://security.netapp.com/advisory/ntap-20230223-0001/",
 4388            "https://ubuntu.com/security/notices/USN-5800-1",
 4389            "https://ubuntu.com/security/notices/USN-5822-1",
 4390            "https://ubuntu.com/security/notices/USN-5822-2",
 4391            "https://ubuntu.com/security/notices/USN-5828-1",
 4392            "https://ubuntu.com/security/notices/USN-5936-1",
 4393            "https://web.mit.edu/kerberos/advisories/",
 4394            "https://web.mit.edu/kerberos/krb5-1.19/",
 4395            "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt",
 4396            "https://www.cve.org/CVERecord?id=CVE-2022-42898",
 4397            "https://www.samba.org/samba/security/CVE-2022-42898.html"
 4398          ],
 4399          "PublishedDate": "2022-12-25T06:15:00Z",
 4400          "LastModifiedDate": "2023-02-23T19:15:00Z"
 4401        },
 4402        {
 4403          "VulnerabilityID": "CVE-2023-36054",
 4404          "PkgID": "libkrb5support0@1.18.3-6+deb11u2",
 4405          "PkgName": "libkrb5support0",
 4406          "InstalledVersion": "1.18.3-6+deb11u2",
 4407          "Status": "affected",
 4408          "Layer": {
 4409            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4410            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4411          },
 4412          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-36054",
 4413          "DataSource": {
 4414            "ID": "debian",
 4415            "Name": "Debian Security Tracker",
 4416            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4417          },
 4418          "Title": "lib/kadm5/kadm_rpc_xdr.c in MIT Kerberos 5 (aka krb5) before 1.20.2 an ...",
 4419          "Description": "lib/kadm5/kadm_rpc_xdr.c in MIT Kerberos 5 (aka krb5) before 1.20.2 and 1.21.x before 1.21.1 frees an uninitialized pointer. A remote authenticated user can trigger a kadmind crash. This occurs because _xdr_kadm5_principal_ent_rec does not validate the relationship between n_key_data and the key_data array count.",
 4420          "Severity": "MEDIUM",
 4421          "References": [
 4422            "https://github.com/krb5/krb5/commit/ef08b09c9459551aabbe7924fb176f1583053cdd",
 4423            "https://github.com/krb5/krb5/compare/krb5-1.20.1-final...krb5-1.20.2-final",
 4424            "https://github.com/krb5/krb5/compare/krb5-1.21-final...krb5-1.21.1-final",
 4425            "https://web.mit.edu/kerberos/www/advisories/"
 4426          ],
 4427          "PublishedDate": "2023-08-07T19:15:00Z",
 4428          "LastModifiedDate": "2023-08-07T19:30:00Z"
 4429        },
 4430        {
 4431          "VulnerabilityID": "CVE-2018-5709",
 4432          "PkgID": "libkrb5support0@1.18.3-6+deb11u2",
 4433          "PkgName": "libkrb5support0",
 4434          "InstalledVersion": "1.18.3-6+deb11u2",
 4435          "Status": "affected",
 4436          "Layer": {
 4437            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4438            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4439          },
 4440          "SeveritySource": "debian",
 4441          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709",
 4442          "DataSource": {
 4443            "ID": "debian",
 4444            "Name": "Debian Security Tracker",
 4445            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4446          },
 4447          "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c",
 4448          "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.",
 4449          "Severity": "LOW",
 4450          "CweIDs": [
 4451            "CWE-190"
 4452          ],
 4453          "CVSS": {
 4454            "nvd": {
 4455              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N",
 4456              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
 4457              "V2Score": 5,
 4458              "V3Score": 7.5
 4459            },
 4460            "redhat": {
 4461              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L",
 4462              "V3Score": 6.3
 4463            }
 4464          },
 4465          "References": [
 4466            "https://access.redhat.com/security/cve/CVE-2018-5709",
 4467            "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow",
 4468            "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E",
 4469            "https://nvd.nist.gov/vuln/detail/CVE-2018-5709",
 4470            "https://www.cve.org/CVERecord?id=CVE-2018-5709"
 4471          ],
 4472          "PublishedDate": "2018-01-16T09:29:00Z",
 4473          "LastModifiedDate": "2021-02-25T17:15:00Z"
 4474        },
 4475        {
 4476          "VulnerabilityID": "CVE-2023-2953",
 4477          "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1",
 4478          "PkgName": "libldap-2.4-2",
 4479          "InstalledVersion": "2.4.57+dfsg-3+deb11u1",
 4480          "Status": "affected",
 4481          "Layer": {
 4482            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 4483            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 4484          },
 4485          "SeveritySource": "nvd",
 4486          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2953",
 4487          "DataSource": {
 4488            "ID": "debian",
 4489            "Name": "Debian Security Tracker",
 4490            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4491          },
 4492          "Title": "null pointer dereference in  ber_memalloc_x  function",
 4493          "Description": "A vulnerability was found in openldap. This security flaw causes a null pointer dereference in ber_memalloc_x() function.",
 4494          "Severity": "HIGH",
 4495          "CweIDs": [
 4496            "CWE-476"
 4497          ],
 4498          "CVSS": {
 4499            "nvd": {
 4500              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 4501              "V3Score": 7.5
 4502            },
 4503            "redhat": {
 4504              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H",
 4505              "V3Score": 7.1
 4506            }
 4507          },
 4508          "References": [
 4509            "http://seclists.org/fulldisclosure/2023/Jul/47",
 4510            "http://seclists.org/fulldisclosure/2023/Jul/48",
 4511            "http://seclists.org/fulldisclosure/2023/Jul/52",
 4512            "https://access.redhat.com/security/cve/CVE-2023-2953",
 4513            "https://bugs.openldap.org/show_bug.cgi?id=9904",
 4514            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2953",
 4515            "https://nvd.nist.gov/vuln/detail/CVE-2023-2953",
 4516            "https://security.netapp.com/advisory/ntap-20230703-0005/",
 4517            "https://support.apple.com/kb/HT213843",
 4518            "https://support.apple.com/kb/HT213844",
 4519            "https://support.apple.com/kb/HT213845",
 4520            "https://ubuntu.com/security/notices/USN-6197-1",
 4521            "https://www.cve.org/CVERecord?id=CVE-2023-2953"
 4522          ],
 4523          "PublishedDate": "2023-05-30T22:15:00Z",
 4524          "LastModifiedDate": "2023-08-02T16:46:00Z"
 4525        },
 4526        {
 4527          "VulnerabilityID": "CVE-2015-3276",
 4528          "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1",
 4529          "PkgName": "libldap-2.4-2",
 4530          "InstalledVersion": "2.4.57+dfsg-3+deb11u1",
 4531          "Status": "affected",
 4532          "Layer": {
 4533            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 4534            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 4535          },
 4536          "SeveritySource": "debian",
 4537          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2015-3276",
 4538          "DataSource": {
 4539            "ID": "debian",
 4540            "Name": "Debian Security Tracker",
 4541            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4542          },
 4543          "Title": "incorrect multi-keyword mode cipherstring parsing",
 4544          "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.",
 4545          "Severity": "LOW",
 4546          "CVSS": {
 4547            "nvd": {
 4548              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N",
 4549              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
 4550              "V2Score": 5,
 4551              "V3Score": 7.5
 4552            },
 4553            "redhat": {
 4554              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N",
 4555              "V2Score": 4.3
 4556            }
 4557          },
 4558          "References": [
 4559            "http://rhn.redhat.com/errata/RHSA-2015-2131.html",
 4560            "http://www.oracle.com/technetwork/topics/security/linuxbulletinoct2015-2719645.html",
 4561            "http://www.securitytracker.com/id/1034221",
 4562            "https://access.redhat.com/security/cve/CVE-2015-3276",
 4563            "https://bugzilla.redhat.com/show_bug.cgi?id=1238322",
 4564            "https://linux.oracle.com/cve/CVE-2015-3276.html",
 4565            "https://linux.oracle.com/errata/ELSA-2015-2131.html",
 4566            "https://nvd.nist.gov/vuln/detail/CVE-2015-3276",
 4567            "https://www.cve.org/CVERecord?id=CVE-2015-3276"
 4568          ],
 4569          "PublishedDate": "2015-12-07T20:59:00Z",
 4570          "LastModifiedDate": "2023-04-28T18:28:00Z"
 4571        },
 4572        {
 4573          "VulnerabilityID": "CVE-2017-14159",
 4574          "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1",
 4575          "PkgName": "libldap-2.4-2",
 4576          "InstalledVersion": "2.4.57+dfsg-3+deb11u1",
 4577          "Status": "affected",
 4578          "Layer": {
 4579            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 4580            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 4581          },
 4582          "SeveritySource": "debian",
 4583          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-14159",
 4584          "DataSource": {
 4585            "ID": "debian",
 4586            "Name": "Debian Security Tracker",
 4587            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4588          },
 4589          "Title": "openldap: Privilege escalation via PID file manipulation",
 4590          "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.",
 4591          "Severity": "LOW",
 4592          "CweIDs": [
 4593            "CWE-665"
 4594          ],
 4595          "CVSS": {
 4596            "nvd": {
 4597              "V2Vector": "AV:L/AC:M/Au:N/C:N/I:N/A:P",
 4598              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H",
 4599              "V2Score": 1.9,
 4600              "V3Score": 4.7
 4601            },
 4602            "redhat": {
 4603              "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:N/A:H",
 4604              "V3Score": 4.4
 4605            }
 4606          },
 4607          "References": [
 4608            "http://www.openldap.org/its/index.cgi?findid=8703",
 4609            "https://access.redhat.com/security/cve/CVE-2017-14159",
 4610            "https://nvd.nist.gov/vuln/detail/CVE-2017-14159",
 4611            "https://www.cve.org/CVERecord?id=CVE-2017-14159",
 4612            "https://www.oracle.com/security-alerts/cpuapr2022.html"
 4613          ],
 4614          "PublishedDate": "2017-09-05T18:29:00Z",
 4615          "LastModifiedDate": "2022-06-13T19:18:00Z"
 4616        },
 4617        {
 4618          "VulnerabilityID": "CVE-2017-17740",
 4619          "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1",
 4620          "PkgName": "libldap-2.4-2",
 4621          "InstalledVersion": "2.4.57+dfsg-3+deb11u1",
 4622          "Status": "affected",
 4623          "Layer": {
 4624            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 4625            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 4626          },
 4627          "SeveritySource": "debian",
 4628          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-17740",
 4629          "DataSource": {
 4630            "ID": "debian",
 4631            "Name": "Debian Security Tracker",
 4632            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4633          },
 4634          "Title": "openldap: contrib/slapd-modules/nops/nops.c attempts to free stack buffer allowing remote attackers to cause a denial of service",
 4635          "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.",
 4636          "Severity": "LOW",
 4637          "CweIDs": [
 4638            "CWE-119"
 4639          ],
 4640          "CVSS": {
 4641            "nvd": {
 4642              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
 4643              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 4644              "V2Score": 5,
 4645              "V3Score": 7.5
 4646            },
 4647            "redhat": {
 4648              "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
 4649              "V3Score": 5.9
 4650            }
 4651          },
 4652          "References": [
 4653            "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00053.html",
 4654            "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00058.html",
 4655            "http://www.openldap.org/its/index.cgi/Incoming?id=8759",
 4656            "https://access.redhat.com/security/cve/CVE-2017-17740",
 4657            "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365",
 4658            "https://nvd.nist.gov/vuln/detail/CVE-2017-17740",
 4659            "https://www.cve.org/CVERecord?id=CVE-2017-17740",
 4660            "https://www.oracle.com/security-alerts/cpuapr2022.html"
 4661          ],
 4662          "PublishedDate": "2017-12-18T06:29:00Z",
 4663          "LastModifiedDate": "2022-06-13T19:10:00Z"
 4664        },
 4665        {
 4666          "VulnerabilityID": "CVE-2020-15719",
 4667          "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1",
 4668          "PkgName": "libldap-2.4-2",
 4669          "InstalledVersion": "2.4.57+dfsg-3+deb11u1",
 4670          "Status": "affected",
 4671          "Layer": {
 4672            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 4673            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 4674          },
 4675          "SeveritySource": "debian",
 4676          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-15719",
 4677          "DataSource": {
 4678            "ID": "debian",
 4679            "Name": "Debian Security Tracker",
 4680            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4681          },
 4682          "Title": "openldap: Certificate validation incorrectly matches name against CN-ID",
 4683          "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.",
 4684          "Severity": "LOW",
 4685          "CweIDs": [
 4686            "CWE-295"
 4687          ],
 4688          "CVSS": {
 4689            "nvd": {
 4690              "V2Vector": "AV:N/AC:H/Au:N/C:P/I:P/A:N",
 4691              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N",
 4692              "V2Score": 4,
 4693              "V3Score": 4.2
 4694            },
 4695            "redhat": {
 4696              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N",
 4697              "V3Score": 4.2
 4698            }
 4699          },
 4700          "References": [
 4701            "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00033.html",
 4702            "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00059.html",
 4703            "https://access.redhat.com/errata/RHBA-2019:3674",
 4704            "https://access.redhat.com/security/cve/CVE-2020-15719",
 4705            "https://bugs.openldap.org/show_bug.cgi?id=9266",
 4706            "https://bugzilla.redhat.com/show_bug.cgi?id=1740070",
 4707            "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365",
 4708            "https://nvd.nist.gov/vuln/detail/CVE-2020-15719",
 4709            "https://www.cve.org/CVERecord?id=CVE-2020-15719",
 4710            "https://www.oracle.com/security-alerts/cpuapr2022.html"
 4711          ],
 4712          "PublishedDate": "2020-07-14T14:15:00Z",
 4713          "LastModifiedDate": "2022-05-12T15:01:00Z"
 4714        },
 4715        {
 4716          "VulnerabilityID": "CVE-2022-0563",
 4717          "PkgID": "libmount1@2.36.1-8+deb11u1",
 4718          "PkgName": "libmount1",
 4719          "InstalledVersion": "2.36.1-8+deb11u1",
 4720          "Status": "affected",
 4721          "Layer": {
 4722            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4723            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4724          },
 4725          "SeveritySource": "debian",
 4726          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563",
 4727          "DataSource": {
 4728            "ID": "debian",
 4729            "Name": "Debian Security Tracker",
 4730            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4731          },
 4732          "Title": "partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline",
 4733          "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.",
 4734          "Severity": "LOW",
 4735          "CweIDs": [
 4736            "CWE-209"
 4737          ],
 4738          "CVSS": {
 4739            "nvd": {
 4740              "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N",
 4741              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
 4742              "V2Score": 1.9,
 4743              "V3Score": 5.5
 4744            },
 4745            "redhat": {
 4746              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
 4747              "V3Score": 5.5
 4748            }
 4749          },
 4750          "References": [
 4751            "https://access.redhat.com/security/cve/CVE-2022-0563",
 4752            "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/",
 4753            "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u",
 4754            "https://nvd.nist.gov/vuln/detail/CVE-2022-0563",
 4755            "https://security.netapp.com/advisory/ntap-20220331-0002/",
 4756            "https://www.cve.org/CVERecord?id=CVE-2022-0563"
 4757          ],
 4758          "PublishedDate": "2022-02-21T19:15:00Z",
 4759          "LastModifiedDate": "2022-06-03T14:15:00Z"
 4760        },
 4761        {
 4762          "VulnerabilityID": "CVE-2022-41409",
 4763          "PkgID": "libpcre2-8-0@10.36-2+deb11u1",
 4764          "PkgName": "libpcre2-8-0",
 4765          "InstalledVersion": "10.36-2+deb11u1",
 4766          "Status": "affected",
 4767          "Layer": {
 4768            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4769            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4770          },
 4771          "SeveritySource": "debian",
 4772          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41409",
 4773          "DataSource": {
 4774            "ID": "debian",
 4775            "Name": "Debian Security Tracker",
 4776            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4777          },
 4778          "Title": "Integer overflow vulnerability in pcre2test before 10.41 allows attack ...",
 4779          "Description": "Integer overflow vulnerability in pcre2test before 10.41 allows attackers to cause a denial of service or other unspecified impacts via negative input.",
 4780          "Severity": "LOW",
 4781          "CweIDs": [
 4782            "CWE-190"
 4783          ],
 4784          "CVSS": {
 4785            "nvd": {
 4786              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 4787              "V3Score": 7.5
 4788            }
 4789          },
 4790          "References": [
 4791            "https://github.com/PCRE2Project/pcre2/commit/94e1c001761373b7d9450768aa15d04c25547a35",
 4792            "https://github.com/PCRE2Project/pcre2/issues/141"
 4793          ],
 4794          "PublishedDate": "2023-07-18T14:15:00Z",
 4795          "LastModifiedDate": "2023-07-27T03:46:00Z"
 4796        },
 4797        {
 4798          "VulnerabilityID": "CVE-2017-11164",
 4799          "PkgID": "libpcre3@2:8.39-13",
 4800          "PkgName": "libpcre3",
 4801          "InstalledVersion": "2:8.39-13",
 4802          "Status": "affected",
 4803          "Layer": {
 4804            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4805            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4806          },
 4807          "SeveritySource": "debian",
 4808          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11164",
 4809          "DataSource": {
 4810            "ID": "debian",
 4811            "Name": "Debian Security Tracker",
 4812            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4813          },
 4814          "Title": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c",
 4815          "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.",
 4816          "Severity": "LOW",
 4817          "CweIDs": [
 4818            "CWE-674"
 4819          ],
 4820          "CVSS": {
 4821            "nvd": {
 4822              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:C",
 4823              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 4824              "V2Score": 7.8,
 4825              "V3Score": 7.5
 4826            },
 4827            "redhat": {
 4828              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L",
 4829              "V3Score": 3.3
 4830            }
 4831          },
 4832          "References": [
 4833            "http://openwall.com/lists/oss-security/2017/07/11/3",
 4834            "http://www.openwall.com/lists/oss-security/2023/04/11/1",
 4835            "http://www.openwall.com/lists/oss-security/2023/04/12/1",
 4836            "http://www.securityfocus.com/bid/99575",
 4837            "https://access.redhat.com/security/cve/CVE-2017-11164",
 4838            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164",
 4839            "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E",
 4840            "https://nvd.nist.gov/vuln/detail/CVE-2017-11164",
 4841            "https://www.cve.org/CVERecord?id=CVE-2017-11164"
 4842          ],
 4843          "PublishedDate": "2017-07-11T03:29:00Z",
 4844          "LastModifiedDate": "2023-04-12T15:15:00Z"
 4845        },
 4846        {
 4847          "VulnerabilityID": "CVE-2017-16231",
 4848          "PkgID": "libpcre3@2:8.39-13",
 4849          "PkgName": "libpcre3",
 4850          "InstalledVersion": "2:8.39-13",
 4851          "Status": "affected",
 4852          "Layer": {
 4853            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4854            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4855          },
 4856          "SeveritySource": "debian",
 4857          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-16231",
 4858          "DataSource": {
 4859            "ID": "debian",
 4860            "Name": "Debian Security Tracker",
 4861            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4862          },
 4863          "Title": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service",
 4864          "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.",
 4865          "Severity": "LOW",
 4866          "CweIDs": [
 4867            "CWE-119"
 4868          ],
 4869          "CVSS": {
 4870            "nvd": {
 4871              "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P",
 4872              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
 4873              "V2Score": 2.1,
 4874              "V3Score": 5.5
 4875            },
 4876            "redhat": {
 4877              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 4878              "V3Score": 5.5
 4879            }
 4880          },
 4881          "References": [
 4882            "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html",
 4883            "http://seclists.org/fulldisclosure/2018/Dec/33",
 4884            "http://www.openwall.com/lists/oss-security/2017/11/01/11",
 4885            "http://www.openwall.com/lists/oss-security/2017/11/01/3",
 4886            "http://www.openwall.com/lists/oss-security/2017/11/01/7",
 4887            "http://www.openwall.com/lists/oss-security/2017/11/01/8",
 4888            "http://www.securityfocus.com/bid/101688",
 4889            "https://access.redhat.com/security/cve/CVE-2017-16231",
 4890            "https://bugs.exim.org/show_bug.cgi?id=2047",
 4891            "https://nvd.nist.gov/vuln/detail/CVE-2017-16231",
 4892            "https://www.cve.org/CVERecord?id=CVE-2017-16231"
 4893          ],
 4894          "PublishedDate": "2019-03-21T15:59:00Z",
 4895          "LastModifiedDate": "2019-04-02T13:55:00Z"
 4896        },
 4897        {
 4898          "VulnerabilityID": "CVE-2017-7245",
 4899          "PkgID": "libpcre3@2:8.39-13",
 4900          "PkgName": "libpcre3",
 4901          "InstalledVersion": "2:8.39-13",
 4902          "Status": "affected",
 4903          "Layer": {
 4904            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4905            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4906          },
 4907          "SeveritySource": "debian",
 4908          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7245",
 4909          "DataSource": {
 4910            "ID": "debian",
 4911            "Name": "Debian Security Tracker",
 4912            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4913          },
 4914          "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring",
 4915          "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.",
 4916          "Severity": "LOW",
 4917          "CweIDs": [
 4918            "CWE-119"
 4919          ],
 4920          "CVSS": {
 4921            "nvd": {
 4922              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
 4923              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 4924              "V2Score": 6.8,
 4925              "V3Score": 7.8
 4926            },
 4927            "redhat": {
 4928              "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L",
 4929              "V3Score": 3.7
 4930            }
 4931          },
 4932          "References": [
 4933            "http://www.securityfocus.com/bid/97067",
 4934            "https://access.redhat.com/errata/RHSA-2018:2486",
 4935            "https://access.redhat.com/security/cve/CVE-2017-7245",
 4936            "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/",
 4937            "https://nvd.nist.gov/vuln/detail/CVE-2017-7245",
 4938            "https://security.gentoo.org/glsa/201710-25",
 4939            "https://www.cve.org/CVERecord?id=CVE-2017-7245"
 4940          ],
 4941          "PublishedDate": "2017-03-23T21:59:00Z",
 4942          "LastModifiedDate": "2018-08-17T10:29:00Z"
 4943        },
 4944        {
 4945          "VulnerabilityID": "CVE-2017-7246",
 4946          "PkgID": "libpcre3@2:8.39-13",
 4947          "PkgName": "libpcre3",
 4948          "InstalledVersion": "2:8.39-13",
 4949          "Status": "affected",
 4950          "Layer": {
 4951            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4952            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 4953          },
 4954          "SeveritySource": "debian",
 4955          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7246",
 4956          "DataSource": {
 4957            "ID": "debian",
 4958            "Name": "Debian Security Tracker",
 4959            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 4960          },
 4961          "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring",
 4962          "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.",
 4963          "Severity": "LOW",
 4964          "CweIDs": [
 4965            "CWE-119"
 4966          ],
 4967          "CVSS": {
 4968            "nvd": {
 4969              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
 4970              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 4971              "V2Score": 6.8,
 4972              "V3Score": 7.8
 4973            },
 4974            "redhat": {
 4975              "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L",
 4976              "V3Score": 3.7
 4977            }
 4978          },
 4979          "References": [
 4980            "http://www.securityfocus.com/bid/97067",
 4981            "https://access.redhat.com/errata/RHSA-2018:2486",
 4982            "https://access.redhat.com/security/cve/CVE-2017-7246",
 4983            "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/",
 4984            "https://nvd.nist.gov/vuln/detail/CVE-2017-7246",
 4985            "https://security.gentoo.org/glsa/201710-25",
 4986            "https://www.cve.org/CVERecord?id=CVE-2017-7246"
 4987          ],
 4988          "PublishedDate": "2017-03-23T21:59:00Z",
 4989          "LastModifiedDate": "2018-08-17T10:29:00Z"
 4990        },
 4991        {
 4992          "VulnerabilityID": "CVE-2019-20838",
 4993          "PkgID": "libpcre3@2:8.39-13",
 4994          "PkgName": "libpcre3",
 4995          "InstalledVersion": "2:8.39-13",
 4996          "Status": "affected",
 4997          "Layer": {
 4998            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 4999            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5000          },
 5001          "SeveritySource": "debian",
 5002          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20838",
 5003          "DataSource": {
 5004            "ID": "debian",
 5005            "Name": "Debian Security Tracker",
 5006            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5007          },
 5008          "Title": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1",
 5009          "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.",
 5010          "Severity": "LOW",
 5011          "CweIDs": [
 5012            "CWE-125"
 5013          ],
 5014          "CVSS": {
 5015            "nvd": {
 5016              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 5017              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 5018              "V2Score": 4.3,
 5019              "V3Score": 7.5
 5020            },
 5021            "redhat": {
 5022              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 5023              "V3Score": 7.5
 5024            }
 5025          },
 5026          "References": [
 5027            "http://seclists.org/fulldisclosure/2020/Dec/32",
 5028            "http://seclists.org/fulldisclosure/2021/Feb/14",
 5029            "https://access.redhat.com/security/cve/CVE-2019-20838",
 5030            "https://bugs.gentoo.org/717920",
 5031            "https://bugzilla.redhat.com/show_bug.cgi?id=1848436",
 5032            "https://bugzilla.redhat.com/show_bug.cgi?id=1848444",
 5033            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838",
 5034            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155",
 5035            "https://errata.almalinux.org/8/ALSA-2021-4373.html",
 5036            "https://errata.rockylinux.org/RLSA-2021:4373",
 5037            "https://linux.oracle.com/cve/CVE-2019-20838.html",
 5038            "https://linux.oracle.com/errata/ELSA-2021-4373.html",
 5039            "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E",
 5040            "https://nvd.nist.gov/vuln/detail/CVE-2019-20838",
 5041            "https://support.apple.com/kb/HT211931",
 5042            "https://support.apple.com/kb/HT212147",
 5043            "https://ubuntu.com/security/notices/USN-5425-1",
 5044            "https://www.cve.org/CVERecord?id=CVE-2019-20838",
 5045            "https://www.pcre.org/original/changelog.txt"
 5046          ],
 5047          "PublishedDate": "2020-06-15T17:15:00Z",
 5048          "LastModifiedDate": "2021-09-22T14:22:00Z"
 5049        },
 5050        {
 5051          "VulnerabilityID": "CVE-2019-6129",
 5052          "PkgID": "libpng16-16@1.6.37-3",
 5053          "PkgName": "libpng16-16",
 5054          "InstalledVersion": "1.6.37-3",
 5055          "Status": "affected",
 5056          "Layer": {
 5057            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 5058            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 5059          },
 5060          "SeveritySource": "debian",
 5061          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-6129",
 5062          "DataSource": {
 5063            "ID": "debian",
 5064            "Name": "Debian Security Tracker",
 5065            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5066          },
 5067          "Title": "libpng: memory leak of png_info struct in pngcp.c",
 5068          "Description": "** DISPUTED ** png_create_info_struct in png.c in libpng 1.6.36 has a memory leak, as demonstrated by pngcp. NOTE: a third party has stated \"I don't think it is libpng's job to free this buffer.\"",
 5069          "Severity": "LOW",
 5070          "CweIDs": [
 5071            "CWE-401"
 5072          ],
 5073          "CVSS": {
 5074            "nvd": {
 5075              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 5076              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 5077              "V2Score": 4.3,
 5078              "V3Score": 6.5
 5079            },
 5080            "redhat": {
 5081              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L",
 5082              "V3Score": 3.3
 5083            }
 5084          },
 5085          "References": [
 5086            "https://access.redhat.com/security/cve/CVE-2019-6129",
 5087            "https://github.com/glennrp/libpng/issues/269",
 5088            "https://nvd.nist.gov/vuln/detail/CVE-2019-6129",
 5089            "https://www.cve.org/CVERecord?id=CVE-2019-6129",
 5090            "https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html"
 5091          ],
 5092          "PublishedDate": "2019-01-11T05:29:00Z",
 5093          "LastModifiedDate": "2020-08-24T17:37:00Z"
 5094        },
 5095        {
 5096          "VulnerabilityID": "CVE-2021-4214",
 5097          "PkgID": "libpng16-16@1.6.37-3",
 5098          "PkgName": "libpng16-16",
 5099          "InstalledVersion": "1.6.37-3",
 5100          "Status": "affected",
 5101          "Layer": {
 5102            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 5103            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 5104          },
 5105          "SeveritySource": "debian",
 5106          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-4214",
 5107          "DataSource": {
 5108            "ID": "debian",
 5109            "Name": "Debian Security Tracker",
 5110            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5111          },
 5112          "Title": "libpng: hardcoded value leads to heap-overflow",
 5113          "Description": "A heap overflow flaw was found in libpngs' pngimage.c program. This flaw allows an attacker with local network access to pass a specially crafted PNG file to the pngimage utility, causing an application to crash, leading to a denial of service.",
 5114          "Severity": "LOW",
 5115          "CweIDs": [
 5116            "CWE-120"
 5117          ],
 5118          "CVSS": {
 5119            "nvd": {
 5120              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 5121              "V3Score": 5.5
 5122            },
 5123            "redhat": {
 5124              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 5125              "V3Score": 5.5
 5126            }
 5127          },
 5128          "References": [
 5129            "https://access.redhat.com/security/cve/CVE-2021-4214",
 5130            "https://bugzilla.redhat.com/show_bug.cgi?id=2043393",
 5131            "https://github.com/glennrp/libpng/issues/302",
 5132            "https://nvd.nist.gov/vuln/detail/CVE-2021-4214",
 5133            "https://security-tracker.debian.org/tracker/CVE-2021-4214",
 5134            "https://security.netapp.com/advisory/ntap-20221020-0001/",
 5135            "https://www.cve.org/CVERecord?id=CVE-2021-4214"
 5136          ],
 5137          "PublishedDate": "2022-08-24T16:15:00Z",
 5138          "LastModifiedDate": "2022-11-08T02:32:00Z"
 5139        },
 5140        {
 5141          "VulnerabilityID": "CVE-2021-36084",
 5142          "PkgID": "libsepol1@3.1-1",
 5143          "PkgName": "libsepol1",
 5144          "InstalledVersion": "3.1-1",
 5145          "Status": "affected",
 5146          "Layer": {
 5147            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5148            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5149          },
 5150          "SeveritySource": "nvd",
 5151          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36084",
 5152          "DataSource": {
 5153            "ID": "debian",
 5154            "Name": "Debian Security Tracker",
 5155            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5156          },
 5157          "Title": "libsepol: use-after-free in __cil_verify_classperms()",
 5158          "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).",
 5159          "Severity": "LOW",
 5160          "CweIDs": [
 5161            "CWE-416"
 5162          ],
 5163          "CVSS": {
 5164            "nvd": {
 5165              "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P",
 5166              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L",
 5167              "V2Score": 2.1,
 5168              "V3Score": 3.3
 5169            },
 5170            "redhat": {
 5171              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L",
 5172              "V3Score": 3.3
 5173            }
 5174          },
 5175          "References": [
 5176            "https://access.redhat.com/security/cve/CVE-2021-36084",
 5177            "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065",
 5178            "https://bugzilla.redhat.com/show_bug.cgi?id=1979662",
 5179            "https://bugzilla.redhat.com/show_bug.cgi?id=1979664",
 5180            "https://bugzilla.redhat.com/show_bug.cgi?id=1979666",
 5181            "https://bugzilla.redhat.com/show_bug.cgi?id=1979668",
 5182            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084",
 5183            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085",
 5184            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086",
 5185            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087",
 5186            "https://errata.almalinux.org/8/ALSA-2021-4513.html",
 5187            "https://errata.rockylinux.org/RLSA-2021:4513",
 5188            "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3",
 5189            "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml",
 5190            "https://linux.oracle.com/cve/CVE-2021-36084.html",
 5191            "https://linux.oracle.com/errata/ELSA-2021-4513.html",
 5192            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/",
 5193            "https://nvd.nist.gov/vuln/detail/CVE-2021-36084",
 5194            "https://ubuntu.com/security/notices/USN-5391-1",
 5195            "https://www.cve.org/CVERecord?id=CVE-2021-36084"
 5196          ],
 5197          "PublishedDate": "2021-07-01T03:15:00Z",
 5198          "LastModifiedDate": "2021-11-17T03:16:00Z"
 5199        },
 5200        {
 5201          "VulnerabilityID": "CVE-2021-36085",
 5202          "PkgID": "libsepol1@3.1-1",
 5203          "PkgName": "libsepol1",
 5204          "InstalledVersion": "3.1-1",
 5205          "Status": "affected",
 5206          "Layer": {
 5207            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5208            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5209          },
 5210          "SeveritySource": "nvd",
 5211          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36085",
 5212          "DataSource": {
 5213            "ID": "debian",
 5214            "Name": "Debian Security Tracker",
 5215            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5216          },
 5217          "Title": "libsepol: use-after-free in __cil_verify_classperms()",
 5218          "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).",
 5219          "Severity": "LOW",
 5220          "CweIDs": [
 5221            "CWE-416"
 5222          ],
 5223          "CVSS": {
 5224            "nvd": {
 5225              "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P",
 5226              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L",
 5227              "V2Score": 2.1,
 5228              "V3Score": 3.3
 5229            },
 5230            "redhat": {
 5231              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L",
 5232              "V3Score": 3.3
 5233            }
 5234          },
 5235          "References": [
 5236            "https://access.redhat.com/security/cve/CVE-2021-36085",
 5237            "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124",
 5238            "https://bugzilla.redhat.com/show_bug.cgi?id=1979662",
 5239            "https://bugzilla.redhat.com/show_bug.cgi?id=1979664",
 5240            "https://bugzilla.redhat.com/show_bug.cgi?id=1979666",
 5241            "https://bugzilla.redhat.com/show_bug.cgi?id=1979668",
 5242            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084",
 5243            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085",
 5244            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086",
 5245            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087",
 5246            "https://errata.almalinux.org/8/ALSA-2021-4513.html",
 5247            "https://errata.rockylinux.org/RLSA-2021:4513",
 5248            "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba",
 5249            "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml",
 5250            "https://linux.oracle.com/cve/CVE-2021-36085.html",
 5251            "https://linux.oracle.com/errata/ELSA-2021-4513.html",
 5252            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/",
 5253            "https://nvd.nist.gov/vuln/detail/CVE-2021-36085",
 5254            "https://ubuntu.com/security/notices/USN-5391-1",
 5255            "https://www.cve.org/CVERecord?id=CVE-2021-36085"
 5256          ],
 5257          "PublishedDate": "2021-07-01T03:15:00Z",
 5258          "LastModifiedDate": "2021-11-17T03:26:00Z"
 5259        },
 5260        {
 5261          "VulnerabilityID": "CVE-2021-36086",
 5262          "PkgID": "libsepol1@3.1-1",
 5263          "PkgName": "libsepol1",
 5264          "InstalledVersion": "3.1-1",
 5265          "Status": "affected",
 5266          "Layer": {
 5267            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5268            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5269          },
 5270          "SeveritySource": "nvd",
 5271          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36086",
 5272          "DataSource": {
 5273            "ID": "debian",
 5274            "Name": "Debian Security Tracker",
 5275            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5276          },
 5277          "Title": "use-after-free in cil_reset_classpermission()",
 5278          "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).",
 5279          "Severity": "LOW",
 5280          "CweIDs": [
 5281            "CWE-416"
 5282          ],
 5283          "CVSS": {
 5284            "nvd": {
 5285              "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P",
 5286              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L",
 5287              "V2Score": 2.1,
 5288              "V3Score": 3.3
 5289            },
 5290            "redhat": {
 5291              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L",
 5292              "V3Score": 3.3
 5293            }
 5294          },
 5295          "References": [
 5296            "https://access.redhat.com/security/cve/CVE-2021-36086",
 5297            "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177",
 5298            "https://bugzilla.redhat.com/show_bug.cgi?id=1979662",
 5299            "https://bugzilla.redhat.com/show_bug.cgi?id=1979664",
 5300            "https://bugzilla.redhat.com/show_bug.cgi?id=1979666",
 5301            "https://bugzilla.redhat.com/show_bug.cgi?id=1979668",
 5302            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084",
 5303            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085",
 5304            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086",
 5305            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087",
 5306            "https://errata.almalinux.org/8/ALSA-2021-4513.html",
 5307            "https://errata.rockylinux.org/RLSA-2021:4513",
 5308            "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8",
 5309            "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml",
 5310            "https://linux.oracle.com/cve/CVE-2021-36086.html",
 5311            "https://linux.oracle.com/errata/ELSA-2021-4513.html",
 5312            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/",
 5313            "https://nvd.nist.gov/vuln/detail/CVE-2021-36086",
 5314            "https://ubuntu.com/security/notices/USN-5391-1",
 5315            "https://www.cve.org/CVERecord?id=CVE-2021-36086"
 5316          ],
 5317          "PublishedDate": "2021-07-01T03:15:00Z",
 5318          "LastModifiedDate": "2021-11-17T03:27:00Z"
 5319        },
 5320        {
 5321          "VulnerabilityID": "CVE-2021-36087",
 5322          "PkgID": "libsepol1@3.1-1",
 5323          "PkgName": "libsepol1",
 5324          "InstalledVersion": "3.1-1",
 5325          "Status": "affected",
 5326          "Layer": {
 5327            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5328            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5329          },
 5330          "SeveritySource": "nvd",
 5331          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36087",
 5332          "DataSource": {
 5333            "ID": "debian",
 5334            "Name": "Debian Security Tracker",
 5335            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5336          },
 5337          "Title": "libsepol: heap-based buffer overflow in ebitmap_match_any()",
 5338          "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.",
 5339          "Severity": "LOW",
 5340          "CweIDs": [
 5341            "CWE-125"
 5342          ],
 5343          "CVSS": {
 5344            "nvd": {
 5345              "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P",
 5346              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L",
 5347              "V2Score": 2.1,
 5348              "V3Score": 3.3
 5349            },
 5350            "redhat": {
 5351              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L",
 5352              "V3Score": 3.3
 5353            }
 5354          },
 5355          "References": [
 5356            "https://access.redhat.com/security/cve/CVE-2021-36087",
 5357            "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675",
 5358            "https://bugzilla.redhat.com/show_bug.cgi?id=1979662",
 5359            "https://bugzilla.redhat.com/show_bug.cgi?id=1979664",
 5360            "https://bugzilla.redhat.com/show_bug.cgi?id=1979666",
 5361            "https://bugzilla.redhat.com/show_bug.cgi?id=1979668",
 5362            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084",
 5363            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085",
 5364            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086",
 5365            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087",
 5366            "https://errata.almalinux.org/8/ALSA-2021-4513.html",
 5367            "https://errata.rockylinux.org/RLSA-2021:4513",
 5368            "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521",
 5369            "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml",
 5370            "https://linux.oracle.com/cve/CVE-2021-36087.html",
 5371            "https://linux.oracle.com/errata/ELSA-2021-4513.html",
 5372            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/",
 5373            "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/",
 5374            "https://nvd.nist.gov/vuln/detail/CVE-2021-36087",
 5375            "https://ubuntu.com/security/notices/USN-5391-1",
 5376            "https://www.cve.org/CVERecord?id=CVE-2021-36087"
 5377          ],
 5378          "PublishedDate": "2021-07-01T03:15:00Z",
 5379          "LastModifiedDate": "2021-11-17T14:05:00Z"
 5380        },
 5381        {
 5382          "VulnerabilityID": "CVE-2022-0563",
 5383          "PkgID": "libsmartcols1@2.36.1-8+deb11u1",
 5384          "PkgName": "libsmartcols1",
 5385          "InstalledVersion": "2.36.1-8+deb11u1",
 5386          "Status": "affected",
 5387          "Layer": {
 5388            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5389            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5390          },
 5391          "SeveritySource": "debian",
 5392          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563",
 5393          "DataSource": {
 5394            "ID": "debian",
 5395            "Name": "Debian Security Tracker",
 5396            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5397          },
 5398          "Title": "partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline",
 5399          "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.",
 5400          "Severity": "LOW",
 5401          "CweIDs": [
 5402            "CWE-209"
 5403          ],
 5404          "CVSS": {
 5405            "nvd": {
 5406              "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N",
 5407              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
 5408              "V2Score": 1.9,
 5409              "V3Score": 5.5
 5410            },
 5411            "redhat": {
 5412              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
 5413              "V3Score": 5.5
 5414            }
 5415          },
 5416          "References": [
 5417            "https://access.redhat.com/security/cve/CVE-2022-0563",
 5418            "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/",
 5419            "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u",
 5420            "https://nvd.nist.gov/vuln/detail/CVE-2022-0563",
 5421            "https://security.netapp.com/advisory/ntap-20220331-0002/",
 5422            "https://www.cve.org/CVERecord?id=CVE-2022-0563"
 5423          ],
 5424          "PublishedDate": "2022-02-21T19:15:00Z",
 5425          "LastModifiedDate": "2022-06-03T14:15:00Z"
 5426        },
 5427        {
 5428          "VulnerabilityID": "CVE-2022-1304",
 5429          "PkgID": "libss2@1.46.2-2",
 5430          "PkgName": "libss2",
 5431          "InstalledVersion": "1.46.2-2",
 5432          "Status": "affected",
 5433          "Layer": {
 5434            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5435            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5436          },
 5437          "SeveritySource": "nvd",
 5438          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1304",
 5439          "DataSource": {
 5440            "ID": "debian",
 5441            "Name": "Debian Security Tracker",
 5442            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5443          },
 5444          "Title": "out-of-bounds read/write via crafted filesystem",
 5445          "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.",
 5446          "Severity": "HIGH",
 5447          "CweIDs": [
 5448            "CWE-125",
 5449            "CWE-787"
 5450          ],
 5451          "CVSS": {
 5452            "nvd": {
 5453              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
 5454              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 5455              "V2Score": 6.8,
 5456              "V3Score": 7.8
 5457            },
 5458            "redhat": {
 5459              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H",
 5460              "V3Score": 5.8
 5461            }
 5462          },
 5463          "References": [
 5464            "https://access.redhat.com/errata/RHSA-2022:8361",
 5465            "https://access.redhat.com/security/cve/CVE-2022-1304",
 5466            "https://bugzilla.redhat.com/2069726",
 5467            "https://bugzilla.redhat.com/show_bug.cgi?id=2069726",
 5468            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304",
 5469            "https://errata.almalinux.org/9/ALSA-2022-8361.html",
 5470            "https://errata.rockylinux.org/RLSA-2022:8361",
 5471            "https://linux.oracle.com/cve/CVE-2022-1304.html",
 5472            "https://linux.oracle.com/errata/ELSA-2022-8361.html",
 5473            "https://marc.info/?l=linux-ext4\u0026m=165056234501732\u0026w=2",
 5474            "https://nvd.nist.gov/vuln/detail/CVE-2022-1304",
 5475            "https://ubuntu.com/security/notices/USN-5464-1",
 5476            "https://www.cve.org/CVERecord?id=CVE-2022-1304"
 5477          ],
 5478          "PublishedDate": "2022-04-14T21:15:00Z",
 5479          "LastModifiedDate": "2023-02-12T22:15:00Z"
 5480        },
 5481        {
 5482          "VulnerabilityID": "CVE-2022-4450",
 5483          "VendorIDs": [
 5484            "DSA-5343-1"
 5485          ],
 5486          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 5487          "PkgName": "libssl1.1",
 5488          "InstalledVersion": "1.1.1n-0+deb11u3",
 5489          "FixedVersion": "1.1.1n-0+deb11u4",
 5490          "Status": "fixed",
 5491          "Layer": {
 5492            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5493            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5494          },
 5495          "SeveritySource": "nvd",
 5496          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4450",
 5497          "DataSource": {
 5498            "ID": "debian",
 5499            "Name": "Debian Security Tracker",
 5500            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5501          },
 5502          "Title": "double free after calling PEM_read_bio_ex",
 5503          "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.",
 5504          "Severity": "HIGH",
 5505          "CweIDs": [
 5506            "CWE-415"
 5507          ],
 5508          "CVSS": {
 5509            "ghsa": {
 5510              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 5511              "V3Score": 7.5
 5512            },
 5513            "nvd": {
 5514              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 5515              "V3Score": 7.5
 5516            },
 5517            "redhat": {
 5518              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 5519              "V3Score": 7.5
 5520            }
 5521          },
 5522          "References": [
 5523            "https://access.redhat.com/errata/RHSA-2023:2165",
 5524            "https://access.redhat.com/security/cve/CVE-2022-4450",
 5525            "https://bugzilla.redhat.com/1960321",
 5526            "https://bugzilla.redhat.com/2164440",
 5527            "https://bugzilla.redhat.com/2164487",
 5528            "https://bugzilla.redhat.com/2164492",
 5529            "https://bugzilla.redhat.com/2164494",
 5530            "https://bugzilla.redhat.com/show_bug.cgi?id=2144000",
 5531            "https://bugzilla.redhat.com/show_bug.cgi?id=2144003",
 5532            "https://bugzilla.redhat.com/show_bug.cgi?id=2144006",
 5533            "https://bugzilla.redhat.com/show_bug.cgi?id=2144008",
 5534            "https://bugzilla.redhat.com/show_bug.cgi?id=2144010",
 5535            "https://bugzilla.redhat.com/show_bug.cgi?id=2144012",
 5536            "https://bugzilla.redhat.com/show_bug.cgi?id=2144015",
 5537            "https://bugzilla.redhat.com/show_bug.cgi?id=2144017",
 5538            "https://bugzilla.redhat.com/show_bug.cgi?id=2144019",
 5539            "https://bugzilla.redhat.com/show_bug.cgi?id=2145170",
 5540            "https://bugzilla.redhat.com/show_bug.cgi?id=2158412",
 5541            "https://bugzilla.redhat.com/show_bug.cgi?id=2164440",
 5542            "https://bugzilla.redhat.com/show_bug.cgi?id=2164487",
 5543            "https://bugzilla.redhat.com/show_bug.cgi?id=2164488",
 5544            "https://bugzilla.redhat.com/show_bug.cgi?id=2164492",
 5545            "https://bugzilla.redhat.com/show_bug.cgi?id=2164494",
 5546            "https://bugzilla.redhat.com/show_bug.cgi?id=2164497",
 5547            "https://bugzilla.redhat.com/show_bug.cgi?id=2164499",
 5548            "https://bugzilla.redhat.com/show_bug.cgi?id=2164500",
 5549            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203",
 5550            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304",
 5551            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450",
 5552            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215",
 5553            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216",
 5554            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217",
 5555            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286",
 5556            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401",
 5557            "https://errata.almalinux.org/9/ALSA-2023-2165.html",
 5558            "https://errata.rockylinux.org/RLSA-2023:0946",
 5559            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83",
 5560            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b",
 5561            "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q",
 5562            "https://linux.oracle.com/cve/CVE-2022-4450.html",
 5563            "https://linux.oracle.com/errata/ELSA-2023-2932.html",
 5564            "https://nvd.nist.gov/vuln/detail/CVE-2022-4450",
 5565            "https://rustsec.org/advisories/RUSTSEC-2023-0010.html",
 5566            "https://ubuntu.com/security/notices/USN-5844-1",
 5567            "https://www.cve.org/CVERecord?id=CVE-2022-4450",
 5568            "https://www.openssl.org/news/secadv/20230207.txt"
 5569          ],
 5570          "PublishedDate": "2023-02-08T20:15:00Z",
 5571          "LastModifiedDate": "2023-07-19T00:57:00Z"
 5572        },
 5573        {
 5574          "VulnerabilityID": "CVE-2023-0215",
 5575          "VendorIDs": [
 5576            "DSA-5343-1"
 5577          ],
 5578          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 5579          "PkgName": "libssl1.1",
 5580          "InstalledVersion": "1.1.1n-0+deb11u3",
 5581          "FixedVersion": "1.1.1n-0+deb11u4",
 5582          "Status": "fixed",
 5583          "Layer": {
 5584            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5585            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5586          },
 5587          "SeveritySource": "nvd",
 5588          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0215",
 5589          "DataSource": {
 5590            "ID": "debian",
 5591            "Name": "Debian Security Tracker",
 5592            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5593          },
 5594          "Title": "use-after-free following BIO_new_NDEF",
 5595          "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",
 5596          "Severity": "HIGH",
 5597          "CweIDs": [
 5598            "CWE-416"
 5599          ],
 5600          "CVSS": {
 5601            "ghsa": {
 5602              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 5603              "V3Score": 7.5
 5604            },
 5605            "nvd": {
 5606              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 5607              "V3Score": 7.5
 5608            },
 5609            "redhat": {
 5610              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 5611              "V3Score": 7.5
 5612            }
 5613          },
 5614          "References": [
 5615            "https://access.redhat.com/errata/RHSA-2023:2165",
 5616            "https://access.redhat.com/security/cve/CVE-2023-0215",
 5617            "https://bugzilla.redhat.com/1960321",
 5618            "https://bugzilla.redhat.com/2164440",
 5619            "https://bugzilla.redhat.com/2164487",
 5620            "https://bugzilla.redhat.com/2164492",
 5621            "https://bugzilla.redhat.com/2164494",
 5622            "https://bugzilla.redhat.com/show_bug.cgi?id=2144000",
 5623            "https://bugzilla.redhat.com/show_bug.cgi?id=2144003",
 5624            "https://bugzilla.redhat.com/show_bug.cgi?id=2144006",
 5625            "https://bugzilla.redhat.com/show_bug.cgi?id=2144008",
 5626            "https://bugzilla.redhat.com/show_bug.cgi?id=2144010",
 5627            "https://bugzilla.redhat.com/show_bug.cgi?id=2144012",
 5628            "https://bugzilla.redhat.com/show_bug.cgi?id=2144015",
 5629            "https://bugzilla.redhat.com/show_bug.cgi?id=2144017",
 5630            "https://bugzilla.redhat.com/show_bug.cgi?id=2144019",
 5631            "https://bugzilla.redhat.com/show_bug.cgi?id=2145170",
 5632            "https://bugzilla.redhat.com/show_bug.cgi?id=2158412",
 5633            "https://bugzilla.redhat.com/show_bug.cgi?id=2164440",
 5634            "https://bugzilla.redhat.com/show_bug.cgi?id=2164487",
 5635            "https://bugzilla.redhat.com/show_bug.cgi?id=2164488",
 5636            "https://bugzilla.redhat.com/show_bug.cgi?id=2164492",
 5637            "https://bugzilla.redhat.com/show_bug.cgi?id=2164494",
 5638            "https://bugzilla.redhat.com/show_bug.cgi?id=2164497",
 5639            "https://bugzilla.redhat.com/show_bug.cgi?id=2164499",
 5640            "https://bugzilla.redhat.com/show_bug.cgi?id=2164500",
 5641            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203",
 5642            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304",
 5643            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450",
 5644            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215",
 5645            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216",
 5646            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217",
 5647            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286",
 5648            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401",
 5649            "https://errata.almalinux.org/9/ALSA-2023-2165.html",
 5650            "https://errata.rockylinux.org/RLSA-2023:0946",
 5651            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd",
 5652            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb",
 5653            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344",
 5654            "https://github.com/advisories/GHSA-r7jw-wp68-3xch",
 5655            "https://linux.oracle.com/cve/CVE-2023-0215.html",
 5656            "https://linux.oracle.com/errata/ELSA-2023-2932.html",
 5657            "https://nvd.nist.gov/vuln/detail/CVE-2023-0215",
 5658            "https://rustsec.org/advisories/RUSTSEC-2023-0009.html",
 5659            "https://security.netapp.com/advisory/ntap-20230427-0007/",
 5660            "https://security.netapp.com/advisory/ntap-20230427-0009/",
 5661            "https://ubuntu.com/security/notices/USN-5844-1",
 5662            "https://ubuntu.com/security/notices/USN-5845-1",
 5663            "https://ubuntu.com/security/notices/USN-5845-2",
 5664            "https://www.cve.org/CVERecord?id=CVE-2023-0215",
 5665            "https://www.openssl.org/news/secadv/20230207.txt"
 5666          ],
 5667          "PublishedDate": "2023-02-08T20:15:00Z",
 5668          "LastModifiedDate": "2023-07-19T00:55:00Z"
 5669        },
 5670        {
 5671          "VulnerabilityID": "CVE-2023-0286",
 5672          "VendorIDs": [
 5673            "DSA-5343-1"
 5674          ],
 5675          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 5676          "PkgName": "libssl1.1",
 5677          "InstalledVersion": "1.1.1n-0+deb11u3",
 5678          "FixedVersion": "1.1.1n-0+deb11u4",
 5679          "Status": "fixed",
 5680          "Layer": {
 5681            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5682            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5683          },
 5684          "SeveritySource": "nvd",
 5685          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0286",
 5686          "DataSource": {
 5687            "ID": "debian",
 5688            "Name": "Debian Security Tracker",
 5689            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5690          },
 5691          "Title": "X.400 address type confusion in X.509 GeneralName",
 5692          "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.",
 5693          "Severity": "HIGH",
 5694          "CweIDs": [
 5695            "CWE-843"
 5696          ],
 5697          "CVSS": {
 5698            "ghsa": {
 5699              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
 5700              "V3Score": 7.4
 5701            },
 5702            "nvd": {
 5703              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
 5704              "V3Score": 7.4
 5705            },
 5706            "redhat": {
 5707              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
 5708              "V3Score": 7.4
 5709            }
 5710          },
 5711          "References": [
 5712            "https://access.redhat.com/errata/RHSA-2023:2165",
 5713            "https://access.redhat.com/security/cve/CVE-2023-0286",
 5714            "https://access.redhat.com/security/cve/cve-2023-0286",
 5715            "https://bugzilla.redhat.com/1960321",
 5716            "https://bugzilla.redhat.com/2164440",
 5717            "https://bugzilla.redhat.com/2164487",
 5718            "https://bugzilla.redhat.com/2164492",
 5719            "https://bugzilla.redhat.com/2164494",
 5720            "https://bugzilla.redhat.com/show_bug.cgi?id=2144000",
 5721            "https://bugzilla.redhat.com/show_bug.cgi?id=2144003",
 5722            "https://bugzilla.redhat.com/show_bug.cgi?id=2144006",
 5723            "https://bugzilla.redhat.com/show_bug.cgi?id=2144008",
 5724            "https://bugzilla.redhat.com/show_bug.cgi?id=2144010",
 5725            "https://bugzilla.redhat.com/show_bug.cgi?id=2144012",
 5726            "https://bugzilla.redhat.com/show_bug.cgi?id=2144015",
 5727            "https://bugzilla.redhat.com/show_bug.cgi?id=2144017",
 5728            "https://bugzilla.redhat.com/show_bug.cgi?id=2144019",
 5729            "https://bugzilla.redhat.com/show_bug.cgi?id=2145170",
 5730            "https://bugzilla.redhat.com/show_bug.cgi?id=2158412",
 5731            "https://bugzilla.redhat.com/show_bug.cgi?id=2164440",
 5732            "https://bugzilla.redhat.com/show_bug.cgi?id=2164487",
 5733            "https://bugzilla.redhat.com/show_bug.cgi?id=2164488",
 5734            "https://bugzilla.redhat.com/show_bug.cgi?id=2164492",
 5735            "https://bugzilla.redhat.com/show_bug.cgi?id=2164494",
 5736            "https://bugzilla.redhat.com/show_bug.cgi?id=2164497",
 5737            "https://bugzilla.redhat.com/show_bug.cgi?id=2164499",
 5738            "https://bugzilla.redhat.com/show_bug.cgi?id=2164500",
 5739            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203",
 5740            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304",
 5741            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450",
 5742            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215",
 5743            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216",
 5744            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217",
 5745            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286",
 5746            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401",
 5747            "https://errata.almalinux.org/9/ALSA-2023-2165.html",
 5748            "https://errata.rockylinux.org/RLSA-2023:0946",
 5749            "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt",
 5750            "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig",
 5751            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9",
 5752            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658",
 5753            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d",
 5754            "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5",
 5755            "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5",
 5756            "https://linux.oracle.com/cve/CVE-2023-0286.html",
 5757            "https://linux.oracle.com/errata/ELSA-2023-2932.html",
 5758            "https://nvd.nist.gov/vuln/detail/CVE-2023-0286",
 5759            "https://rustsec.org/advisories/RUSTSEC-2023-0006.html",
 5760            "https://ubuntu.com/security/notices/USN-5844-1",
 5761            "https://ubuntu.com/security/notices/USN-5845-1",
 5762            "https://ubuntu.com/security/notices/USN-5845-2",
 5763            "https://www.cve.org/CVERecord?id=CVE-2023-0286",
 5764            "https://www.openssl.org/news/secadv/20230207.txt"
 5765          ],
 5766          "PublishedDate": "2023-02-08T20:15:00Z",
 5767          "LastModifiedDate": "2023-07-19T00:54:00Z"
 5768        },
 5769        {
 5770          "VulnerabilityID": "CVE-2023-0464",
 5771          "VendorIDs": [
 5772            "DSA-5417-1"
 5773          ],
 5774          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 5775          "PkgName": "libssl1.1",
 5776          "InstalledVersion": "1.1.1n-0+deb11u3",
 5777          "FixedVersion": "1.1.1n-0+deb11u5",
 5778          "Status": "fixed",
 5779          "Layer": {
 5780            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5781            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5782          },
 5783          "SeveritySource": "nvd",
 5784          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0464",
 5785          "DataSource": {
 5786            "ID": "debian",
 5787            "Name": "Debian Security Tracker",
 5788            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5789          },
 5790          "Title": "Denial of service by excessive resource usage in verifying X509 policy constraints",
 5791          "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.",
 5792          "Severity": "HIGH",
 5793          "CweIDs": [
 5794            "CWE-295"
 5795          ],
 5796          "CVSS": {
 5797            "nvd": {
 5798              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 5799              "V3Score": 7.5
 5800            },
 5801            "redhat": {
 5802              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
 5803              "V3Score": 5.9
 5804            }
 5805          },
 5806          "References": [
 5807            "https://access.redhat.com/errata/RHSA-2023:3722",
 5808            "https://access.redhat.com/security/cve/CVE-2023-0464",
 5809            "https://bugzilla.redhat.com/2181082",
 5810            "https://bugzilla.redhat.com/2182561",
 5811            "https://bugzilla.redhat.com/2182565",
 5812            "https://bugzilla.redhat.com/2188461",
 5813            "https://bugzilla.redhat.com/2207947",
 5814            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464",
 5815            "https://errata.almalinux.org/9/ALSA-2023-3722.html",
 5816            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545",
 5817            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e",
 5818            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b",
 5819            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1",
 5820            "https://linux.oracle.com/cve/CVE-2023-0464.html",
 5821            "https://linux.oracle.com/errata/ELSA-2023-3722.html",
 5822            "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html",
 5823            "https://nvd.nist.gov/vuln/detail/CVE-2023-0464",
 5824            "https://ubuntu.com/security/notices/USN-6039-1",
 5825            "https://www.cve.org/CVERecord?id=CVE-2023-0464",
 5826            "https://www.debian.org/security/2023/dsa-5417",
 5827            "https://www.openssl.org/news/secadv/20230322.txt"
 5828          ],
 5829          "PublishedDate": "2023-03-22T17:15:00Z",
 5830          "LastModifiedDate": "2023-06-08T19:15:00Z"
 5831        },
 5832        {
 5833          "VulnerabilityID": "CVE-2023-2650",
 5834          "VendorIDs": [
 5835            "DSA-5417-1"
 5836          ],
 5837          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 5838          "PkgName": "libssl1.1",
 5839          "InstalledVersion": "1.1.1n-0+deb11u3",
 5840          "FixedVersion": "1.1.1n-0+deb11u5",
 5841          "Status": "fixed",
 5842          "Layer": {
 5843            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5844            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5845          },
 5846          "SeveritySource": "nvd",
 5847          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650",
 5848          "DataSource": {
 5849            "ID": "debian",
 5850            "Name": "Debian Security Tracker",
 5851            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5852          },
 5853          "Title": "Possible DoS translating ASN.1 object identifiers",
 5854          "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.",
 5855          "Severity": "HIGH",
 5856          "CweIDs": [
 5857            "CWE-770"
 5858          ],
 5859          "CVSS": {
 5860            "nvd": {
 5861              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 5862              "V3Score": 7.5
 5863            },
 5864            "redhat": {
 5865              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 5866              "V3Score": 6.5
 5867            }
 5868          },
 5869          "References": [
 5870            "http://www.openwall.com/lists/oss-security/2023/05/30/1",
 5871            "https://access.redhat.com/errata/RHSA-2023:3722",
 5872            "https://access.redhat.com/security/cve/CVE-2023-2650",
 5873            "https://bugzilla.redhat.com/2181082",
 5874            "https://bugzilla.redhat.com/2182561",
 5875            "https://bugzilla.redhat.com/2182565",
 5876            "https://bugzilla.redhat.com/2188461",
 5877            "https://bugzilla.redhat.com/2207947",
 5878            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650",
 5879            "https://errata.almalinux.org/9/ALSA-2023-3722.html",
 5880            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b",
 5881            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c",
 5882            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098",
 5883            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a",
 5884            "https://linux.oracle.com/cve/CVE-2023-2650.html",
 5885            "https://linux.oracle.com/errata/ELSA-2023-3722.html",
 5886            "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html",
 5887            "https://nvd.nist.gov/vuln/detail/CVE-2023-2650",
 5888            "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009",
 5889            "https://security.netapp.com/advisory/ntap-20230703-0001/",
 5890            "https://ubuntu.com/security/notices/USN-6119-1",
 5891            "https://ubuntu.com/security/notices/USN-6188-1",
 5892            "https://www.cve.org/CVERecord?id=CVE-2023-2650",
 5893            "https://www.debian.org/security/2023/dsa-5417",
 5894            "https://www.openssl.org/news/secadv/20230530.txt"
 5895          ],
 5896          "PublishedDate": "2023-05-30T14:15:00Z",
 5897          "LastModifiedDate": "2023-07-03T16:15:00Z"
 5898        },
 5899        {
 5900          "VulnerabilityID": "CVE-2022-2097",
 5901          "VendorIDs": [
 5902            "DSA-5343-1"
 5903          ],
 5904          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 5905          "PkgName": "libssl1.1",
 5906          "InstalledVersion": "1.1.1n-0+deb11u3",
 5907          "FixedVersion": "1.1.1n-0+deb11u4",
 5908          "Status": "fixed",
 5909          "Layer": {
 5910            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5911            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5912          },
 5913          "SeveritySource": "nvd",
 5914          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2097",
 5915          "DataSource": {
 5916            "ID": "debian",
 5917            "Name": "Debian Security Tracker",
 5918            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 5919          },
 5920          "Title": "AES OCB fails to encrypt some bytes",
 5921          "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).",
 5922          "Severity": "MEDIUM",
 5923          "CweIDs": [
 5924            "CWE-326"
 5925          ],
 5926          "CVSS": {
 5927            "ghsa": {
 5928              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
 5929              "V3Score": 7.5
 5930            },
 5931            "nvd": {
 5932              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N",
 5933              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
 5934              "V2Score": 5,
 5935              "V3Score": 5.3
 5936            },
 5937            "redhat": {
 5938              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
 5939              "V3Score": 5.3
 5940            }
 5941          },
 5942          "References": [
 5943            "https://access.redhat.com/errata/RHSA-2022:6224",
 5944            "https://access.redhat.com/security/cve/CVE-2022-2097",
 5945            "https://bugzilla.redhat.com/2081494",
 5946            "https://bugzilla.redhat.com/2087911",
 5947            "https://bugzilla.redhat.com/2087913",
 5948            "https://bugzilla.redhat.com/2097310",
 5949            "https://bugzilla.redhat.com/2104905",
 5950            "https://bugzilla.redhat.com/show_bug.cgi?id=2081494",
 5951            "https://bugzilla.redhat.com/show_bug.cgi?id=2097310",
 5952            "https://bugzilla.redhat.com/show_bug.cgi?id=2100554",
 5953            "https://bugzilla.redhat.com/show_bug.cgi?id=2104905",
 5954            "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf",
 5955            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292",
 5956            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068",
 5957            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097",
 5958            "https://errata.almalinux.org/9/ALSA-2022-6224.html",
 5959            "https://errata.rockylinux.org/RLSA-2022:5818",
 5960            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431",
 5961            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93",
 5962            "https://github.com/advisories/GHSA-3wx7-46ch-7rq2",
 5963            "https://linux.oracle.com/cve/CVE-2022-2097.html",
 5964            "https://linux.oracle.com/errata/ELSA-2022-9751.html",
 5965            "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html",
 5966            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/",
 5967            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/",
 5968            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/",
 5969            "https://nvd.nist.gov/vuln/detail/CVE-2022-2097",
 5970            "https://rustsec.org/advisories/RUSTSEC-2022-0032.html",
 5971            "https://security.gentoo.org/glsa/202210-02",
 5972            "https://security.netapp.com/advisory/ntap-20220715-0011/",
 5973            "https://security.netapp.com/advisory/ntap-20230420-0008/",
 5974            "https://ubuntu.com/security/notices/USN-5502-1",
 5975            "https://www.cve.org/CVERecord?id=CVE-2022-2097",
 5976            "https://www.debian.org/security/2023/dsa-5343",
 5977            "https://www.openssl.org/news/secadv/20220705.txt"
 5978          ],
 5979          "PublishedDate": "2022-07-05T11:15:00Z",
 5980          "LastModifiedDate": "2023-04-20T09:15:00Z"
 5981        },
 5982        {
 5983          "VulnerabilityID": "CVE-2022-4304",
 5984          "VendorIDs": [
 5985            "DSA-5343-1"
 5986          ],
 5987          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 5988          "PkgName": "libssl1.1",
 5989          "InstalledVersion": "1.1.1n-0+deb11u3",
 5990          "FixedVersion": "1.1.1n-0+deb11u4",
 5991          "Status": "fixed",
 5992          "Layer": {
 5993            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 5994            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 5995          },
 5996          "SeveritySource": "nvd",
 5997          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4304",
 5998          "DataSource": {
 5999            "ID": "debian",
 6000            "Name": "Debian Security Tracker",
 6001            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6002          },
 6003          "Title": "timing attack in RSA Decryption implementation",
 6004          "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.",
 6005          "Severity": "MEDIUM",
 6006          "CVSS": {
 6007            "ghsa": {
 6008              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
 6009              "V3Score": 5.9
 6010            },
 6011            "nvd": {
 6012              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
 6013              "V3Score": 5.9
 6014            },
 6015            "redhat": {
 6016              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
 6017              "V3Score": 5.9
 6018            }
 6019          },
 6020          "References": [
 6021            "https://access.redhat.com/errata/RHSA-2023:2165",
 6022            "https://access.redhat.com/security/cve/CVE-2022-4304",
 6023            "https://bugzilla.redhat.com/1960321",
 6024            "https://bugzilla.redhat.com/2164440",
 6025            "https://bugzilla.redhat.com/2164487",
 6026            "https://bugzilla.redhat.com/2164492",
 6027            "https://bugzilla.redhat.com/2164494",
 6028            "https://bugzilla.redhat.com/show_bug.cgi?id=2144000",
 6029            "https://bugzilla.redhat.com/show_bug.cgi?id=2144003",
 6030            "https://bugzilla.redhat.com/show_bug.cgi?id=2144006",
 6031            "https://bugzilla.redhat.com/show_bug.cgi?id=2144008",
 6032            "https://bugzilla.redhat.com/show_bug.cgi?id=2144010",
 6033            "https://bugzilla.redhat.com/show_bug.cgi?id=2144012",
 6034            "https://bugzilla.redhat.com/show_bug.cgi?id=2144015",
 6035            "https://bugzilla.redhat.com/show_bug.cgi?id=2144017",
 6036            "https://bugzilla.redhat.com/show_bug.cgi?id=2144019",
 6037            "https://bugzilla.redhat.com/show_bug.cgi?id=2145170",
 6038            "https://bugzilla.redhat.com/show_bug.cgi?id=2158412",
 6039            "https://bugzilla.redhat.com/show_bug.cgi?id=2164440",
 6040            "https://bugzilla.redhat.com/show_bug.cgi?id=2164487",
 6041            "https://bugzilla.redhat.com/show_bug.cgi?id=2164488",
 6042            "https://bugzilla.redhat.com/show_bug.cgi?id=2164492",
 6043            "https://bugzilla.redhat.com/show_bug.cgi?id=2164494",
 6044            "https://bugzilla.redhat.com/show_bug.cgi?id=2164497",
 6045            "https://bugzilla.redhat.com/show_bug.cgi?id=2164499",
 6046            "https://bugzilla.redhat.com/show_bug.cgi?id=2164500",
 6047            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203",
 6048            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304",
 6049            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450",
 6050            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215",
 6051            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216",
 6052            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217",
 6053            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286",
 6054            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401",
 6055            "https://errata.almalinux.org/9/ALSA-2023-2165.html",
 6056            "https://errata.rockylinux.org/RLSA-2023:0946",
 6057            "https://github.com/advisories/GHSA-p52g-cm5j-mjv4",
 6058            "https://linux.oracle.com/cve/CVE-2022-4304.html",
 6059            "https://linux.oracle.com/errata/ELSA-2023-2932.html",
 6060            "https://nvd.nist.gov/vuln/detail/CVE-2022-4304",
 6061            "https://rustsec.org/advisories/RUSTSEC-2023-0007.html",
 6062            "https://ubuntu.com/security/notices/USN-5844-1",
 6063            "https://www.cve.org/CVERecord?id=CVE-2022-4304",
 6064            "https://www.openssl.org/news/secadv/20230207.txt"
 6065          ],
 6066          "PublishedDate": "2023-02-08T20:15:00Z",
 6067          "LastModifiedDate": "2023-07-19T00:57:00Z"
 6068        },
 6069        {
 6070          "VulnerabilityID": "CVE-2023-0465",
 6071          "VendorIDs": [
 6072            "DSA-5417-1"
 6073          ],
 6074          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 6075          "PkgName": "libssl1.1",
 6076          "InstalledVersion": "1.1.1n-0+deb11u3",
 6077          "FixedVersion": "1.1.1n-0+deb11u5",
 6078          "Status": "fixed",
 6079          "Layer": {
 6080            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6081            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6082          },
 6083          "SeveritySource": "nvd",
 6084          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0465",
 6085          "DataSource": {
 6086            "ID": "debian",
 6087            "Name": "Debian Security Tracker",
 6088            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6089          },
 6090          "Title": "Invalid certificate policies in leaf certificates are silently ignored",
 6091          "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.",
 6092          "Severity": "MEDIUM",
 6093          "CweIDs": [
 6094            "CWE-295"
 6095          ],
 6096          "CVSS": {
 6097            "nvd": {
 6098              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
 6099              "V3Score": 5.3
 6100            },
 6101            "redhat": {
 6102              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
 6103              "V3Score": 5.3
 6104            }
 6105          },
 6106          "References": [
 6107            "https://access.redhat.com/errata/RHSA-2023:3722",
 6108            "https://access.redhat.com/security/cve/CVE-2023-0465",
 6109            "https://bugzilla.redhat.com/2181082",
 6110            "https://bugzilla.redhat.com/2182561",
 6111            "https://bugzilla.redhat.com/2182565",
 6112            "https://bugzilla.redhat.com/2188461",
 6113            "https://bugzilla.redhat.com/2207947",
 6114            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465",
 6115            "https://errata.almalinux.org/9/ALSA-2023-3722.html",
 6116            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a",
 6117            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb",
 6118            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95",
 6119            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c",
 6120            "https://linux.oracle.com/cve/CVE-2023-0465.html",
 6121            "https://linux.oracle.com/errata/ELSA-2023-3722.html",
 6122            "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html",
 6123            "https://nvd.nist.gov/vuln/detail/CVE-2023-0465",
 6124            "https://security.netapp.com/advisory/ntap-20230414-0001/",
 6125            "https://ubuntu.com/security/notices/USN-6039-1",
 6126            "https://www.cve.org/CVERecord?id=CVE-2023-0465",
 6127            "https://www.debian.org/security/2023/dsa-5417",
 6128            "https://www.openssl.org/news/secadv/20230328.txt"
 6129          ],
 6130          "PublishedDate": "2023-03-28T15:15:00Z",
 6131          "LastModifiedDate": "2023-06-08T19:15:00Z"
 6132        },
 6133        {
 6134          "VulnerabilityID": "CVE-2023-0466",
 6135          "VendorIDs": [
 6136            "DSA-5417-1"
 6137          ],
 6138          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 6139          "PkgName": "libssl1.1",
 6140          "InstalledVersion": "1.1.1n-0+deb11u3",
 6141          "FixedVersion": "1.1.1n-0+deb11u5",
 6142          "Status": "fixed",
 6143          "Layer": {
 6144            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6145            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6146          },
 6147          "SeveritySource": "nvd",
 6148          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0466",
 6149          "DataSource": {
 6150            "ID": "debian",
 6151            "Name": "Debian Security Tracker",
 6152            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6153          },
 6154          "Title": "Certificate policy check not enabled",
 6155          "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.",
 6156          "Severity": "MEDIUM",
 6157          "CweIDs": [
 6158            "CWE-295"
 6159          ],
 6160          "CVSS": {
 6161            "nvd": {
 6162              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
 6163              "V3Score": 5.3
 6164            },
 6165            "redhat": {
 6166              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
 6167              "V3Score": 5.3
 6168            }
 6169          },
 6170          "References": [
 6171            "https://access.redhat.com/errata/RHSA-2023:3722",
 6172            "https://access.redhat.com/security/cve/CVE-2023-0466",
 6173            "https://bugzilla.redhat.com/2181082",
 6174            "https://bugzilla.redhat.com/2182561",
 6175            "https://bugzilla.redhat.com/2182565",
 6176            "https://bugzilla.redhat.com/2188461",
 6177            "https://bugzilla.redhat.com/2207947",
 6178            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466",
 6179            "https://errata.almalinux.org/9/ALSA-2023-3722.html",
 6180            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a",
 6181            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908",
 6182            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72",
 6183            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061",
 6184            "https://linux.oracle.com/cve/CVE-2023-0466.html",
 6185            "https://linux.oracle.com/errata/ELSA-2023-3722.html",
 6186            "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html",
 6187            "https://nvd.nist.gov/vuln/detail/CVE-2023-0466",
 6188            "https://security.netapp.com/advisory/ntap-20230414-0001/",
 6189            "https://ubuntu.com/security/notices/USN-6039-1",
 6190            "https://www.cve.org/CVERecord?id=CVE-2023-0466",
 6191            "https://www.debian.org/security/2023/dsa-5417",
 6192            "https://www.openssl.org/news/secadv/20230328.txt"
 6193          ],
 6194          "PublishedDate": "2023-03-28T15:15:00Z",
 6195          "LastModifiedDate": "2023-06-08T19:15:00Z"
 6196        },
 6197        {
 6198          "VulnerabilityID": "CVE-2023-3446",
 6199          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 6200          "PkgName": "libssl1.1",
 6201          "InstalledVersion": "1.1.1n-0+deb11u3",
 6202          "Status": "fix_deferred",
 6203          "Layer": {
 6204            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6205            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6206          },
 6207          "SeveritySource": "nvd",
 6208          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-3446",
 6209          "DataSource": {
 6210            "ID": "debian",
 6211            "Name": "Debian Security Tracker",
 6212            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6213          },
 6214          "Title": "Excessive time spent checking DH keys and parameters",
 6215          "Description": "Issue summary: Checking excessively long DH keys or parameters may be very slow.\n\nImpact summary: Applications that use the functions DH_check(), DH_check_ex()\nor EVP_PKEY_param_check() to check a DH key or DH parameters may experience long\ndelays. Where the key or parameters that are being checked have been obtained\nfrom an untrusted source this may lead to a Denial of Service.\n\nThe function DH_check() performs various checks on DH parameters. One of those\nchecks confirms that the modulus ('p' parameter) is not too large. Trying to use\na very large modulus is slow and OpenSSL will not normally use a modulus which\nis over 10,000 bits in length.\n\nHowever the DH_check() function checks numerous aspects of the key or parameters\nthat have been supplied. Some of those checks use the supplied modulus value\neven if it has already been found to be too large.\n\nAn application that calls DH_check() and supplies a key or parameters obtained\nfrom an untrusted source could be vulernable to a Denial of Service attack.\n\nThe function DH_check() is itself called by a number of other OpenSSL functions.\nAn application calling any of those other functions may similarly be affected.\nThe other functions affected by this are DH_check_ex() and\nEVP_PKEY_param_check().\n\nAlso vulnerable are the OpenSSL dhparam and pkeyparam command line applications\nwhen using the '-check' option.\n\nThe OpenSSL SSL/TLS implementation is not affected by this issue.\nThe OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.",
 6216          "Severity": "MEDIUM",
 6217          "CweIDs": [
 6218            "CWE-1333"
 6219          ],
 6220          "CVSS": {
 6221            "nvd": {
 6222              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
 6223              "V3Score": 5.3
 6224            },
 6225            "redhat": {
 6226              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
 6227              "V3Score": 5.3
 6228            }
 6229          },
 6230          "References": [
 6231            "http://www.openwall.com/lists/oss-security/2023/07/19/4",
 6232            "http://www.openwall.com/lists/oss-security/2023/07/19/5",
 6233            "http://www.openwall.com/lists/oss-security/2023/07/19/6",
 6234            "http://www.openwall.com/lists/oss-security/2023/07/31/1",
 6235            "https://access.redhat.com/security/cve/CVE-2023-3446",
 6236            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-3446",
 6237            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1fa20cf2f506113c761777127a38bce5068740eb",
 6238            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8780a896543a654e757db1b9396383f9d8095528",
 6239            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9a0a4d3c1e7138915563c0df4fe6a3f9377b839c",
 6240            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc9867c1e03c22ebf56943be205202e576aabf23",
 6241            "https://nvd.nist.gov/vuln/detail/CVE-2023-3446",
 6242            "https://security.netapp.com/advisory/ntap-20230803-0011/",
 6243            "https://www.cve.org/CVERecord?id=CVE-2023-3446",
 6244            "https://www.openssl.org/news/secadv/20230719.txt"
 6245          ],
 6246          "PublishedDate": "2023-07-19T12:15:00Z",
 6247          "LastModifiedDate": "2023-08-03T15:15:00Z"
 6248        },
 6249        {
 6250          "VulnerabilityID": "CVE-2023-3817",
 6251          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 6252          "PkgName": "libssl1.1",
 6253          "InstalledVersion": "1.1.1n-0+deb11u3",
 6254          "Status": "fix_deferred",
 6255          "Layer": {
 6256            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6257            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6258          },
 6259          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-3817",
 6260          "DataSource": {
 6261            "ID": "debian",
 6262            "Name": "Debian Security Tracker",
 6263            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6264          },
 6265          "Title": "Excessive time spent checking DH q parameter value",
 6266          "Description": "Issue summary: Checking excessively long DH keys or parameters may be very slow.\n\nImpact summary: Applications that use the functions DH_check(), DH_check_ex()\nor EVP_PKEY_param_check() to check a DH key or DH parameters may experience long\ndelays. Where the key or parameters that are being checked have been obtained\nfrom an untrusted source this may lead to a Denial of Service.\n\nThe function DH_check() performs various checks on DH parameters. After fixing\nCVE-2023-3446 it was discovered that a large q parameter value can also trigger\nan overly long computation during some of these checks. A correct q value,\nif present, cannot be larger than the modulus p parameter, thus it is\nunnecessary to perform these checks if q is larger than p.\n\nAn application that calls DH_check() and supplies a key or parameters obtained\nfrom an untrusted source could be vulnerable to a Denial of Service attack.\n\nThe function DH_check() is itself called by a number of other OpenSSL functions.\nAn application calling any of those other functions may similarly be affected.\nThe other functions affected by this are DH_check_ex() and\nEVP_PKEY_param_check().\n\nAlso vulnerable are the OpenSSL dhparam and pkeyparam command line applications\nwhen using the \"-check\" option.\n\nThe OpenSSL SSL/TLS implementation is not affected by this issue.\n\nThe OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.",
 6267          "Severity": "MEDIUM",
 6268          "CVSS": {
 6269            "redhat": {
 6270              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
 6271              "V3Score": 5.3
 6272            }
 6273          },
 6274          "References": [
 6275            "http://seclists.org/fulldisclosure/2023/Jul/43",
 6276            "http://www.openwall.com/lists/oss-security/2023/07/31/1",
 6277            "https://access.redhat.com/security/cve/CVE-2023-3817",
 6278            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-3817",
 6279            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a1eb62c29db6cb5eec707f9338aee00f44e26f5",
 6280            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=869ad69aadd985c7b8ca6f4e5dd0eb274c9f3644",
 6281            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9002fd07327a91f35ba6c1307e71fa6fd4409b7f",
 6282            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=91ddeba0f2269b017dc06c46c993a788974b1aa5",
 6283            "https://nvd.nist.gov/vuln/detail/CVE-2023-3817",
 6284            "https://www.cve.org/CVERecord?id=CVE-2023-3817",
 6285            "https://www.openssl.org/news/secadv/20230731.txt"
 6286          ],
 6287          "PublishedDate": "2023-07-31T16:15:00Z",
 6288          "LastModifiedDate": "2023-08-01T11:15:00Z"
 6289        },
 6290        {
 6291          "VulnerabilityID": "CVE-2007-6755",
 6292          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 6293          "PkgName": "libssl1.1",
 6294          "InstalledVersion": "1.1.1n-0+deb11u3",
 6295          "Status": "affected",
 6296          "Layer": {
 6297            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6298            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6299          },
 6300          "SeveritySource": "debian",
 6301          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755",
 6302          "DataSource": {
 6303            "ID": "debian",
 6304            "Name": "Debian Security Tracker",
 6305            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6306          },
 6307          "Title": "Dual_EC_DRBG: weak pseudo random number generator",
 6308          "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.",
 6309          "Severity": "LOW",
 6310          "CweIDs": [
 6311            "CWE-327"
 6312          ],
 6313          "CVSS": {
 6314            "nvd": {
 6315              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N",
 6316              "V2Score": 5.8
 6317            },
 6318            "redhat": {
 6319              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N",
 6320              "V2Score": 5.8
 6321            }
 6322          },
 6323          "References": [
 6324            "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/",
 6325            "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html",
 6326            "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html",
 6327            "http://rump2007.cr.yp.to/15-shumow.pdf",
 6328            "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/",
 6329            "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect",
 6330            "http://www.securityfocus.com/bid/63657",
 6331            "https://access.redhat.com/security/cve/CVE-2007-6755",
 6332            "https://nvd.nist.gov/vuln/detail/CVE-2007-6755",
 6333            "https://www.cve.org/CVERecord?id=CVE-2007-6755",
 6334            "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html"
 6335          ],
 6336          "PublishedDate": "2013-10-11T22:55:00Z",
 6337          "LastModifiedDate": "2022-11-01T14:44:00Z"
 6338        },
 6339        {
 6340          "VulnerabilityID": "CVE-2010-0928",
 6341          "PkgID": "libssl1.1@1.1.1n-0+deb11u3",
 6342          "PkgName": "libssl1.1",
 6343          "InstalledVersion": "1.1.1n-0+deb11u3",
 6344          "Status": "affected",
 6345          "Layer": {
 6346            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6347            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6348          },
 6349          "SeveritySource": "debian",
 6350          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928",
 6351          "DataSource": {
 6352            "ID": "debian",
 6353            "Name": "Debian Security Tracker",
 6354            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6355          },
 6356          "Title": "openssl: RSA authentication weakness",
 6357          "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.\"",
 6358          "Severity": "LOW",
 6359          "CweIDs": [
 6360            "CWE-310"
 6361          ],
 6362          "CVSS": {
 6363            "nvd": {
 6364              "V2Vector": "AV:L/AC:H/Au:N/C:C/I:N/A:N",
 6365              "V2Score": 4
 6366            }
 6367          },
 6368          "References": [
 6369            "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/",
 6370            "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf",
 6371            "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html",
 6372            "http://www.osvdb.org/62808",
 6373            "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/",
 6374            "https://access.redhat.com/security/cve/CVE-2010-0928",
 6375            "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750",
 6376            "https://nvd.nist.gov/vuln/detail/CVE-2010-0928",
 6377            "https://www.cve.org/CVERecord?id=CVE-2010-0928"
 6378          ],
 6379          "PublishedDate": "2010-03-05T19:30:00Z",
 6380          "LastModifiedDate": "2017-08-17T01:32:00Z"
 6381        },
 6382        {
 6383          "VulnerabilityID": "CVE-2022-3821",
 6384          "PkgID": "libsystemd0@247.3-7+deb11u1",
 6385          "PkgName": "libsystemd0",
 6386          "InstalledVersion": "247.3-7+deb11u1",
 6387          "FixedVersion": "247.3-7+deb11u2",
 6388          "Status": "fixed",
 6389          "Layer": {
 6390            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6391            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6392          },
 6393          "SeveritySource": "nvd",
 6394          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821",
 6395          "DataSource": {
 6396            "ID": "debian",
 6397            "Name": "Debian Security Tracker",
 6398            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6399          },
 6400          "Title": "buffer overrun in format_timespan() function",
 6401          "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.",
 6402          "Severity": "MEDIUM",
 6403          "CweIDs": [
 6404            "CWE-193"
 6405          ],
 6406          "CVSS": {
 6407            "nvd": {
 6408              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
 6409              "V3Score": 5.5
 6410            },
 6411            "redhat": {
 6412              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
 6413              "V3Score": 5.5
 6414            }
 6415          },
 6416          "References": [
 6417            "https://access.redhat.com/errata/RHSA-2023:0336",
 6418            "https://access.redhat.com/security/cve/CVE-2022-3821",
 6419            "https://bugzilla.redhat.com/2139327",
 6420            "https://bugzilla.redhat.com/show_bug.cgi?id=2139327",
 6421            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821",
 6422            "https://errata.almalinux.org/9/ALSA-2023-0336.html",
 6423            "https://errata.rockylinux.org/RLSA-2023:0336",
 6424            "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e",
 6425            "https://github.com/systemd/systemd/issues/23928",
 6426            "https://github.com/systemd/systemd/pull/23933",
 6427            "https://linux.oracle.com/cve/CVE-2022-3821.html",
 6428            "https://linux.oracle.com/errata/ELSA-2023-0336.html",
 6429            "https://lists.debian.org/debian-lts-announce/2023/06/msg00036.html",
 6430            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/",
 6431            "https://nvd.nist.gov/vuln/detail/CVE-2022-3821",
 6432            "https://security.gentoo.org/glsa/202305-15",
 6433            "https://ubuntu.com/security/notices/USN-5928-1",
 6434            "https://www.cve.org/CVERecord?id=CVE-2022-3821"
 6435          ],
 6436          "PublishedDate": "2022-11-08T22:15:00Z",
 6437          "LastModifiedDate": "2023-06-29T23:15:00Z"
 6438        },
 6439        {
 6440          "VulnerabilityID": "CVE-2022-4415",
 6441          "PkgID": "libsystemd0@247.3-7+deb11u1",
 6442          "PkgName": "libsystemd0",
 6443          "InstalledVersion": "247.3-7+deb11u1",
 6444          "FixedVersion": "247.3-7+deb11u2",
 6445          "Status": "fixed",
 6446          "Layer": {
 6447            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6448            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6449          },
 6450          "SeveritySource": "nvd",
 6451          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415",
 6452          "DataSource": {
 6453            "ID": "debian",
 6454            "Name": "Debian Security Tracker",
 6455            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6456          },
 6457          "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting",
 6458          "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.",
 6459          "Severity": "MEDIUM",
 6460          "CVSS": {
 6461            "nvd": {
 6462              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
 6463              "V3Score": 5.5
 6464            },
 6465            "redhat": {
 6466              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
 6467              "V3Score": 5.5
 6468            }
 6469          },
 6470          "References": [
 6471            "https://access.redhat.com/errata/RHSA-2023:0954",
 6472            "https://access.redhat.com/security/cve/CVE-2022-4415",
 6473            "https://bugzilla.redhat.com/2149063",
 6474            "https://bugzilla.redhat.com/2155515",
 6475            "https://bugzilla.redhat.com/show_bug.cgi?id=2149063",
 6476            "https://bugzilla.redhat.com/show_bug.cgi?id=2155515",
 6477            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415",
 6478            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873",
 6479            "https://errata.almalinux.org/9/ALSA-2023-0954.html",
 6480            "https://errata.rockylinux.org/RLSA-2023:0954",
 6481            "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c",
 6482            "https://linux.oracle.com/cve/CVE-2022-4415.html",
 6483            "https://linux.oracle.com/errata/ELSA-2023-0954.html",
 6484            "https://nvd.nist.gov/vuln/detail/CVE-2022-4415",
 6485            "https://ubuntu.com/security/notices/USN-5928-1",
 6486            "https://www.cve.org/CVERecord?id=CVE-2022-4415",
 6487            "https://www.openwall.com/lists/oss-security/2022/12/21/3"
 6488          ],
 6489          "PublishedDate": "2023-01-11T15:15:00Z",
 6490          "LastModifiedDate": "2023-02-02T16:19:00Z"
 6491        },
 6492        {
 6493          "VulnerabilityID": "CVE-2013-4392",
 6494          "PkgID": "libsystemd0@247.3-7+deb11u1",
 6495          "PkgName": "libsystemd0",
 6496          "InstalledVersion": "247.3-7+deb11u1",
 6497          "Status": "affected",
 6498          "Layer": {
 6499            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6500            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6501          },
 6502          "SeveritySource": "debian",
 6503          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392",
 6504          "DataSource": {
 6505            "ID": "debian",
 6506            "Name": "Debian Security Tracker",
 6507            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6508          },
 6509          "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts",
 6510          "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.",
 6511          "Severity": "LOW",
 6512          "CweIDs": [
 6513            "CWE-59"
 6514          ],
 6515          "CVSS": {
 6516            "nvd": {
 6517              "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N",
 6518              "V2Score": 3.3
 6519            },
 6520            "redhat": {
 6521              "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N",
 6522              "V2Score": 3.3
 6523            }
 6524          },
 6525          "References": [
 6526            "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357",
 6527            "http://www.openwall.com/lists/oss-security/2013/10/01/9",
 6528            "https://access.redhat.com/security/cve/CVE-2013-4392",
 6529            "https://bugzilla.redhat.com/show_bug.cgi?id=859060",
 6530            "https://nvd.nist.gov/vuln/detail/CVE-2013-4392",
 6531            "https://www.cve.org/CVERecord?id=CVE-2013-4392"
 6532          ],
 6533          "PublishedDate": "2013-10-28T22:55:00Z",
 6534          "LastModifiedDate": "2022-01-31T17:49:00Z"
 6535        },
 6536        {
 6537          "VulnerabilityID": "CVE-2020-13529",
 6538          "PkgID": "libsystemd0@247.3-7+deb11u1",
 6539          "PkgName": "libsystemd0",
 6540          "InstalledVersion": "247.3-7+deb11u1",
 6541          "Status": "affected",
 6542          "Layer": {
 6543            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6544            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6545          },
 6546          "SeveritySource": "debian",
 6547          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529",
 6548          "DataSource": {
 6549            "ID": "debian",
 6550            "Name": "Debian Security Tracker",
 6551            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6552          },
 6553          "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured",
 6554          "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.",
 6555          "Severity": "LOW",
 6556          "CweIDs": [
 6557            "CWE-290"
 6558          ],
 6559          "CVSS": {
 6560            "nvd": {
 6561              "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P",
 6562              "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H",
 6563              "V2Score": 2.9,
 6564              "V3Score": 6.1
 6565            },
 6566            "redhat": {
 6567              "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H",
 6568              "V3Score": 6.1
 6569            }
 6570          },
 6571          "References": [
 6572            "http://www.openwall.com/lists/oss-security/2021/08/04/2",
 6573            "http://www.openwall.com/lists/oss-security/2021/08/17/3",
 6574            "http://www.openwall.com/lists/oss-security/2021/09/07/3",
 6575            "https://access.redhat.com/security/cve/CVE-2020-13529",
 6576            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529",
 6577            "https://linux.oracle.com/cve/CVE-2020-13529.html",
 6578            "https://linux.oracle.com/errata/ELSA-2021-4361.html",
 6579            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/",
 6580            "https://nvd.nist.gov/vuln/detail/CVE-2020-13529",
 6581            "https://security.gentoo.org/glsa/202107-48",
 6582            "https://security.netapp.com/advisory/ntap-20210625-0005/",
 6583            "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142",
 6584            "https://ubuntu.com/security/notices/USN-5013-1",
 6585            "https://ubuntu.com/security/notices/USN-5013-2",
 6586            "https://www.cve.org/CVERecord?id=CVE-2020-13529"
 6587          ],
 6588          "PublishedDate": "2021-05-10T16:15:00Z",
 6589          "LastModifiedDate": "2022-10-07T02:59:00Z"
 6590        },
 6591        {
 6592          "VulnerabilityID": "CVE-2023-31437",
 6593          "PkgID": "libsystemd0@247.3-7+deb11u1",
 6594          "PkgName": "libsystemd0",
 6595          "InstalledVersion": "247.3-7+deb11u1",
 6596          "Status": "affected",
 6597          "Layer": {
 6598            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6599            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6600          },
 6601          "SeveritySource": "debian",
 6602          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31437",
 6603          "DataSource": {
 6604            "ID": "debian",
 6605            "Name": "Debian Security Tracker",
 6606            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6607          },
 6608          "Title": "An issue was discovered in systemd 253. An attacker can modify a seale ...",
 6609          "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.\"",
 6610          "Severity": "LOW",
 6611          "CweIDs": [
 6612            "CWE-354"
 6613          ],
 6614          "CVSS": {
 6615            "nvd": {
 6616              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
 6617              "V3Score": 5.3
 6618            }
 6619          },
 6620          "References": [
 6621            "https://github.com/kastel-security/Journald",
 6622            "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf",
 6623            "https://github.com/systemd/systemd/releases"
 6624          ],
 6625          "PublishedDate": "2023-06-13T17:15:00Z",
 6626          "LastModifiedDate": "2023-06-23T19:16:00Z"
 6627        },
 6628        {
 6629          "VulnerabilityID": "CVE-2023-31438",
 6630          "PkgID": "libsystemd0@247.3-7+deb11u1",
 6631          "PkgName": "libsystemd0",
 6632          "InstalledVersion": "247.3-7+deb11u1",
 6633          "Status": "affected",
 6634          "Layer": {
 6635            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6636            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6637          },
 6638          "SeveritySource": "debian",
 6639          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31438",
 6640          "DataSource": {
 6641            "ID": "debian",
 6642            "Name": "Debian Security Tracker",
 6643            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6644          },
 6645          "Title": "An issue was discovered in systemd 253. An attacker can truncate a sea ...",
 6646          "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.\"",
 6647          "Severity": "LOW",
 6648          "CweIDs": [
 6649            "CWE-354"
 6650          ],
 6651          "CVSS": {
 6652            "nvd": {
 6653              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
 6654              "V3Score": 5.3
 6655            }
 6656          },
 6657          "References": [
 6658            "https://github.com/kastel-security/Journald",
 6659            "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf",
 6660            "https://github.com/systemd/systemd/releases"
 6661          ],
 6662          "PublishedDate": "2023-06-13T17:15:00Z",
 6663          "LastModifiedDate": "2023-06-23T19:16:00Z"
 6664        },
 6665        {
 6666          "VulnerabilityID": "CVE-2023-31439",
 6667          "PkgID": "libsystemd0@247.3-7+deb11u1",
 6668          "PkgName": "libsystemd0",
 6669          "InstalledVersion": "247.3-7+deb11u1",
 6670          "Status": "affected",
 6671          "Layer": {
 6672            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6673            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6674          },
 6675          "SeveritySource": "debian",
 6676          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31439",
 6677          "DataSource": {
 6678            "ID": "debian",
 6679            "Name": "Debian Security Tracker",
 6680            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6681          },
 6682          "Title": "An issue was discovered in systemd 253. An attacker can modify the con ...",
 6683          "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.\"",
 6684          "Severity": "LOW",
 6685          "CweIDs": [
 6686            "CWE-354"
 6687          ],
 6688          "CVSS": {
 6689            "nvd": {
 6690              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
 6691              "V3Score": 5.3
 6692            }
 6693          },
 6694          "References": [
 6695            "https://github.com/kastel-security/Journald",
 6696            "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf",
 6697            "https://github.com/systemd/systemd/releases"
 6698          ],
 6699          "PublishedDate": "2023-06-13T17:15:00Z",
 6700          "LastModifiedDate": "2023-06-23T19:15:00Z"
 6701        },
 6702        {
 6703          "VulnerabilityID": "CVE-2021-46848",
 6704          "PkgID": "libtasn1-6@4.16.0-2",
 6705          "PkgName": "libtasn1-6",
 6706          "InstalledVersion": "4.16.0-2",
 6707          "FixedVersion": "4.16.0-2+deb11u1",
 6708          "Status": "fixed",
 6709          "Layer": {
 6710            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
 6711            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
 6712          },
 6713          "SeveritySource": "nvd",
 6714          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-46848",
 6715          "DataSource": {
 6716            "ID": "debian",
 6717            "Name": "Debian Security Tracker",
 6718            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6719          },
 6720          "Title": "libtasn1: Out-of-bound access in ETYPE_OK",
 6721          "Description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.",
 6722          "Severity": "CRITICAL",
 6723          "CweIDs": [
 6724            "CWE-125"
 6725          ],
 6726          "CVSS": {
 6727            "nvd": {
 6728              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H",
 6729              "V3Score": 9.1
 6730            },
 6731            "redhat": {
 6732              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
 6733              "V3Score": 5.9
 6734            }
 6735          },
 6736          "References": [
 6737            "https://access.redhat.com/errata/RHSA-2023:0343",
 6738            "https://access.redhat.com/security/cve/CVE-2021-46848",
 6739            "https://bugs.gentoo.org/866237",
 6740            "https://bugzilla.redhat.com/2140058",
 6741            "https://bugzilla.redhat.com/show_bug.cgi?id=2140058",
 6742            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848",
 6743            "https://errata.almalinux.org/9/ALSA-2023-0343.html",
 6744            "https://errata.rockylinux.org/RLSA-2023:0343",
 6745            "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5",
 6746            "https://gitlab.com/gnutls/libtasn1/-/issues/32",
 6747            "https://linux.oracle.com/cve/CVE-2021-46848.html",
 6748            "https://linux.oracle.com/errata/ELSA-2023-0343.html",
 6749            "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html",
 6750            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/",
 6751            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/",
 6752            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/",
 6753            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/",
 6754            "https://nvd.nist.gov/vuln/detail/CVE-2021-46848",
 6755            "https://security.netapp.com/advisory/ntap-20221118-0006/",
 6756            "https://ubuntu.com/security/notices/USN-5707-1",
 6757            "https://www.cve.org/CVERecord?id=CVE-2021-46848"
 6758          ],
 6759          "PublishedDate": "2022-10-24T14:15:00Z",
 6760          "LastModifiedDate": "2023-01-20T13:55:00Z"
 6761        },
 6762        {
 6763          "VulnerabilityID": "CVE-2022-3970",
 6764          "VendorIDs": [
 6765            "DSA-5333-1"
 6766          ],
 6767          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 6768          "PkgName": "libtiff5",
 6769          "InstalledVersion": "4.2.0-1+deb11u1",
 6770          "FixedVersion": "4.2.0-1+deb11u3",
 6771          "Status": "fixed",
 6772          "Layer": {
 6773            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 6774            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 6775          },
 6776          "SeveritySource": "nvd",
 6777          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3970",
 6778          "DataSource": {
 6779            "ID": "debian",
 6780            "Name": "Debian Security Tracker",
 6781            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6782          },
 6783          "Title": "integer overflow in function TIFFReadRGBATileExt of the file",
 6784          "Description": "A vulnerability was found in LibTIFF. It has been classified as critical. This affects the function TIFFReadRGBATileExt of the file libtiff/tif_getimage.c. The manipulation leads to integer overflow. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. The name of the patch is 227500897dfb07fb7d27f7aa570050e62617e3be. It is recommended to apply a patch to fix this issue. The identifier VDB-213549 was assigned to this vulnerability.",
 6785          "Severity": "HIGH",
 6786          "CweIDs": [
 6787            "CWE-189",
 6788            "CWE-190"
 6789          ],
 6790          "CVSS": {
 6791            "nvd": {
 6792              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 6793              "V3Score": 8.8
 6794            },
 6795            "redhat": {
 6796              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 6797              "V3Score": 8.8
 6798            }
 6799          },
 6800          "References": [
 6801            "https://access.redhat.com/errata/RHSA-2023:2340",
 6802            "https://access.redhat.com/security/cve/CVE-2022-3970",
 6803            "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=53137",
 6804            "https://bugzilla.redhat.com/2142734",
 6805            "https://bugzilla.redhat.com/2142736",
 6806            "https://bugzilla.redhat.com/2142738",
 6807            "https://bugzilla.redhat.com/2142740",
 6808            "https://bugzilla.redhat.com/2142741",
 6809            "https://bugzilla.redhat.com/2142742",
 6810            "https://bugzilla.redhat.com/2148918",
 6811            "https://bugzilla.redhat.com/2176220",
 6812            "https://bugzilla.redhat.com/2187139",
 6813            "https://bugzilla.redhat.com/2187141",
 6814            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3970",
 6815            "https://errata.almalinux.org/9/ALSA-2023-2340.html",
 6816            "https://gitlab.com/libtiff/libtiff/-/commit/227500897dfb07fb7d27f7aa570050e62617e3be",
 6817            "https://linux.oracle.com/cve/CVE-2022-3970.html",
 6818            "https://linux.oracle.com/errata/ELSA-2023-2883.html",
 6819            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 6820            "https://nvd.nist.gov/vuln/detail/CVE-2022-3970",
 6821            "https://oss-fuzz.com/download?testcase_id=5738253143900160",
 6822            "https://security.netapp.com/advisory/ntap-20221215-0009/",
 6823            "https://ubuntu.com/security/notices/USN-5743-1",
 6824            "https://ubuntu.com/security/notices/USN-5743-2",
 6825            "https://ubuntu.com/security/notices/USN-5841-1",
 6826            "https://vuldb.com/?id.213549",
 6827            "https://www.cve.org/CVERecord?id=CVE-2022-3970"
 6828          ],
 6829          "PublishedDate": "2022-11-13T08:15:00Z",
 6830          "LastModifiedDate": "2023-03-01T16:35:00Z"
 6831        },
 6832        {
 6833          "VulnerabilityID": "CVE-2023-25434",
 6834          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 6835          "PkgName": "libtiff5",
 6836          "InstalledVersion": "4.2.0-1+deb11u1",
 6837          "FixedVersion": "4.2.0-1+deb11u4",
 6838          "Status": "fixed",
 6839          "Layer": {
 6840            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 6841            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 6842          },
 6843          "SeveritySource": "nvd",
 6844          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-25434",
 6845          "DataSource": {
 6846            "ID": "debian",
 6847            "Name": "Debian Security Tracker",
 6848            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6849          },
 6850          "Title": "heap-buffer overflow via extractContigSamplesBytes() at /libtiff/tools/tiffcrop.c",
 6851          "Description": "libtiff 4.5.0 is vulnerable to Buffer Overflow via extractContigSamplesBytes() at /libtiff/tools/tiffcrop.c:3215.",
 6852          "Severity": "HIGH",
 6853          "CweIDs": [
 6854            "CWE-120"
 6855          ],
 6856          "CVSS": {
 6857            "nvd": {
 6858              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 6859              "V3Score": 8.8
 6860            },
 6861            "redhat": {
 6862              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 6863              "V3Score": 5.5
 6864            }
 6865          },
 6866          "References": [
 6867            "https://access.redhat.com/security/cve/CVE-2023-25434",
 6868            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-25434",
 6869            "https://gitlab.com/libtiff/libtiff/-/issues/519",
 6870            "https://gitlab.com/libtiff/libtiff/-/merge_requests/465",
 6871            "https://nvd.nist.gov/vuln/detail/CVE-2023-25434",
 6872            "https://www.cve.org/CVERecord?id=CVE-2023-25434"
 6873          ],
 6874          "PublishedDate": "2023-06-14T20:15:00Z",
 6875          "LastModifiedDate": "2023-06-23T16:25:00Z"
 6876        },
 6877        {
 6878          "VulnerabilityID": "CVE-2022-1354",
 6879          "VendorIDs": [
 6880            "DSA-5333-1"
 6881          ],
 6882          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 6883          "PkgName": "libtiff5",
 6884          "InstalledVersion": "4.2.0-1+deb11u1",
 6885          "FixedVersion": "4.2.0-1+deb11u3",
 6886          "Status": "fixed",
 6887          "Layer": {
 6888            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 6889            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 6890          },
 6891          "SeveritySource": "nvd",
 6892          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1354",
 6893          "DataSource": {
 6894            "ID": "debian",
 6895            "Name": "Debian Security Tracker",
 6896            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6897          },
 6898          "Title": "libtiff: heap-buffer-overflow in TIFFReadRawDataStriped() in tiffinfo.c",
 6899          "Description": "A heap buffer overflow flaw was found in Libtiffs' tiffinfo.c in TIFFReadRawDataStriped() function. This flaw allows an attacker to pass a crafted TIFF file to the tiffinfo tool, triggering a heap buffer overflow issue and causing a crash that leads to a denial of service.",
 6900          "Severity": "MEDIUM",
 6901          "CweIDs": [
 6902            "CWE-125"
 6903          ],
 6904          "CVSS": {
 6905            "nvd": {
 6906              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 6907              "V3Score": 5.5
 6908            },
 6909            "redhat": {
 6910              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 6911              "V3Score": 5.5
 6912            }
 6913          },
 6914          "References": [
 6915            "https://access.redhat.com/errata/RHSA-2022:8194",
 6916            "https://access.redhat.com/security/cve/CVE-2022-1354",
 6917            "https://bugzilla.redhat.com/2042603",
 6918            "https://bugzilla.redhat.com/2054494",
 6919            "https://bugzilla.redhat.com/2054495",
 6920            "https://bugzilla.redhat.com/2064145",
 6921            "https://bugzilla.redhat.com/2064146",
 6922            "https://bugzilla.redhat.com/2064148",
 6923            "https://bugzilla.redhat.com/2064406",
 6924            "https://bugzilla.redhat.com/2064411",
 6925            "https://bugzilla.redhat.com/2074404",
 6926            "https://bugzilla.redhat.com/2074415",
 6927            "https://bugzilla.redhat.com/show_bug.cgi?id=2074404",
 6928            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1354",
 6929            "https://errata.almalinux.org/9/ALSA-2022-8194.html",
 6930            "https://gitlab.com/libtiff/libtiff/-/commit/87f580f39011109b3bb5f6eca13fac543a542798",
 6931            "https://gitlab.com/libtiff/libtiff/-/issues/319",
 6932            "https://linux.oracle.com/cve/CVE-2022-1354.html",
 6933            "https://linux.oracle.com/errata/ELSA-2022-8194.html",
 6934            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 6935            "https://nvd.nist.gov/vuln/detail/CVE-2022-1354",
 6936            "https://security.gentoo.org/glsa/202210-10",
 6937            "https://security.netapp.com/advisory/ntap-20221014-0007/",
 6938            "https://ubuntu.com/security/notices/USN-5619-1",
 6939            "https://www.cve.org/CVERecord?id=CVE-2022-1354",
 6940            "https://www.debian.org/security/2023/dsa-5333"
 6941          ],
 6942          "PublishedDate": "2022-08-31T16:15:00Z",
 6943          "LastModifiedDate": "2023-02-23T15:50:00Z"
 6944        },
 6945        {
 6946          "VulnerabilityID": "CVE-2022-1355",
 6947          "VendorIDs": [
 6948            "DSA-5333-1"
 6949          ],
 6950          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 6951          "PkgName": "libtiff5",
 6952          "InstalledVersion": "4.2.0-1+deb11u1",
 6953          "FixedVersion": "4.2.0-1+deb11u3",
 6954          "Status": "fixed",
 6955          "Layer": {
 6956            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 6957            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 6958          },
 6959          "SeveritySource": "nvd",
 6960          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1355",
 6961          "DataSource": {
 6962            "ID": "debian",
 6963            "Name": "Debian Security Tracker",
 6964            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 6965          },
 6966          "Title": "stack-buffer-overflow in tiffcp.c in main()",
 6967          "Description": "A stack buffer overflow flaw was found in Libtiffs' tiffcp.c in main() function. This flaw allows an attacker to pass a crafted TIFF file to the tiffcp tool, triggering a stack buffer overflow issue, possibly corrupting the memory, and causing a crash that leads to a denial of service.",
 6968          "Severity": "MEDIUM",
 6969          "CweIDs": [
 6970            "CWE-121"
 6971          ],
 6972          "CVSS": {
 6973            "nvd": {
 6974              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H",
 6975              "V3Score": 6.1
 6976            },
 6977            "redhat": {
 6978              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:H",
 6979              "V3Score": 6.6
 6980            }
 6981          },
 6982          "References": [
 6983            "https://access.redhat.com/errata/RHSA-2022:8194",
 6984            "https://access.redhat.com/security/cve/CVE-2022-1355",
 6985            "https://bugzilla.redhat.com/2042603",
 6986            "https://bugzilla.redhat.com/2054494",
 6987            "https://bugzilla.redhat.com/2054495",
 6988            "https://bugzilla.redhat.com/2064145",
 6989            "https://bugzilla.redhat.com/2064146",
 6990            "https://bugzilla.redhat.com/2064148",
 6991            "https://bugzilla.redhat.com/2064406",
 6992            "https://bugzilla.redhat.com/2064411",
 6993            "https://bugzilla.redhat.com/2074404",
 6994            "https://bugzilla.redhat.com/2074415",
 6995            "https://bugzilla.redhat.com/show_bug.cgi?id=2042603",
 6996            "https://bugzilla.redhat.com/show_bug.cgi?id=2054494",
 6997            "https://bugzilla.redhat.com/show_bug.cgi?id=2054495",
 6998            "https://bugzilla.redhat.com/show_bug.cgi?id=2064145",
 6999            "https://bugzilla.redhat.com/show_bug.cgi?id=2064146",
 7000            "https://bugzilla.redhat.com/show_bug.cgi?id=2064148",
 7001            "https://bugzilla.redhat.com/show_bug.cgi?id=2064406",
 7002            "https://bugzilla.redhat.com/show_bug.cgi?id=2064411",
 7003            "https://bugzilla.redhat.com/show_bug.cgi?id=2074415",
 7004            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0561",
 7005            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0562",
 7006            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0865",
 7007            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0891",
 7008            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0908",
 7009            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0909",
 7010            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0924",
 7011            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1355",
 7012            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-22844",
 7013            "https://errata.almalinux.org/9/ALSA-2022-8194.html",
 7014            "https://errata.rockylinux.org/RLSA-2022:7585",
 7015            "https://gitlab.com/libtiff/libtiff/-/issues/400",
 7016            "https://gitlab.com/libtiff/libtiff/-/merge_requests/323",
 7017            "https://linux.oracle.com/cve/CVE-2022-1355.html",
 7018            "https://linux.oracle.com/errata/ELSA-2022-8194.html",
 7019            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 7020            "https://nvd.nist.gov/vuln/detail/CVE-2022-1355",
 7021            "https://security.gentoo.org/glsa/202210-10",
 7022            "https://security.netapp.com/advisory/ntap-20221014-0007/",
 7023            "https://ubuntu.com/security/notices/USN-5619-1",
 7024            "https://www.cve.org/CVERecord?id=CVE-2022-1355",
 7025            "https://www.debian.org/security/2023/dsa-5333"
 7026          ],
 7027          "PublishedDate": "2022-08-31T16:15:00Z",
 7028          "LastModifiedDate": "2023-02-23T15:52:00Z"
 7029        },
 7030        {
 7031          "VulnerabilityID": "CVE-2022-1622",
 7032          "VendorIDs": [
 7033            "DSA-5333-1"
 7034          ],
 7035          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7036          "PkgName": "libtiff5",
 7037          "InstalledVersion": "4.2.0-1+deb11u1",
 7038          "FixedVersion": "4.2.0-1+deb11u3",
 7039          "Status": "fixed",
 7040          "Layer": {
 7041            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7042            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7043          },
 7044          "SeveritySource": "nvd",
 7045          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1622",
 7046          "DataSource": {
 7047            "ID": "debian",
 7048            "Name": "Debian Security Tracker",
 7049            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7050          },
 7051          "Title": "libtiff: out-of-bounds read in LZWDecode",
 7052          "Description": "LibTIFF master branch has an out-of-bounds read in LZWDecode in libtiff/tif_lzw.c:619, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit b4e79bfa.",
 7053          "Severity": "MEDIUM",
 7054          "CweIDs": [
 7055            "CWE-125"
 7056          ],
 7057          "CVSS": {
 7058            "nvd": {
 7059              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 7060              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7061              "V2Score": 4.3,
 7062              "V3Score": 5.5
 7063            },
 7064            "redhat": {
 7065              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7066              "V3Score": 5.5
 7067            }
 7068          },
 7069          "References": [
 7070            "http://seclists.org/fulldisclosure/2022/Oct/41",
 7071            "https://access.redhat.com/security/cve/CVE-2022-1622",
 7072            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-1622.json",
 7073            "https://gitlab.com/libtiff/libtiff/-/commit/b4e79bfa0c7d2d08f6f1e7ec38143fc8cb11394a",
 7074            "https://gitlab.com/libtiff/libtiff/-/issues/410",
 7075            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/C7IWZTB4J2N4F5OR5QY4VHDSKWKZSWN3/",
 7076            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UXAFOP6QQRNZD3HPZ6BMCEZZOM4YIZMK/",
 7077            "https://nvd.nist.gov/vuln/detail/CVE-2022-1622",
 7078            "https://security.netapp.com/advisory/ntap-20220616-0005/",
 7079            "https://support.apple.com/kb/HT213443",
 7080            "https://support.apple.com/kb/HT213444",
 7081            "https://support.apple.com/kb/HT213446",
 7082            "https://support.apple.com/kb/HT213486",
 7083            "https://support.apple.com/kb/HT213487",
 7084            "https://support.apple.com/kb/HT213488",
 7085            "https://www.cve.org/CVERecord?id=CVE-2022-1622"
 7086          ],
 7087          "PublishedDate": "2022-05-11T15:15:00Z",
 7088          "LastModifiedDate": "2022-11-07T20:52:00Z"
 7089        },
 7090        {
 7091          "VulnerabilityID": "CVE-2022-1623",
 7092          "VendorIDs": [
 7093            "DSA-5333-1"
 7094          ],
 7095          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7096          "PkgName": "libtiff5",
 7097          "InstalledVersion": "4.2.0-1+deb11u1",
 7098          "FixedVersion": "4.2.0-1+deb11u3",
 7099          "Status": "fixed",
 7100          "Layer": {
 7101            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7102            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7103          },
 7104          "SeveritySource": "nvd",
 7105          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1623",
 7106          "DataSource": {
 7107            "ID": "debian",
 7108            "Name": "Debian Security Tracker",
 7109            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7110          },
 7111          "Title": "libtiff: out-of-bounds read in LZWDecode",
 7112          "Description": "LibTIFF master branch has an out-of-bounds read in LZWDecode in libtiff/tif_lzw.c:624, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit b4e79bfa.",
 7113          "Severity": "MEDIUM",
 7114          "CweIDs": [
 7115            "CWE-125"
 7116          ],
 7117          "CVSS": {
 7118            "nvd": {
 7119              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 7120              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7121              "V2Score": 4.3,
 7122              "V3Score": 5.5
 7123            },
 7124            "redhat": {
 7125              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7126              "V3Score": 5.5
 7127            }
 7128          },
 7129          "References": [
 7130            "https://access.redhat.com/security/cve/CVE-2022-1623",
 7131            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-1623.json",
 7132            "https://gitlab.com/libtiff/libtiff/-/commit/b4e79bfa0c7d2d08f6f1e7ec38143fc8cb11394a",
 7133            "https://gitlab.com/libtiff/libtiff/-/issues/410",
 7134            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/C7IWZTB4J2N4F5OR5QY4VHDSKWKZSWN3/",
 7135            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UXAFOP6QQRNZD3HPZ6BMCEZZOM4YIZMK/",
 7136            "https://nvd.nist.gov/vuln/detail/CVE-2022-1623",
 7137            "https://security.gentoo.org/glsa/202210-10",
 7138            "https://security.netapp.com/advisory/ntap-20220616-0005/",
 7139            "https://www.cve.org/CVERecord?id=CVE-2022-1623",
 7140            "https://www.debian.org/security/2023/dsa-5333"
 7141          ],
 7142          "PublishedDate": "2022-05-11T15:15:00Z",
 7143          "LastModifiedDate": "2023-02-23T15:53:00Z"
 7144        },
 7145        {
 7146          "VulnerabilityID": "CVE-2022-2056",
 7147          "VendorIDs": [
 7148            "DSA-5333-1"
 7149          ],
 7150          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7151          "PkgName": "libtiff5",
 7152          "InstalledVersion": "4.2.0-1+deb11u1",
 7153          "FixedVersion": "4.2.0-1+deb11u3",
 7154          "Status": "fixed",
 7155          "Layer": {
 7156            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7157            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7158          },
 7159          "SeveritySource": "nvd",
 7160          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2056",
 7161          "DataSource": {
 7162            "ID": "debian",
 7163            "Name": "Debian Security Tracker",
 7164            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7165          },
 7166          "Title": "division by zero issues in tiffcrop",
 7167          "Description": "Divide By Zero error in tiffcrop in libtiff 4.4.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f3a5e010.",
 7168          "Severity": "MEDIUM",
 7169          "CweIDs": [
 7170            "CWE-369"
 7171          ],
 7172          "CVSS": {
 7173            "nvd": {
 7174              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 7175              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7176              "V2Score": 4.3,
 7177              "V3Score": 6.5
 7178            },
 7179            "redhat": {
 7180              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
 7181              "V3Score": 5.1
 7182            }
 7183          },
 7184          "References": [
 7185            "https://access.redhat.com/errata/RHSA-2023:0302",
 7186            "https://access.redhat.com/security/cve/CVE-2022-2056",
 7187            "https://bugzilla.redhat.com/2103222",
 7188            "https://bugzilla.redhat.com/2122789",
 7189            "https://bugzilla.redhat.com/2122792",
 7190            "https://bugzilla.redhat.com/2122799",
 7191            "https://bugzilla.redhat.com/2134432",
 7192            "https://bugzilla.redhat.com/show_bug.cgi?id=2103222",
 7193            "https://bugzilla.redhat.com/show_bug.cgi?id=2122789",
 7194            "https://bugzilla.redhat.com/show_bug.cgi?id=2122792",
 7195            "https://bugzilla.redhat.com/show_bug.cgi?id=2122799",
 7196            "https://bugzilla.redhat.com/show_bug.cgi?id=2134432",
 7197            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2056",
 7198            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2057",
 7199            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2058",
 7200            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2519",
 7201            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2520",
 7202            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2521",
 7203            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2953",
 7204            "https://errata.almalinux.org/9/ALSA-2023-0302.html",
 7205            "https://errata.rockylinux.org/RLSA-2023:0302",
 7206            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-2056.json",
 7207            "https://gitlab.com/libtiff/libtiff/-/issues/415",
 7208            "https://gitlab.com/libtiff/libtiff/-/merge_requests/346",
 7209            "https://linux.oracle.com/cve/CVE-2022-2056.html",
 7210            "https://linux.oracle.com/errata/ELSA-2023-0302.html",
 7211            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 7212            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4TSS7MJ7OO7JO5BNKCRYSFU7UAYOKLA2/",
 7213            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OXUMJXVEAYFWRO3U3YHKSULHIVDOLEQS/",
 7214            "https://nvd.nist.gov/vuln/detail/CVE-2022-2056",
 7215            "https://security.netapp.com/advisory/ntap-20220826-0001/",
 7216            "https://ubuntu.com/security/notices/USN-5619-1",
 7217            "https://www.cve.org/CVERecord?id=CVE-2022-2056",
 7218            "https://www.debian.org/security/2023/dsa-5333"
 7219          ],
 7220          "PublishedDate": "2022-06-30T16:15:00Z",
 7221          "LastModifiedDate": "2023-02-23T15:55:00Z"
 7222        },
 7223        {
 7224          "VulnerabilityID": "CVE-2022-2057",
 7225          "VendorIDs": [
 7226            "DSA-5333-1"
 7227          ],
 7228          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7229          "PkgName": "libtiff5",
 7230          "InstalledVersion": "4.2.0-1+deb11u1",
 7231          "FixedVersion": "4.2.0-1+deb11u3",
 7232          "Status": "fixed",
 7233          "Layer": {
 7234            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7235            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7236          },
 7237          "SeveritySource": "nvd",
 7238          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2057",
 7239          "DataSource": {
 7240            "ID": "debian",
 7241            "Name": "Debian Security Tracker",
 7242            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7243          },
 7244          "Title": "division by zero issues in tiffcrop",
 7245          "Description": "Divide By Zero error in tiffcrop in libtiff 4.4.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f3a5e010.",
 7246          "Severity": "MEDIUM",
 7247          "CweIDs": [
 7248            "CWE-369"
 7249          ],
 7250          "CVSS": {
 7251            "nvd": {
 7252              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 7253              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7254              "V2Score": 4.3,
 7255              "V3Score": 6.5
 7256            },
 7257            "redhat": {
 7258              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
 7259              "V3Score": 5.1
 7260            }
 7261          },
 7262          "References": [
 7263            "https://access.redhat.com/errata/RHSA-2023:0302",
 7264            "https://access.redhat.com/security/cve/CVE-2022-2057",
 7265            "https://bugzilla.redhat.com/2103222",
 7266            "https://bugzilla.redhat.com/2122789",
 7267            "https://bugzilla.redhat.com/2122792",
 7268            "https://bugzilla.redhat.com/2122799",
 7269            "https://bugzilla.redhat.com/2134432",
 7270            "https://bugzilla.redhat.com/show_bug.cgi?id=2103222",
 7271            "https://bugzilla.redhat.com/show_bug.cgi?id=2122789",
 7272            "https://bugzilla.redhat.com/show_bug.cgi?id=2122792",
 7273            "https://bugzilla.redhat.com/show_bug.cgi?id=2122799",
 7274            "https://bugzilla.redhat.com/show_bug.cgi?id=2134432",
 7275            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2056",
 7276            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2057",
 7277            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2058",
 7278            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2519",
 7279            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2520",
 7280            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2521",
 7281            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2953",
 7282            "https://errata.almalinux.org/9/ALSA-2023-0302.html",
 7283            "https://errata.rockylinux.org/RLSA-2023:0302",
 7284            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-2057.json",
 7285            "https://gitlab.com/libtiff/libtiff/-/issues/427",
 7286            "https://gitlab.com/libtiff/libtiff/-/merge_requests/346",
 7287            "https://linux.oracle.com/cve/CVE-2022-2057.html",
 7288            "https://linux.oracle.com/errata/ELSA-2023-0302.html",
 7289            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 7290            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4TSS7MJ7OO7JO5BNKCRYSFU7UAYOKLA2/",
 7291            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OXUMJXVEAYFWRO3U3YHKSULHIVDOLEQS/",
 7292            "https://nvd.nist.gov/vuln/detail/CVE-2022-2057",
 7293            "https://security.netapp.com/advisory/ntap-20220826-0001/",
 7294            "https://ubuntu.com/security/notices/USN-5619-1",
 7295            "https://www.cve.org/CVERecord?id=CVE-2022-2057",
 7296            "https://www.debian.org/security/2023/dsa-5333"
 7297          ],
 7298          "PublishedDate": "2022-06-30T16:15:00Z",
 7299          "LastModifiedDate": "2023-02-23T15:55:00Z"
 7300        },
 7301        {
 7302          "VulnerabilityID": "CVE-2022-2058",
 7303          "VendorIDs": [
 7304            "DSA-5333-1"
 7305          ],
 7306          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7307          "PkgName": "libtiff5",
 7308          "InstalledVersion": "4.2.0-1+deb11u1",
 7309          "FixedVersion": "4.2.0-1+deb11u3",
 7310          "Status": "fixed",
 7311          "Layer": {
 7312            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7313            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7314          },
 7315          "SeveritySource": "nvd",
 7316          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2058",
 7317          "DataSource": {
 7318            "ID": "debian",
 7319            "Name": "Debian Security Tracker",
 7320            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7321          },
 7322          "Title": "division by zero issues in tiffcrop",
 7323          "Description": "Divide By Zero error in tiffcrop in libtiff 4.4.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit f3a5e010.",
 7324          "Severity": "MEDIUM",
 7325          "CweIDs": [
 7326            "CWE-369"
 7327          ],
 7328          "CVSS": {
 7329            "nvd": {
 7330              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 7331              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7332              "V2Score": 4.3,
 7333              "V3Score": 6.5
 7334            },
 7335            "redhat": {
 7336              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
 7337              "V3Score": 5.1
 7338            }
 7339          },
 7340          "References": [
 7341            "https://access.redhat.com/errata/RHSA-2023:0302",
 7342            "https://access.redhat.com/security/cve/CVE-2022-2058",
 7343            "https://bugzilla.redhat.com/2103222",
 7344            "https://bugzilla.redhat.com/2122789",
 7345            "https://bugzilla.redhat.com/2122792",
 7346            "https://bugzilla.redhat.com/2122799",
 7347            "https://bugzilla.redhat.com/2134432",
 7348            "https://bugzilla.redhat.com/show_bug.cgi?id=2103222",
 7349            "https://bugzilla.redhat.com/show_bug.cgi?id=2122789",
 7350            "https://bugzilla.redhat.com/show_bug.cgi?id=2122792",
 7351            "https://bugzilla.redhat.com/show_bug.cgi?id=2122799",
 7352            "https://bugzilla.redhat.com/show_bug.cgi?id=2134432",
 7353            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2056",
 7354            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2057",
 7355            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2058",
 7356            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2519",
 7357            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2520",
 7358            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2521",
 7359            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2953",
 7360            "https://errata.almalinux.org/9/ALSA-2023-0302.html",
 7361            "https://errata.rockylinux.org/RLSA-2023:0302",
 7362            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-2058.json",
 7363            "https://gitlab.com/libtiff/libtiff/-/issues/428",
 7364            "https://gitlab.com/libtiff/libtiff/-/merge_requests/346",
 7365            "https://linux.oracle.com/cve/CVE-2022-2058.html",
 7366            "https://linux.oracle.com/errata/ELSA-2023-0302.html",
 7367            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 7368            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4TSS7MJ7OO7JO5BNKCRYSFU7UAYOKLA2/",
 7369            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OXUMJXVEAYFWRO3U3YHKSULHIVDOLEQS/",
 7370            "https://nvd.nist.gov/vuln/detail/CVE-2022-2058",
 7371            "https://security.netapp.com/advisory/ntap-20220826-0001/",
 7372            "https://ubuntu.com/security/notices/USN-5619-1",
 7373            "https://www.cve.org/CVERecord?id=CVE-2022-2058",
 7374            "https://www.debian.org/security/2023/dsa-5333"
 7375          ],
 7376          "PublishedDate": "2022-06-30T16:15:00Z",
 7377          "LastModifiedDate": "2023-02-23T15:56:00Z"
 7378        },
 7379        {
 7380          "VulnerabilityID": "CVE-2022-2519",
 7381          "VendorIDs": [
 7382            "DSA-5333-1"
 7383          ],
 7384          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7385          "PkgName": "libtiff5",
 7386          "InstalledVersion": "4.2.0-1+deb11u1",
 7387          "FixedVersion": "4.2.0-1+deb11u3",
 7388          "Status": "fixed",
 7389          "Layer": {
 7390            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7391            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7392          },
 7393          "SeveritySource": "nvd",
 7394          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2519",
 7395          "DataSource": {
 7396            "ID": "debian",
 7397            "Name": "Debian Security Tracker",
 7398            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7399          },
 7400          "Title": "Double free or corruption in rotateImage() function at tiffcrop.c",
 7401          "Description": "There is a double free or corruption in rotateImage() at tiffcrop.c:8839 found in libtiff 4.4.0rc1",
 7402          "Severity": "MEDIUM",
 7403          "CweIDs": [
 7404            "CWE-415"
 7405          ],
 7406          "CVSS": {
 7407            "nvd": {
 7408              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7409              "V3Score": 6.5
 7410            },
 7411            "redhat": {
 7412              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7413              "V3Score": 6.5
 7414            }
 7415          },
 7416          "References": [
 7417            "https://access.redhat.com/errata/RHSA-2023:0302",
 7418            "https://access.redhat.com/security/cve/CVE-2022-2519",
 7419            "https://bugzilla.redhat.com/2103222",
 7420            "https://bugzilla.redhat.com/2122789",
 7421            "https://bugzilla.redhat.com/2122792",
 7422            "https://bugzilla.redhat.com/2122799",
 7423            "https://bugzilla.redhat.com/2134432",
 7424            "https://bugzilla.redhat.com/show_bug.cgi?id=2103222",
 7425            "https://bugzilla.redhat.com/show_bug.cgi?id=2122789",
 7426            "https://bugzilla.redhat.com/show_bug.cgi?id=2122792",
 7427            "https://bugzilla.redhat.com/show_bug.cgi?id=2122799",
 7428            "https://bugzilla.redhat.com/show_bug.cgi?id=2134432",
 7429            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2056",
 7430            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2057",
 7431            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2058",
 7432            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2519",
 7433            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2520",
 7434            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2521",
 7435            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2953",
 7436            "https://errata.almalinux.org/9/ALSA-2023-0302.html",
 7437            "https://errata.rockylinux.org/RLSA-2023:0302",
 7438            "https://gitlab.com/libtiff/libtiff/-/issues/423",
 7439            "https://gitlab.com/libtiff/libtiff/-/merge_requests/378",
 7440            "https://linux.oracle.com/cve/CVE-2022-2519.html",
 7441            "https://linux.oracle.com/errata/ELSA-2023-0302.html",
 7442            "https://nvd.nist.gov/vuln/detail/CVE-2022-2519",
 7443            "https://ubuntu.com/security/notices/USN-5714-1",
 7444            "https://www.cve.org/CVERecord?id=CVE-2022-2519",
 7445            "https://www.debian.org/security/2023/dsa-5333"
 7446          ],
 7447          "PublishedDate": "2022-08-31T16:15:00Z",
 7448          "LastModifiedDate": "2023-02-23T15:57:00Z"
 7449        },
 7450        {
 7451          "VulnerabilityID": "CVE-2022-2520",
 7452          "VendorIDs": [
 7453            "DSA-5333-1"
 7454          ],
 7455          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7456          "PkgName": "libtiff5",
 7457          "InstalledVersion": "4.2.0-1+deb11u1",
 7458          "FixedVersion": "4.2.0-1+deb11u3",
 7459          "Status": "fixed",
 7460          "Layer": {
 7461            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7462            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7463          },
 7464          "SeveritySource": "nvd",
 7465          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2520",
 7466          "DataSource": {
 7467            "ID": "debian",
 7468            "Name": "Debian Security Tracker",
 7469            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7470          },
 7471          "Title": "Assertion fail in rotateImage() function at tiffcrop.c",
 7472          "Description": "A flaw was found in libtiff 4.4.0rc1. There is a sysmalloc assertion fail in rotateImage() at tiffcrop.c:8621 that can cause program crash when reading a crafted input.",
 7473          "Severity": "MEDIUM",
 7474          "CweIDs": [
 7475            "CWE-131"
 7476          ],
 7477          "CVSS": {
 7478            "nvd": {
 7479              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7480              "V3Score": 6.5
 7481            },
 7482            "redhat": {
 7483              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7484              "V3Score": 6.5
 7485            }
 7486          },
 7487          "References": [
 7488            "https://access.redhat.com/errata/RHSA-2023:0302",
 7489            "https://access.redhat.com/security/cve/CVE-2022-2520",
 7490            "https://bugzilla.redhat.com/2103222",
 7491            "https://bugzilla.redhat.com/2122789",
 7492            "https://bugzilla.redhat.com/2122792",
 7493            "https://bugzilla.redhat.com/2122799",
 7494            "https://bugzilla.redhat.com/2134432",
 7495            "https://bugzilla.redhat.com/show_bug.cgi?id=2103222",
 7496            "https://bugzilla.redhat.com/show_bug.cgi?id=2122789",
 7497            "https://bugzilla.redhat.com/show_bug.cgi?id=2122792",
 7498            "https://bugzilla.redhat.com/show_bug.cgi?id=2122799",
 7499            "https://bugzilla.redhat.com/show_bug.cgi?id=2134432",
 7500            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2056",
 7501            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2057",
 7502            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2058",
 7503            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2519",
 7504            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2520",
 7505            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2521",
 7506            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2953",
 7507            "https://errata.almalinux.org/9/ALSA-2023-0302.html",
 7508            "https://errata.rockylinux.org/RLSA-2023:0302",
 7509            "https://gitlab.com/libtiff/libtiff/-/issues/424",
 7510            "https://gitlab.com/libtiff/libtiff/-/merge_requests/378",
 7511            "https://linux.oracle.com/cve/CVE-2022-2520.html",
 7512            "https://linux.oracle.com/errata/ELSA-2023-0302.html",
 7513            "https://nvd.nist.gov/vuln/detail/CVE-2022-2520",
 7514            "https://ubuntu.com/security/notices/USN-5714-1",
 7515            "https://www.cve.org/CVERecord?id=CVE-2022-2520",
 7516            "https://www.debian.org/security/2023/dsa-5333"
 7517          ],
 7518          "PublishedDate": "2022-08-31T16:15:00Z",
 7519          "LastModifiedDate": "2023-02-28T15:39:00Z"
 7520        },
 7521        {
 7522          "VulnerabilityID": "CVE-2022-2521",
 7523          "VendorIDs": [
 7524            "DSA-5333-1"
 7525          ],
 7526          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7527          "PkgName": "libtiff5",
 7528          "InstalledVersion": "4.2.0-1+deb11u1",
 7529          "FixedVersion": "4.2.0-1+deb11u3",
 7530          "Status": "fixed",
 7531          "Layer": {
 7532            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7533            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7534          },
 7535          "SeveritySource": "nvd",
 7536          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2521",
 7537          "DataSource": {
 7538            "ID": "debian",
 7539            "Name": "Debian Security Tracker",
 7540            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7541          },
 7542          "Title": "Invalid pointer free operation in TIFFClose() at tif_close.c",
 7543          "Description": "It was found in libtiff 4.4.0rc1 that there is an invalid pointer free operation in TIFFClose() at tif_close.c:131 called by tiffcrop.c:2522 that can cause a program crash and denial of service while processing crafted input.",
 7544          "Severity": "MEDIUM",
 7545          "CweIDs": [
 7546            "CWE-763"
 7547          ],
 7548          "CVSS": {
 7549            "nvd": {
 7550              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7551              "V3Score": 6.5
 7552            },
 7553            "redhat": {
 7554              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7555              "V3Score": 6.5
 7556            }
 7557          },
 7558          "References": [
 7559            "https://access.redhat.com/errata/RHSA-2023:0302",
 7560            "https://access.redhat.com/security/cve/CVE-2022-2521",
 7561            "https://bugzilla.redhat.com/2103222",
 7562            "https://bugzilla.redhat.com/2122789",
 7563            "https://bugzilla.redhat.com/2122792",
 7564            "https://bugzilla.redhat.com/2122799",
 7565            "https://bugzilla.redhat.com/2134432",
 7566            "https://bugzilla.redhat.com/show_bug.cgi?id=2103222",
 7567            "https://bugzilla.redhat.com/show_bug.cgi?id=2122789",
 7568            "https://bugzilla.redhat.com/show_bug.cgi?id=2122792",
 7569            "https://bugzilla.redhat.com/show_bug.cgi?id=2122799",
 7570            "https://bugzilla.redhat.com/show_bug.cgi?id=2134432",
 7571            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2056",
 7572            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2057",
 7573            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2058",
 7574            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2519",
 7575            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2520",
 7576            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2521",
 7577            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2953",
 7578            "https://errata.almalinux.org/9/ALSA-2023-0302.html",
 7579            "https://errata.rockylinux.org/RLSA-2023:0302",
 7580            "https://gitlab.com/libtiff/libtiff/-/issues/422",
 7581            "https://gitlab.com/libtiff/libtiff/-/merge_requests/378",
 7582            "https://linux.oracle.com/cve/CVE-2022-2521.html",
 7583            "https://linux.oracle.com/errata/ELSA-2023-0302.html",
 7584            "https://nvd.nist.gov/vuln/detail/CVE-2022-2521",
 7585            "https://ubuntu.com/security/notices/USN-5714-1",
 7586            "https://www.cve.org/CVERecord?id=CVE-2022-2521",
 7587            "https://www.debian.org/security/2023/dsa-5333"
 7588          ],
 7589          "PublishedDate": "2022-08-31T16:15:00Z",
 7590          "LastModifiedDate": "2023-02-23T15:59:00Z"
 7591        },
 7592        {
 7593          "VulnerabilityID": "CVE-2022-2867",
 7594          "VendorIDs": [
 7595            "DSA-5333-1"
 7596          ],
 7597          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7598          "PkgName": "libtiff5",
 7599          "InstalledVersion": "4.2.0-1+deb11u1",
 7600          "FixedVersion": "4.2.0-1+deb11u3",
 7601          "Status": "fixed",
 7602          "Layer": {
 7603            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7604            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7605          },
 7606          "SeveritySource": "nvd",
 7607          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2867",
 7608          "DataSource": {
 7609            "ID": "debian",
 7610            "Name": "Debian Security Tracker",
 7611            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7612          },
 7613          "Title": "uint32_t underflow leads to out of bounds read and write in tiffcrop.c",
 7614          "Description": "libtiff's tiffcrop utility has a uint32_t underflow that can lead to out of bounds read and write. An attacker who supplies a crafted file to tiffcrop (likely via tricking a user to run tiffcrop on it with certain parameters) could cause a crash or in some cases, further exploitation.",
 7615          "Severity": "MEDIUM",
 7616          "CweIDs": [
 7617            "CWE-125",
 7618            "CWE-787",
 7619            "CWE-191"
 7620          ],
 7621          "CVSS": {
 7622            "nvd": {
 7623              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7624              "V3Score": 5.5
 7625            },
 7626            "redhat": {
 7627              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7628              "V3Score": 5.5
 7629            }
 7630          },
 7631          "References": [
 7632            "https://access.redhat.com/errata/RHSA-2023:0095",
 7633            "https://access.redhat.com/security/cve/CVE-2022-2867",
 7634            "https://bugzilla.redhat.com/2103222",
 7635            "https://bugzilla.redhat.com/2118847",
 7636            "https://bugzilla.redhat.com/2118863",
 7637            "https://bugzilla.redhat.com/2118869",
 7638            "https://bugzilla.redhat.com/2122789",
 7639            "https://bugzilla.redhat.com/2122792",
 7640            "https://bugzilla.redhat.com/2122799",
 7641            "https://bugzilla.redhat.com/2134432",
 7642            "https://bugzilla.redhat.com/show_bug.cgi?id=2103222",
 7643            "https://bugzilla.redhat.com/show_bug.cgi?id=2118847",
 7644            "https://bugzilla.redhat.com/show_bug.cgi?id=2118863",
 7645            "https://bugzilla.redhat.com/show_bug.cgi?id=2118869",
 7646            "https://bugzilla.redhat.com/show_bug.cgi?id=2122789",
 7647            "https://bugzilla.redhat.com/show_bug.cgi?id=2122792",
 7648            "https://bugzilla.redhat.com/show_bug.cgi?id=2122799",
 7649            "https://bugzilla.redhat.com/show_bug.cgi?id=2134432",
 7650            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2056",
 7651            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2057",
 7652            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2058",
 7653            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2519",
 7654            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2520",
 7655            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2521",
 7656            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2867",
 7657            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2868",
 7658            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2869",
 7659            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2953",
 7660            "https://errata.almalinux.org/8/ALSA-2023-0095.html",
 7661            "https://errata.rockylinux.org/RLSA-2023:0095",
 7662            "https://linux.oracle.com/cve/CVE-2022-2867.html",
 7663            "https://linux.oracle.com/errata/ELSA-2023-0095.html",
 7664            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 7665            "https://nvd.nist.gov/vuln/detail/CVE-2022-2867",
 7666            "https://ubuntu.com/security/notices/USN-5604-1",
 7667            "https://ubuntu.com/security/notices/USN-5714-1",
 7668            "https://www.cve.org/CVERecord?id=CVE-2022-2867",
 7669            "https://www.debian.org/security/2023/dsa-5333"
 7670          ],
 7671          "PublishedDate": "2022-08-17T22:15:00Z",
 7672          "LastModifiedDate": "2023-02-23T15:49:00Z"
 7673        },
 7674        {
 7675          "VulnerabilityID": "CVE-2022-2868",
 7676          "VendorIDs": [
 7677            "DSA-5333-1"
 7678          ],
 7679          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7680          "PkgName": "libtiff5",
 7681          "InstalledVersion": "4.2.0-1+deb11u1",
 7682          "FixedVersion": "4.2.0-1+deb11u3",
 7683          "Status": "fixed",
 7684          "Layer": {
 7685            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7686            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7687          },
 7688          "SeveritySource": "nvd",
 7689          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2868",
 7690          "DataSource": {
 7691            "ID": "debian",
 7692            "Name": "Debian Security Tracker",
 7693            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7694          },
 7695          "Title": "Invalid crop_width and/or crop_length could cause an out-of-bounds read in reverseSamples16bits()",
 7696          "Description": "libtiff's tiffcrop utility has a improper input validation flaw that can lead to out of bounds read and ultimately cause a crash if an attacker is able to supply a crafted file to tiffcrop.",
 7697          "Severity": "MEDIUM",
 7698          "CweIDs": [
 7699            "CWE-1284"
 7700          ],
 7701          "CVSS": {
 7702            "nvd": {
 7703              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7704              "V3Score": 5.5
 7705            },
 7706            "redhat": {
 7707              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7708              "V3Score": 5.5
 7709            }
 7710          },
 7711          "References": [
 7712            "https://access.redhat.com/errata/RHSA-2023:0095",
 7713            "https://access.redhat.com/security/cve/CVE-2022-2868",
 7714            "https://bugzilla.redhat.com/2103222",
 7715            "https://bugzilla.redhat.com/2118847",
 7716            "https://bugzilla.redhat.com/2118863",
 7717            "https://bugzilla.redhat.com/2118869",
 7718            "https://bugzilla.redhat.com/2122789",
 7719            "https://bugzilla.redhat.com/2122792",
 7720            "https://bugzilla.redhat.com/2122799",
 7721            "https://bugzilla.redhat.com/2134432",
 7722            "https://bugzilla.redhat.com/show_bug.cgi?id=2103222",
 7723            "https://bugzilla.redhat.com/show_bug.cgi?id=2118847",
 7724            "https://bugzilla.redhat.com/show_bug.cgi?id=2118863",
 7725            "https://bugzilla.redhat.com/show_bug.cgi?id=2118869",
 7726            "https://bugzilla.redhat.com/show_bug.cgi?id=2122789",
 7727            "https://bugzilla.redhat.com/show_bug.cgi?id=2122792",
 7728            "https://bugzilla.redhat.com/show_bug.cgi?id=2122799",
 7729            "https://bugzilla.redhat.com/show_bug.cgi?id=2134432",
 7730            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2056",
 7731            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2057",
 7732            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2058",
 7733            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2519",
 7734            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2520",
 7735            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2521",
 7736            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2867",
 7737            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2868",
 7738            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2869",
 7739            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2953",
 7740            "https://errata.almalinux.org/8/ALSA-2023-0095.html",
 7741            "https://errata.rockylinux.org/RLSA-2023:0095",
 7742            "https://linux.oracle.com/cve/CVE-2022-2868.html",
 7743            "https://linux.oracle.com/errata/ELSA-2023-0095.html",
 7744            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 7745            "https://nvd.nist.gov/vuln/detail/CVE-2022-2868",
 7746            "https://ubuntu.com/security/notices/USN-5604-1",
 7747            "https://ubuntu.com/security/notices/USN-5714-1",
 7748            "https://www.cve.org/CVERecord?id=CVE-2022-2868",
 7749            "https://www.debian.org/security/2023/dsa-5333"
 7750          ],
 7751          "PublishedDate": "2022-08-17T22:15:00Z",
 7752          "LastModifiedDate": "2023-07-21T16:38:00Z"
 7753        },
 7754        {
 7755          "VulnerabilityID": "CVE-2022-2869",
 7756          "VendorIDs": [
 7757            "DSA-5333-1"
 7758          ],
 7759          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7760          "PkgName": "libtiff5",
 7761          "InstalledVersion": "4.2.0-1+deb11u1",
 7762          "FixedVersion": "4.2.0-1+deb11u3",
 7763          "Status": "fixed",
 7764          "Layer": {
 7765            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7766            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7767          },
 7768          "SeveritySource": "nvd",
 7769          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2869",
 7770          "DataSource": {
 7771            "ID": "debian",
 7772            "Name": "Debian Security Tracker",
 7773            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7774          },
 7775          "Title": "tiffcrop.c has uint32_t underflow which leads to out of bounds read and write in extractContigSamples8bits()",
 7776          "Description": "libtiff's tiffcrop tool has a uint32_t underflow which leads to out of bounds read and write in the extractContigSamples8bits routine. An attacker who supplies a crafted file to tiffcrop could trigger this flaw, most likely by tricking a user into opening the crafted file with tiffcrop. Triggering this flaw could cause a crash or potentially further exploitation.",
 7777          "Severity": "MEDIUM",
 7778          "CweIDs": [
 7779            "CWE-125",
 7780            "CWE-787",
 7781            "CWE-191"
 7782          ],
 7783          "CVSS": {
 7784            "nvd": {
 7785              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7786              "V3Score": 5.5
 7787            },
 7788            "redhat": {
 7789              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7790              "V3Score": 5.5
 7791            }
 7792          },
 7793          "References": [
 7794            "https://access.redhat.com/errata/RHSA-2023:0095",
 7795            "https://access.redhat.com/security/cve/CVE-2022-2869",
 7796            "https://bugzilla.redhat.com/2103222",
 7797            "https://bugzilla.redhat.com/2118847",
 7798            "https://bugzilla.redhat.com/2118863",
 7799            "https://bugzilla.redhat.com/2118869",
 7800            "https://bugzilla.redhat.com/2122789",
 7801            "https://bugzilla.redhat.com/2122792",
 7802            "https://bugzilla.redhat.com/2122799",
 7803            "https://bugzilla.redhat.com/2134432",
 7804            "https://bugzilla.redhat.com/show_bug.cgi?id=2103222",
 7805            "https://bugzilla.redhat.com/show_bug.cgi?id=2118847",
 7806            "https://bugzilla.redhat.com/show_bug.cgi?id=2118863",
 7807            "https://bugzilla.redhat.com/show_bug.cgi?id=2118869",
 7808            "https://bugzilla.redhat.com/show_bug.cgi?id=2122789",
 7809            "https://bugzilla.redhat.com/show_bug.cgi?id=2122792",
 7810            "https://bugzilla.redhat.com/show_bug.cgi?id=2122799",
 7811            "https://bugzilla.redhat.com/show_bug.cgi?id=2134432",
 7812            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2056",
 7813            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2057",
 7814            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2058",
 7815            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2519",
 7816            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2520",
 7817            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2521",
 7818            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2867",
 7819            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2868",
 7820            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2869",
 7821            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2953",
 7822            "https://errata.almalinux.org/8/ALSA-2023-0095.html",
 7823            "https://errata.rockylinux.org/RLSA-2023:0095",
 7824            "https://linux.oracle.com/cve/CVE-2022-2869.html",
 7825            "https://linux.oracle.com/errata/ELSA-2023-0095.html",
 7826            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 7827            "https://nvd.nist.gov/vuln/detail/CVE-2022-2869",
 7828            "https://ubuntu.com/security/notices/USN-5604-1",
 7829            "https://ubuntu.com/security/notices/USN-5714-1",
 7830            "https://www.cve.org/CVERecord?id=CVE-2022-2869",
 7831            "https://www.debian.org/security/2023/dsa-5333"
 7832          ],
 7833          "PublishedDate": "2022-08-17T22:15:00Z",
 7834          "LastModifiedDate": "2023-02-23T15:49:00Z"
 7835        },
 7836        {
 7837          "VulnerabilityID": "CVE-2022-2953",
 7838          "VendorIDs": [
 7839            "DSA-5333-1"
 7840          ],
 7841          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7842          "PkgName": "libtiff5",
 7843          "InstalledVersion": "4.2.0-1+deb11u1",
 7844          "FixedVersion": "4.2.0-1+deb11u3",
 7845          "Status": "fixed",
 7846          "Layer": {
 7847            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7848            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7849          },
 7850          "SeveritySource": "nvd",
 7851          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2953",
 7852          "DataSource": {
 7853            "ID": "debian",
 7854            "Name": "Debian Security Tracker",
 7855            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7856          },
 7857          "Title": "heap-buffer-overflow in extractImageSection in tiffcrop.c",
 7858          "Description": "LibTIFF 4.4.0 has an out-of-bounds read in extractImageSection in tools/tiffcrop.c:6905, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 48d6ece8.",
 7859          "Severity": "MEDIUM",
 7860          "CweIDs": [
 7861            "CWE-125"
 7862          ],
 7863          "CVSS": {
 7864            "nvd": {
 7865              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7866              "V3Score": 5.5
 7867            },
 7868            "redhat": {
 7869              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7870              "V3Score": 5.5
 7871            }
 7872          },
 7873          "References": [
 7874            "https://access.redhat.com/errata/RHSA-2023:0302",
 7875            "https://access.redhat.com/security/cve/CVE-2022-2953",
 7876            "https://bugzilla.redhat.com/2103222",
 7877            "https://bugzilla.redhat.com/2122789",
 7878            "https://bugzilla.redhat.com/2122792",
 7879            "https://bugzilla.redhat.com/2122799",
 7880            "https://bugzilla.redhat.com/2134432",
 7881            "https://bugzilla.redhat.com/show_bug.cgi?id=2103222",
 7882            "https://bugzilla.redhat.com/show_bug.cgi?id=2122789",
 7883            "https://bugzilla.redhat.com/show_bug.cgi?id=2122792",
 7884            "https://bugzilla.redhat.com/show_bug.cgi?id=2122799",
 7885            "https://bugzilla.redhat.com/show_bug.cgi?id=2134432",
 7886            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2056",
 7887            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2057",
 7888            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2058",
 7889            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2519",
 7890            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2520",
 7891            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2521",
 7892            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2953",
 7893            "https://errata.almalinux.org/9/ALSA-2023-0302.html",
 7894            "https://errata.rockylinux.org/RLSA-2023:0302",
 7895            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-2953.json",
 7896            "https://gitlab.com/libtiff/libtiff/-/commit/48d6ece8389b01129e7d357f0985c8f938ce3da3",
 7897            "https://gitlab.com/libtiff/libtiff/-/issues/414",
 7898            "https://linux.oracle.com/cve/CVE-2022-2953.html",
 7899            "https://linux.oracle.com/errata/ELSA-2023-0302.html",
 7900            "https://nvd.nist.gov/vuln/detail/CVE-2022-2953",
 7901            "https://security.netapp.com/advisory/ntap-20221014-0008/",
 7902            "https://ubuntu.com/security/notices/USN-5714-1",
 7903            "https://www.cve.org/CVERecord?id=CVE-2022-2953",
 7904            "https://www.debian.org/security/2023/dsa-5333"
 7905          ],
 7906          "PublishedDate": "2022-08-29T15:15:00Z",
 7907          "LastModifiedDate": "2023-02-23T16:01:00Z"
 7908        },
 7909        {
 7910          "VulnerabilityID": "CVE-2022-34526",
 7911          "VendorIDs": [
 7912            "DSA-5333-1"
 7913          ],
 7914          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7915          "PkgName": "libtiff5",
 7916          "InstalledVersion": "4.2.0-1+deb11u1",
 7917          "FixedVersion": "4.2.0-1+deb11u3",
 7918          "Status": "fixed",
 7919          "Layer": {
 7920            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7921            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7922          },
 7923          "SeveritySource": "nvd",
 7924          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-34526",
 7925          "DataSource": {
 7926            "ID": "debian",
 7927            "Name": "Debian Security Tracker",
 7928            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7929          },
 7930          "Title": "A stack overflow was discovered in the _TIFFVGetField function of Tiffsplit",
 7931          "Description": "A stack overflow was discovered in the _TIFFVGetField function of Tiffsplit v4.4.0. This vulnerability allows attackers to cause a Denial of Service (DoS) via a crafted TIFF file parsed by the \"tiffsplit\" or \"tiffcrop\" utilities.",
 7932          "Severity": "MEDIUM",
 7933          "CweIDs": [
 7934            "CWE-787"
 7935          ],
 7936          "CVSS": {
 7937            "nvd": {
 7938              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7939              "V3Score": 6.5
 7940            },
 7941            "redhat": {
 7942              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7943              "V3Score": 6.5
 7944            }
 7945          },
 7946          "References": [
 7947            "https://access.redhat.com/security/cve/CVE-2022-34526",
 7948            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34526",
 7949            "https://gitlab.com/libtiff/libtiff/-/issues/433",
 7950            "https://gitlab.com/libtiff/libtiff/-/issues/486",
 7951            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 7952            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FC6LWPAEKYJ57LSHX4SBFMLRMLOZTHIJ/",
 7953            "https://nvd.nist.gov/vuln/detail/CVE-2022-34526",
 7954            "https://security.netapp.com/advisory/ntap-20220930-0002/",
 7955            "https://ubuntu.com/security/notices/USN-5714-1",
 7956            "https://www.cve.org/CVERecord?id=CVE-2022-34526",
 7957            "https://www.debian.org/security/2023/dsa-5333"
 7958          ],
 7959          "PublishedDate": "2022-07-29T23:15:00Z",
 7960          "LastModifiedDate": "2023-02-09T01:58:00Z"
 7961        },
 7962        {
 7963          "VulnerabilityID": "CVE-2022-3570",
 7964          "VendorIDs": [
 7965            "DSA-5333-1"
 7966          ],
 7967          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 7968          "PkgName": "libtiff5",
 7969          "InstalledVersion": "4.2.0-1+deb11u1",
 7970          "FixedVersion": "4.2.0-1+deb11u3",
 7971          "Status": "fixed",
 7972          "Layer": {
 7973            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 7974            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 7975          },
 7976          "SeveritySource": "nvd",
 7977          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3570",
 7978          "DataSource": {
 7979            "ID": "debian",
 7980            "Name": "Debian Security Tracker",
 7981            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 7982          },
 7983          "Title": "heap Buffer overflows in tiffcrop.c",
 7984          "Description": "Multiple heap buffer overflows in tiffcrop.c utility in libtiff library Version 4.4.0 allows attacker to trigger unsafe or out of bounds memory access via crafted TIFF image file which could result into application crash, potential information disclosure or any other context-dependent impact",
 7985          "Severity": "MEDIUM",
 7986          "CweIDs": [
 7987            "CWE-787"
 7988          ],
 7989          "CVSS": {
 7990            "nvd": {
 7991              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7992              "V3Score": 5.5
 7993            },
 7994            "redhat": {
 7995              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 7996              "V3Score": 5.5
 7997            }
 7998          },
 7999          "References": [
 8000            "https://access.redhat.com/errata/RHSA-2023:2340",
 8001            "https://access.redhat.com/security/cve/CVE-2022-3570",
 8002            "https://bugzilla.redhat.com/2142734",
 8003            "https://bugzilla.redhat.com/2142736",
 8004            "https://bugzilla.redhat.com/2142738",
 8005            "https://bugzilla.redhat.com/2142740",
 8006            "https://bugzilla.redhat.com/2142741",
 8007            "https://bugzilla.redhat.com/2142742",
 8008            "https://bugzilla.redhat.com/2148918",
 8009            "https://bugzilla.redhat.com/2176220",
 8010            "https://bugzilla.redhat.com/2187139",
 8011            "https://bugzilla.redhat.com/2187141",
 8012            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3570",
 8013            "https://errata.almalinux.org/9/ALSA-2023-2340.html",
 8014            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-3570.json",
 8015            "https://gitlab.com/libtiff/libtiff/-/commit/bd94a9b383d8755a27b5a1bc27660b8ad10b094c",
 8016            "https://gitlab.com/libtiff/libtiff/-/issues/381",
 8017            "https://gitlab.com/libtiff/libtiff/-/issues/386",
 8018            "https://linux.oracle.com/cve/CVE-2022-3570.html",
 8019            "https://linux.oracle.com/errata/ELSA-2023-2340.html",
 8020            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 8021            "https://nvd.nist.gov/vuln/detail/CVE-2022-3570",
 8022            "https://security.netapp.com/advisory/ntap-20230203-0002/",
 8023            "https://ubuntu.com/security/notices/USN-5705-1",
 8024            "https://ubuntu.com/security/notices/USN-5714-1",
 8025            "https://www.cve.org/CVERecord?id=CVE-2022-3570",
 8026            "https://www.debian.org/security/2023/dsa-5333"
 8027          ],
 8028          "PublishedDate": "2022-10-21T16:15:00Z",
 8029          "LastModifiedDate": "2023-02-23T16:02:00Z"
 8030        },
 8031        {
 8032          "VulnerabilityID": "CVE-2022-3597",
 8033          "VendorIDs": [
 8034            "DSA-5333-1"
 8035          ],
 8036          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8037          "PkgName": "libtiff5",
 8038          "InstalledVersion": "4.2.0-1+deb11u1",
 8039          "FixedVersion": "4.2.0-1+deb11u3",
 8040          "Status": "fixed",
 8041          "Layer": {
 8042            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8043            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8044          },
 8045          "SeveritySource": "nvd",
 8046          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3597",
 8047          "DataSource": {
 8048            "ID": "debian",
 8049            "Name": "Debian Security Tracker",
 8050            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8051          },
 8052          "Title": "out-of-bounds write in _TIFFmemcpy in libtiff/tif_unix",
 8053          "Description": "LibTIFF 4.4.0 has an out-of-bounds write in _TIFFmemcpy in libtiff/tif_unix.c:346 when called from extractImageSection, tools/tiffcrop.c:6826, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 236b7191.",
 8054          "Severity": "MEDIUM",
 8055          "CweIDs": [
 8056            "CWE-787"
 8057          ],
 8058          "CVSS": {
 8059            "nvd": {
 8060              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8061              "V3Score": 6.5
 8062            },
 8063            "redhat": {
 8064              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8065              "V3Score": 6.5
 8066            }
 8067          },
 8068          "References": [
 8069            "https://access.redhat.com/errata/RHSA-2023:2340",
 8070            "https://access.redhat.com/security/cve/CVE-2022-3597",
 8071            "https://bugzilla.redhat.com/2142734",
 8072            "https://bugzilla.redhat.com/2142736",
 8073            "https://bugzilla.redhat.com/2142738",
 8074            "https://bugzilla.redhat.com/2142740",
 8075            "https://bugzilla.redhat.com/2142741",
 8076            "https://bugzilla.redhat.com/2142742",
 8077            "https://bugzilla.redhat.com/2148918",
 8078            "https://bugzilla.redhat.com/2176220",
 8079            "https://bugzilla.redhat.com/2187139",
 8080            "https://bugzilla.redhat.com/2187141",
 8081            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3597",
 8082            "https://errata.almalinux.org/9/ALSA-2023-2340.html",
 8083            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-3597.json",
 8084            "https://gitlab.com/libtiff/libtiff/-/commit/236b7191f04c60d09ee836ae13b50f812c841047",
 8085            "https://gitlab.com/libtiff/libtiff/-/issues/413",
 8086            "https://linux.oracle.com/cve/CVE-2022-3597.html",
 8087            "https://linux.oracle.com/errata/ELSA-2023-2340.html",
 8088            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 8089            "https://nvd.nist.gov/vuln/detail/CVE-2022-3597",
 8090            "https://security.netapp.com/advisory/ntap-20230110-0001/",
 8091            "https://ubuntu.com/security/notices/USN-5714-1",
 8092            "https://www.cve.org/CVERecord?id=CVE-2022-3597",
 8093            "https://www.debian.org/security/2023/dsa-5333"
 8094          ],
 8095          "PublishedDate": "2022-10-21T16:15:00Z",
 8096          "LastModifiedDate": "2023-02-23T16:04:00Z"
 8097        },
 8098        {
 8099          "VulnerabilityID": "CVE-2022-3598",
 8100          "VendorIDs": [
 8101            "DSA-5333-1"
 8102          ],
 8103          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8104          "PkgName": "libtiff5",
 8105          "InstalledVersion": "4.2.0-1+deb11u1",
 8106          "FixedVersion": "4.2.0-1+deb11u3",
 8107          "Status": "fixed",
 8108          "Layer": {
 8109            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8110            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8111          },
 8112          "SeveritySource": "nvd",
 8113          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3598",
 8114          "DataSource": {
 8115            "ID": "debian",
 8116            "Name": "Debian Security Tracker",
 8117            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8118          },
 8119          "Title": "out-of-bounds write in extractContigSamplesShifted24bits in tools/tiffcrop.c",
 8120          "Description": "LibTIFF 4.4.0 has an out-of-bounds write in extractContigSamplesShifted24bits in tools/tiffcrop.c:3604, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit cfbb883b.",
 8121          "Severity": "MEDIUM",
 8122          "CweIDs": [
 8123            "CWE-787"
 8124          ],
 8125          "CVSS": {
 8126            "nvd": {
 8127              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8128              "V3Score": 6.5
 8129            },
 8130            "redhat": {
 8131              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8132              "V3Score": 6.5
 8133            }
 8134          },
 8135          "References": [
 8136            "https://access.redhat.com/errata/RHSA-2023:2340",
 8137            "https://access.redhat.com/security/cve/CVE-2022-3598",
 8138            "https://bugzilla.redhat.com/2142734",
 8139            "https://bugzilla.redhat.com/2142736",
 8140            "https://bugzilla.redhat.com/2142738",
 8141            "https://bugzilla.redhat.com/2142740",
 8142            "https://bugzilla.redhat.com/2142741",
 8143            "https://bugzilla.redhat.com/2142742",
 8144            "https://bugzilla.redhat.com/2148918",
 8145            "https://bugzilla.redhat.com/2176220",
 8146            "https://bugzilla.redhat.com/2187139",
 8147            "https://bugzilla.redhat.com/2187141",
 8148            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3598",
 8149            "https://errata.almalinux.org/9/ALSA-2023-2340.html",
 8150            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-3598.json",
 8151            "https://gitlab.com/libtiff/libtiff/-/commit/cfbb883bf6ea7bedcb04177cc4e52d304522fdff",
 8152            "https://gitlab.com/libtiff/libtiff/-/issues/435",
 8153            "https://linux.oracle.com/cve/CVE-2022-3598.html",
 8154            "https://linux.oracle.com/errata/ELSA-2023-2340.html",
 8155            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 8156            "https://nvd.nist.gov/vuln/detail/CVE-2022-3598",
 8157            "https://security.netapp.com/advisory/ntap-20230110-0001/",
 8158            "https://ubuntu.com/security/notices/USN-5705-1",
 8159            "https://ubuntu.com/security/notices/USN-5714-1",
 8160            "https://www.cve.org/CVERecord?id=CVE-2022-3598"
 8161          ],
 8162          "PublishedDate": "2022-10-21T16:15:00Z",
 8163          "LastModifiedDate": "2023-03-31T16:05:00Z"
 8164        },
 8165        {
 8166          "VulnerabilityID": "CVE-2022-3599",
 8167          "VendorIDs": [
 8168            "DSA-5333-1"
 8169          ],
 8170          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8171          "PkgName": "libtiff5",
 8172          "InstalledVersion": "4.2.0-1+deb11u1",
 8173          "FixedVersion": "4.2.0-1+deb11u3",
 8174          "Status": "fixed",
 8175          "Layer": {
 8176            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8177            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8178          },
 8179          "SeveritySource": "nvd",
 8180          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3599",
 8181          "DataSource": {
 8182            "ID": "debian",
 8183            "Name": "Debian Security Tracker",
 8184            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8185          },
 8186          "Title": "out-of-bounds read in writeSingleSection in tools/tiffcrop.c",
 8187          "Description": "LibTIFF 4.4.0 has an out-of-bounds read in writeSingleSection in tools/tiffcrop.c:7345, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit e8131125.",
 8188          "Severity": "MEDIUM",
 8189          "CweIDs": [
 8190            "CWE-125"
 8191          ],
 8192          "CVSS": {
 8193            "nvd": {
 8194              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8195              "V3Score": 6.5
 8196            },
 8197            "redhat": {
 8198              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8199              "V3Score": 6.5
 8200            }
 8201          },
 8202          "References": [
 8203            "https://access.redhat.com/errata/RHSA-2023:2340",
 8204            "https://access.redhat.com/security/cve/CVE-2022-3599",
 8205            "https://bugzilla.redhat.com/2142734",
 8206            "https://bugzilla.redhat.com/2142736",
 8207            "https://bugzilla.redhat.com/2142738",
 8208            "https://bugzilla.redhat.com/2142740",
 8209            "https://bugzilla.redhat.com/2142741",
 8210            "https://bugzilla.redhat.com/2142742",
 8211            "https://bugzilla.redhat.com/2148918",
 8212            "https://bugzilla.redhat.com/2176220",
 8213            "https://bugzilla.redhat.com/2187139",
 8214            "https://bugzilla.redhat.com/2187141",
 8215            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3599",
 8216            "https://errata.almalinux.org/9/ALSA-2023-2340.html",
 8217            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-3599.json",
 8218            "https://gitlab.com/libtiff/libtiff/-/commit/e813112545942107551433d61afd16ac094ff246",
 8219            "https://gitlab.com/libtiff/libtiff/-/issues/398",
 8220            "https://gitlab.com/libtiff/libtiff/-/merge_requests/385",
 8221            "https://linux.oracle.com/cve/CVE-2022-3599.html",
 8222            "https://linux.oracle.com/errata/ELSA-2023-2340.html",
 8223            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 8224            "https://nvd.nist.gov/vuln/detail/CVE-2022-3599",
 8225            "https://security.netapp.com/advisory/ntap-20230110-0001/",
 8226            "https://ubuntu.com/security/notices/USN-5714-1",
 8227            "https://www.cve.org/CVERecord?id=CVE-2022-3599",
 8228            "https://www.debian.org/security/2023/dsa-5333"
 8229          ],
 8230          "PublishedDate": "2022-10-21T16:15:00Z",
 8231          "LastModifiedDate": "2023-02-23T16:06:00Z"
 8232        },
 8233        {
 8234          "VulnerabilityID": "CVE-2022-3626",
 8235          "VendorIDs": [
 8236            "DSA-5333-1"
 8237          ],
 8238          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8239          "PkgName": "libtiff5",
 8240          "InstalledVersion": "4.2.0-1+deb11u1",
 8241          "FixedVersion": "4.2.0-1+deb11u3",
 8242          "Status": "fixed",
 8243          "Layer": {
 8244            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8245            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8246          },
 8247          "SeveritySource": "nvd",
 8248          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3626",
 8249          "DataSource": {
 8250            "ID": "debian",
 8251            "Name": "Debian Security Tracker",
 8252            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8253          },
 8254          "Title": "out-of-bounds write in _TIFFmemset in libtiff/tif_unix.c",
 8255          "Description": "LibTIFF 4.4.0 has an out-of-bounds write in _TIFFmemset in libtiff/tif_unix.c:340 when called from processCropSelections, tools/tiffcrop.c:7619, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 236b7191.",
 8256          "Severity": "MEDIUM",
 8257          "CweIDs": [
 8258            "CWE-787"
 8259          ],
 8260          "CVSS": {
 8261            "nvd": {
 8262              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8263              "V3Score": 6.5
 8264            },
 8265            "redhat": {
 8266              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8267              "V3Score": 6.5
 8268            }
 8269          },
 8270          "References": [
 8271            "https://access.redhat.com/errata/RHSA-2023:2340",
 8272            "https://access.redhat.com/security/cve/CVE-2022-3626",
 8273            "https://bugzilla.redhat.com/2142734",
 8274            "https://bugzilla.redhat.com/2142736",
 8275            "https://bugzilla.redhat.com/2142738",
 8276            "https://bugzilla.redhat.com/2142740",
 8277            "https://bugzilla.redhat.com/2142741",
 8278            "https://bugzilla.redhat.com/2142742",
 8279            "https://bugzilla.redhat.com/2148918",
 8280            "https://bugzilla.redhat.com/2176220",
 8281            "https://bugzilla.redhat.com/2187139",
 8282            "https://bugzilla.redhat.com/2187141",
 8283            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3626",
 8284            "https://errata.almalinux.org/9/ALSA-2023-2340.html",
 8285            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-3626.json",
 8286            "https://gitlab.com/libtiff/libtiff/-/commit/236b7191f04c60d09ee836ae13b50f812c841047",
 8287            "https://gitlab.com/libtiff/libtiff/-/issues/426",
 8288            "https://linux.oracle.com/cve/CVE-2022-3626.html",
 8289            "https://linux.oracle.com/errata/ELSA-2023-2340.html",
 8290            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 8291            "https://nvd.nist.gov/vuln/detail/CVE-2022-3626",
 8292            "https://security.netapp.com/advisory/ntap-20230110-0001/",
 8293            "https://ubuntu.com/security/notices/USN-5714-1",
 8294            "https://www.cve.org/CVERecord?id=CVE-2022-3626"
 8295          ],
 8296          "PublishedDate": "2022-10-21T16:15:00Z",
 8297          "LastModifiedDate": "2023-03-31T16:06:00Z"
 8298        },
 8299        {
 8300          "VulnerabilityID": "CVE-2022-3627",
 8301          "VendorIDs": [
 8302            "DSA-5333-1"
 8303          ],
 8304          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8305          "PkgName": "libtiff5",
 8306          "InstalledVersion": "4.2.0-1+deb11u1",
 8307          "FixedVersion": "4.2.0-1+deb11u3",
 8308          "Status": "fixed",
 8309          "Layer": {
 8310            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8311            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8312          },
 8313          "SeveritySource": "nvd",
 8314          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3627",
 8315          "DataSource": {
 8316            "ID": "debian",
 8317            "Name": "Debian Security Tracker",
 8318            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8319          },
 8320          "Title": "out-of-bounds write in _TIFFmemcpy in libtiff/tif_unix.c",
 8321          "Description": "LibTIFF 4.4.0 has an out-of-bounds write in _TIFFmemcpy in libtiff/tif_unix.c:346 when called from extractImageSection, tools/tiffcrop.c:6860, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 236b7191.",
 8322          "Severity": "MEDIUM",
 8323          "CweIDs": [
 8324            "CWE-787"
 8325          ],
 8326          "CVSS": {
 8327            "nvd": {
 8328              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8329              "V3Score": 6.5
 8330            },
 8331            "redhat": {
 8332              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8333              "V3Score": 6.5
 8334            }
 8335          },
 8336          "References": [
 8337            "https://access.redhat.com/errata/RHSA-2023:2340",
 8338            "https://access.redhat.com/security/cve/CVE-2022-3627",
 8339            "https://bugzilla.redhat.com/2142734",
 8340            "https://bugzilla.redhat.com/2142736",
 8341            "https://bugzilla.redhat.com/2142738",
 8342            "https://bugzilla.redhat.com/2142740",
 8343            "https://bugzilla.redhat.com/2142741",
 8344            "https://bugzilla.redhat.com/2142742",
 8345            "https://bugzilla.redhat.com/2148918",
 8346            "https://bugzilla.redhat.com/2176220",
 8347            "https://bugzilla.redhat.com/2187139",
 8348            "https://bugzilla.redhat.com/2187141",
 8349            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3627",
 8350            "https://errata.almalinux.org/9/ALSA-2023-2340.html",
 8351            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-3627.json",
 8352            "https://gitlab.com/libtiff/libtiff/-/commit/236b7191f04c60d09ee836ae13b50f812c841047",
 8353            "https://gitlab.com/libtiff/libtiff/-/issues/411",
 8354            "https://linux.oracle.com/cve/CVE-2022-3627.html",
 8355            "https://linux.oracle.com/errata/ELSA-2023-2883.html",
 8356            "https://lists.debian.org/debian-lts-announce/2023/01/msg00018.html",
 8357            "https://nvd.nist.gov/vuln/detail/CVE-2022-3627",
 8358            "https://security.netapp.com/advisory/ntap-20230110-0001/",
 8359            "https://ubuntu.com/security/notices/USN-5714-1",
 8360            "https://www.cve.org/CVERecord?id=CVE-2022-3627",
 8361            "https://www.debian.org/security/2023/dsa-5333"
 8362          ],
 8363          "PublishedDate": "2022-10-21T16:15:00Z",
 8364          "LastModifiedDate": "2023-02-23T16:07:00Z"
 8365        },
 8366        {
 8367          "VulnerabilityID": "CVE-2022-4645",
 8368          "VendorIDs": [
 8369            "DSA-5333-1"
 8370          ],
 8371          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8372          "PkgName": "libtiff5",
 8373          "InstalledVersion": "4.2.0-1+deb11u1",
 8374          "FixedVersion": "4.2.0-1+deb11u3",
 8375          "Status": "fixed",
 8376          "Layer": {
 8377            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8378            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8379          },
 8380          "SeveritySource": "nvd",
 8381          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4645",
 8382          "DataSource": {
 8383            "ID": "debian",
 8384            "Name": "Debian Security Tracker",
 8385            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8386          },
 8387          "Title": "out-of-bounds read in tiffcp in tools/tiffcp.c",
 8388          "Description": "LibTIFF 4.4.0 has an out-of-bounds read in tiffcp in tools/tiffcp.c:948, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit e8131125.",
 8389          "Severity": "MEDIUM",
 8390          "CweIDs": [
 8391            "CWE-125"
 8392          ],
 8393          "CVSS": {
 8394            "nvd": {
 8395              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
 8396              "V3Score": 5.5
 8397            },
 8398            "redhat": {
 8399              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:L/I:N/A:H",
 8400              "V3Score": 5.6
 8401            }
 8402          },
 8403          "References": [
 8404            "https://access.redhat.com/errata/RHSA-2023:2340",
 8405            "https://access.redhat.com/security/cve/CVE-2022-4645",
 8406            "https://bugzilla.redhat.com/2142734",
 8407            "https://bugzilla.redhat.com/2142736",
 8408            "https://bugzilla.redhat.com/2142738",
 8409            "https://bugzilla.redhat.com/2142740",
 8410            "https://bugzilla.redhat.com/2142741",
 8411            "https://bugzilla.redhat.com/2142742",
 8412            "https://bugzilla.redhat.com/2148918",
 8413            "https://bugzilla.redhat.com/2176220",
 8414            "https://bugzilla.redhat.com/2187139",
 8415            "https://bugzilla.redhat.com/2187141",
 8416            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4645",
 8417            "https://errata.almalinux.org/9/ALSA-2023-2340.html",
 8418            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-4645.json",
 8419            "https://gitlab.com/libtiff/libtiff/-/commit/e813112545942107551433d61afd16ac094ff246",
 8420            "https://gitlab.com/libtiff/libtiff/-/issues/277",
 8421            "https://linux.oracle.com/cve/CVE-2022-4645.html",
 8422            "https://linux.oracle.com/errata/ELSA-2023-2340.html",
 8423            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2ZTFA6GGOKFPIQNHDBMXYUR4XUXUJESE/",
 8424            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BA6GRCAQ7NR2OK5N44UQRGUJBIYKWJJH/",
 8425            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OLM763GGZVVOAXIQXG6YGTYJ5VFYNECQ/",
 8426            "https://nvd.nist.gov/vuln/detail/CVE-2022-4645",
 8427            "https://security.netapp.com/advisory/ntap-20230331-0001/",
 8428            "https://www.cve.org/CVERecord?id=CVE-2022-4645"
 8429          ],
 8430          "PublishedDate": "2023-03-03T16:15:00Z",
 8431          "LastModifiedDate": "2023-03-31T11:15:00Z"
 8432        },
 8433        {
 8434          "VulnerabilityID": "CVE-2022-48281",
 8435          "VendorIDs": [
 8436            "DSA-5333-1"
 8437          ],
 8438          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8439          "PkgName": "libtiff5",
 8440          "InstalledVersion": "4.2.0-1+deb11u1",
 8441          "FixedVersion": "4.2.0-1+deb11u3",
 8442          "Status": "fixed",
 8443          "Layer": {
 8444            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8445            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8446          },
 8447          "SeveritySource": "nvd",
 8448          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-48281",
 8449          "DataSource": {
 8450            "ID": "debian",
 8451            "Name": "Debian Security Tracker",
 8452            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8453          },
 8454          "Title": "heap-based buffer overflow in processCropSelections() in tools/tiffcrop.c",
 8455          "Description": "processCropSelections in tools/tiffcrop.c in LibTIFF through 4.5.0 has a heap-based buffer overflow (e.g., \"WRITE of size 307203\") via a crafted TIFF image.",
 8456          "Severity": "MEDIUM",
 8457          "CweIDs": [
 8458            "CWE-787"
 8459          ],
 8460          "CVSS": {
 8461            "nvd": {
 8462              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8463              "V3Score": 5.5
 8464            },
 8465            "redhat": {
 8466              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8467              "V3Score": 5.5
 8468            }
 8469          },
 8470          "References": [
 8471            "https://access.redhat.com/errata/RHSA-2023:3711",
 8472            "https://access.redhat.com/security/cve/CVE-2022-48281",
 8473            "https://bugzilla.redhat.com/2163606",
 8474            "https://bugzilla.redhat.com/2170119",
 8475            "https://bugzilla.redhat.com/2170146",
 8476            "https://bugzilla.redhat.com/2170151",
 8477            "https://bugzilla.redhat.com/2170157",
 8478            "https://bugzilla.redhat.com/2170162",
 8479            "https://bugzilla.redhat.com/2170167",
 8480            "https://bugzilla.redhat.com/2170172",
 8481            "https://bugzilla.redhat.com/2170178",
 8482            "https://bugzilla.redhat.com/2170187",
 8483            "https://bugzilla.redhat.com/2170192",
 8484            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48281",
 8485            "https://errata.almalinux.org/9/ALSA-2023-3711.html",
 8486            "https://gitlab.com/libtiff/libtiff/-/commit/d1b6b9c1b3cae2d9e37754506c1ad8f4f7b646b5",
 8487            "https://gitlab.com/libtiff/libtiff/-/issues/488",
 8488            "https://linux.oracle.com/cve/CVE-2022-48281.html",
 8489            "https://linux.oracle.com/errata/ELSA-2023-3827.html",
 8490            "https://lists.debian.org/debian-lts-announce/2023/01/msg00037.html",
 8491            "https://nvd.nist.gov/vuln/detail/CVE-2022-48281",
 8492            "https://security.gentoo.org/glsa/202305-31",
 8493            "https://security.netapp.com/advisory/ntap-20230302-0004/",
 8494            "https://ubuntu.com/security/notices/USN-5841-1",
 8495            "https://www.cve.org/CVERecord?id=CVE-2022-48281",
 8496            "https://www.debian.org/security/2023/dsa-5333"
 8497          ],
 8498          "PublishedDate": "2023-01-23T03:15:00Z",
 8499          "LastModifiedDate": "2023-05-30T06:16:00Z"
 8500        },
 8501        {
 8502          "VulnerabilityID": "CVE-2023-0795",
 8503          "VendorIDs": [
 8504            "DSA-5361-1"
 8505          ],
 8506          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8507          "PkgName": "libtiff5",
 8508          "InstalledVersion": "4.2.0-1+deb11u1",
 8509          "FixedVersion": "4.2.0-1+deb11u4",
 8510          "Status": "fixed",
 8511          "Layer": {
 8512            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8513            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8514          },
 8515          "SeveritySource": "nvd",
 8516          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0795",
 8517          "DataSource": {
 8518            "ID": "debian",
 8519            "Name": "Debian Security Tracker",
 8520            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8521          },
 8522          "Title": "out-of-bounds read in extractContigSamplesShifted16bits() in tools/tiffcrop.c",
 8523          "Description": "LibTIFF 4.4.0 has an out-of-bounds read in tiffcrop in tools/tiffcrop.c:3488, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit afaabc3e.",
 8524          "Severity": "MEDIUM",
 8525          "CweIDs": [
 8526            "CWE-125"
 8527          ],
 8528          "CVSS": {
 8529            "nvd": {
 8530              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8531              "V3Score": 5.5
 8532            },
 8533            "redhat": {
 8534              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H",
 8535              "V3Score": 6.1
 8536            }
 8537          },
 8538          "References": [
 8539            "https://access.redhat.com/errata/RHSA-2023:3711",
 8540            "https://access.redhat.com/security/cve/CVE-2023-0795",
 8541            "https://bugzilla.redhat.com/2163606",
 8542            "https://bugzilla.redhat.com/2170119",
 8543            "https://bugzilla.redhat.com/2170146",
 8544            "https://bugzilla.redhat.com/2170151",
 8545            "https://bugzilla.redhat.com/2170157",
 8546            "https://bugzilla.redhat.com/2170162",
 8547            "https://bugzilla.redhat.com/2170167",
 8548            "https://bugzilla.redhat.com/2170172",
 8549            "https://bugzilla.redhat.com/2170178",
 8550            "https://bugzilla.redhat.com/2170187",
 8551            "https://bugzilla.redhat.com/2170192",
 8552            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0795",
 8553            "https://errata.almalinux.org/9/ALSA-2023-3711.html",
 8554            "https://gitlab.com/gitlab-org/cves/-/blob/master/2023/CVE-2023-0795.json",
 8555            "https://gitlab.com/libtiff/libtiff/-/commit/afaabc3e50d4e5d80a94143f7e3c997e7e410f68",
 8556            "https://gitlab.com/libtiff/libtiff/-/issues/493",
 8557            "https://linux.oracle.com/cve/CVE-2023-0795.html",
 8558            "https://linux.oracle.com/errata/ELSA-2023-3711.html",
 8559            "https://lists.debian.org/debian-lts-announce/2023/02/msg00026.html",
 8560            "https://nvd.nist.gov/vuln/detail/CVE-2023-0795",
 8561            "https://security.gentoo.org/glsa/202305-31",
 8562            "https://security.netapp.com/advisory/ntap-20230316-0003/",
 8563            "https://ubuntu.com/security/notices/USN-5923-1",
 8564            "https://www.cve.org/CVERecord?id=CVE-2023-0795",
 8565            "https://www.debian.org/security/2023/dsa-5361"
 8566          ],
 8567          "PublishedDate": "2023-02-13T23:15:00Z",
 8568          "LastModifiedDate": "2023-05-30T06:16:00Z"
 8569        },
 8570        {
 8571          "VulnerabilityID": "CVE-2023-0796",
 8572          "VendorIDs": [
 8573            "DSA-5361-1"
 8574          ],
 8575          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8576          "PkgName": "libtiff5",
 8577          "InstalledVersion": "4.2.0-1+deb11u1",
 8578          "FixedVersion": "4.2.0-1+deb11u4",
 8579          "Status": "fixed",
 8580          "Layer": {
 8581            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8582            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8583          },
 8584          "SeveritySource": "nvd",
 8585          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0796",
 8586          "DataSource": {
 8587            "ID": "debian",
 8588            "Name": "Debian Security Tracker",
 8589            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8590          },
 8591          "Title": "out-of-bounds read in extractContigSamplesShifted24bits() in tools/tiffcrop.c",
 8592          "Description": "LibTIFF 4.4.0 has an out-of-bounds read in tiffcrop in tools/tiffcrop.c:3592, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit afaabc3e.",
 8593          "Severity": "MEDIUM",
 8594          "CweIDs": [
 8595            "CWE-125"
 8596          ],
 8597          "CVSS": {
 8598            "nvd": {
 8599              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8600              "V3Score": 5.5
 8601            },
 8602            "redhat": {
 8603              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H",
 8604              "V3Score": 6.1
 8605            }
 8606          },
 8607          "References": [
 8608            "https://access.redhat.com/errata/RHSA-2023:3711",
 8609            "https://access.redhat.com/security/cve/CVE-2023-0796",
 8610            "https://bugzilla.redhat.com/2163606",
 8611            "https://bugzilla.redhat.com/2170119",
 8612            "https://bugzilla.redhat.com/2170146",
 8613            "https://bugzilla.redhat.com/2170151",
 8614            "https://bugzilla.redhat.com/2170157",
 8615            "https://bugzilla.redhat.com/2170162",
 8616            "https://bugzilla.redhat.com/2170167",
 8617            "https://bugzilla.redhat.com/2170172",
 8618            "https://bugzilla.redhat.com/2170178",
 8619            "https://bugzilla.redhat.com/2170187",
 8620            "https://bugzilla.redhat.com/2170192",
 8621            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0796",
 8622            "https://errata.almalinux.org/9/ALSA-2023-3711.html",
 8623            "https://gitlab.com/gitlab-org/cves/-/blob/master/2023/CVE-2023-0796.json",
 8624            "https://gitlab.com/libtiff/libtiff/-/commit/afaabc3e50d4e5d80a94143f7e3c997e7e410f68",
 8625            "https://gitlab.com/libtiff/libtiff/-/issues/499",
 8626            "https://linux.oracle.com/cve/CVE-2023-0796.html",
 8627            "https://linux.oracle.com/errata/ELSA-2023-3711.html",
 8628            "https://lists.debian.org/debian-lts-announce/2023/02/msg00026.html",
 8629            "https://nvd.nist.gov/vuln/detail/CVE-2023-0796",
 8630            "https://security.gentoo.org/glsa/202305-31",
 8631            "https://security.netapp.com/advisory/ntap-20230316-0003/",
 8632            "https://ubuntu.com/security/notices/USN-5923-1",
 8633            "https://www.cve.org/CVERecord?id=CVE-2023-0796",
 8634            "https://www.debian.org/security/2023/dsa-5361"
 8635          ],
 8636          "PublishedDate": "2023-02-13T23:15:00Z",
 8637          "LastModifiedDate": "2023-05-30T06:16:00Z"
 8638        },
 8639        {
 8640          "VulnerabilityID": "CVE-2023-0797",
 8641          "VendorIDs": [
 8642            "DSA-5361-1"
 8643          ],
 8644          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8645          "PkgName": "libtiff5",
 8646          "InstalledVersion": "4.2.0-1+deb11u1",
 8647          "FixedVersion": "4.2.0-1+deb11u4",
 8648          "Status": "fixed",
 8649          "Layer": {
 8650            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8651            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8652          },
 8653          "SeveritySource": "nvd",
 8654          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0797",
 8655          "DataSource": {
 8656            "ID": "debian",
 8657            "Name": "Debian Security Tracker",
 8658            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8659          },
 8660          "Title": "out-of-bounds read in _TIFFmemcpy() in libtiff/tif_unix.c when called by functions in tools/tiffcrop.c",
 8661          "Description": "LibTIFF 4.4.0 has an out-of-bounds read in tiffcrop in libtiff/tif_unix.c:368, invoked by tools/tiffcrop.c:2903 and tools/tiffcrop.c:6921, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit afaabc3e.",
 8662          "Severity": "MEDIUM",
 8663          "CweIDs": [
 8664            "CWE-125"
 8665          ],
 8666          "CVSS": {
 8667            "nvd": {
 8668              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8669              "V3Score": 5.5
 8670            },
 8671            "redhat": {
 8672              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H",
 8673              "V3Score": 6.1
 8674            }
 8675          },
 8676          "References": [
 8677            "https://access.redhat.com/errata/RHSA-2023:3711",
 8678            "https://access.redhat.com/security/cve/CVE-2023-0797",
 8679            "https://bugzilla.redhat.com/2163606",
 8680            "https://bugzilla.redhat.com/2170119",
 8681            "https://bugzilla.redhat.com/2170146",
 8682            "https://bugzilla.redhat.com/2170151",
 8683            "https://bugzilla.redhat.com/2170157",
 8684            "https://bugzilla.redhat.com/2170162",
 8685            "https://bugzilla.redhat.com/2170167",
 8686            "https://bugzilla.redhat.com/2170172",
 8687            "https://bugzilla.redhat.com/2170178",
 8688            "https://bugzilla.redhat.com/2170187",
 8689            "https://bugzilla.redhat.com/2170192",
 8690            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0797",
 8691            "https://errata.almalinux.org/9/ALSA-2023-3711.html",
 8692            "https://gitlab.com/gitlab-org/cves/-/blob/master/2023/CVE-2023-0797.json",
 8693            "https://gitlab.com/libtiff/libtiff/-/commit/afaabc3e50d4e5d80a94143f7e3c997e7e410f68",
 8694            "https://gitlab.com/libtiff/libtiff/-/issues/495",
 8695            "https://linux.oracle.com/cve/CVE-2023-0797.html",
 8696            "https://linux.oracle.com/errata/ELSA-2023-3711.html",
 8697            "https://lists.debian.org/debian-lts-announce/2023/02/msg00026.html",
 8698            "https://nvd.nist.gov/vuln/detail/CVE-2023-0797",
 8699            "https://security.gentoo.org/glsa/202305-31",
 8700            "https://ubuntu.com/security/notices/USN-5923-1",
 8701            "https://www.cve.org/CVERecord?id=CVE-2023-0797",
 8702            "https://www.debian.org/security/2023/dsa-5361"
 8703          ],
 8704          "PublishedDate": "2023-02-13T23:15:00Z",
 8705          "LastModifiedDate": "2023-05-30T06:16:00Z"
 8706        },
 8707        {
 8708          "VulnerabilityID": "CVE-2023-0798",
 8709          "VendorIDs": [
 8710            "DSA-5361-1"
 8711          ],
 8712          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8713          "PkgName": "libtiff5",
 8714          "InstalledVersion": "4.2.0-1+deb11u1",
 8715          "FixedVersion": "4.2.0-1+deb11u4",
 8716          "Status": "fixed",
 8717          "Layer": {
 8718            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8719            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8720          },
 8721          "SeveritySource": "nvd",
 8722          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0798",
 8723          "DataSource": {
 8724            "ID": "debian",
 8725            "Name": "Debian Security Tracker",
 8726            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8727          },
 8728          "Title": "out-of-bounds read in extractContigSamplesShifted8bits() in tools/tiffcrop.c",
 8729          "Description": "LibTIFF 4.4.0 has an out-of-bounds read in tiffcrop in tools/tiffcrop.c:3400, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit afaabc3e.",
 8730          "Severity": "MEDIUM",
 8731          "CweIDs": [
 8732            "CWE-125"
 8733          ],
 8734          "CVSS": {
 8735            "nvd": {
 8736              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8737              "V3Score": 5.5
 8738            },
 8739            "redhat": {
 8740              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H",
 8741              "V3Score": 6.1
 8742            }
 8743          },
 8744          "References": [
 8745            "https://access.redhat.com/errata/RHSA-2023:3711",
 8746            "https://access.redhat.com/security/cve/CVE-2023-0798",
 8747            "https://bugzilla.redhat.com/2163606",
 8748            "https://bugzilla.redhat.com/2170119",
 8749            "https://bugzilla.redhat.com/2170146",
 8750            "https://bugzilla.redhat.com/2170151",
 8751            "https://bugzilla.redhat.com/2170157",
 8752            "https://bugzilla.redhat.com/2170162",
 8753            "https://bugzilla.redhat.com/2170167",
 8754            "https://bugzilla.redhat.com/2170172",
 8755            "https://bugzilla.redhat.com/2170178",
 8756            "https://bugzilla.redhat.com/2170187",
 8757            "https://bugzilla.redhat.com/2170192",
 8758            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0798",
 8759            "https://errata.almalinux.org/9/ALSA-2023-3711.html",
 8760            "https://gitlab.com/gitlab-org/cves/-/blob/master/2023/CVE-2023-0798.json",
 8761            "https://gitlab.com/libtiff/libtiff/-/commit/afaabc3e50d4e5d80a94143f7e3c997e7e410f68",
 8762            "https://gitlab.com/libtiff/libtiff/-/issues/492",
 8763            "https://linux.oracle.com/cve/CVE-2023-0798.html",
 8764            "https://linux.oracle.com/errata/ELSA-2023-3711.html",
 8765            "https://lists.debian.org/debian-lts-announce/2023/02/msg00026.html",
 8766            "https://nvd.nist.gov/vuln/detail/CVE-2023-0798",
 8767            "https://security.gentoo.org/glsa/202305-31",
 8768            "https://security.netapp.com/advisory/ntap-20230316-0003/",
 8769            "https://ubuntu.com/security/notices/USN-5923-1",
 8770            "https://www.cve.org/CVERecord?id=CVE-2023-0798",
 8771            "https://www.debian.org/security/2023/dsa-5361"
 8772          ],
 8773          "PublishedDate": "2023-02-13T23:15:00Z",
 8774          "LastModifiedDate": "2023-05-30T06:16:00Z"
 8775        },
 8776        {
 8777          "VulnerabilityID": "CVE-2023-0799",
 8778          "VendorIDs": [
 8779            "DSA-5361-1"
 8780          ],
 8781          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8782          "PkgName": "libtiff5",
 8783          "InstalledVersion": "4.2.0-1+deb11u1",
 8784          "FixedVersion": "4.2.0-1+deb11u4",
 8785          "Status": "fixed",
 8786          "Layer": {
 8787            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8788            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8789          },
 8790          "SeveritySource": "nvd",
 8791          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0799",
 8792          "DataSource": {
 8793            "ID": "debian",
 8794            "Name": "Debian Security Tracker",
 8795            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8796          },
 8797          "Title": "use-after-free in extractContigSamplesShifted32bits() in tools/tiffcrop.c",
 8798          "Description": "LibTIFF 4.4.0 has an out-of-bounds read in tiffcrop in tools/tiffcrop.c:3701, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit afaabc3e.",
 8799          "Severity": "MEDIUM",
 8800          "CweIDs": [
 8801            "CWE-416"
 8802          ],
 8803          "CVSS": {
 8804            "nvd": {
 8805              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8806              "V3Score": 5.5
 8807            },
 8808            "redhat": {
 8809              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8810              "V3Score": 5.5
 8811            }
 8812          },
 8813          "References": [
 8814            "https://access.redhat.com/errata/RHSA-2023:3711",
 8815            "https://access.redhat.com/security/cve/CVE-2023-0799",
 8816            "https://bugzilla.redhat.com/2163606",
 8817            "https://bugzilla.redhat.com/2170119",
 8818            "https://bugzilla.redhat.com/2170146",
 8819            "https://bugzilla.redhat.com/2170151",
 8820            "https://bugzilla.redhat.com/2170157",
 8821            "https://bugzilla.redhat.com/2170162",
 8822            "https://bugzilla.redhat.com/2170167",
 8823            "https://bugzilla.redhat.com/2170172",
 8824            "https://bugzilla.redhat.com/2170178",
 8825            "https://bugzilla.redhat.com/2170187",
 8826            "https://bugzilla.redhat.com/2170192",
 8827            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0799",
 8828            "https://errata.almalinux.org/9/ALSA-2023-3711.html",
 8829            "https://gitlab.com/gitlab-org/cves/-/blob/master/2023/CVE-2023-0799.json",
 8830            "https://gitlab.com/libtiff/libtiff/-/commit/afaabc3e50d4e5d80a94143f7e3c997e7e410f68",
 8831            "https://gitlab.com/libtiff/libtiff/-/issues/494",
 8832            "https://linux.oracle.com/cve/CVE-2023-0799.html",
 8833            "https://linux.oracle.com/errata/ELSA-2023-3711.html",
 8834            "https://lists.debian.org/debian-lts-announce/2023/02/msg00026.html",
 8835            "https://nvd.nist.gov/vuln/detail/CVE-2023-0799",
 8836            "https://security.gentoo.org/glsa/202305-31",
 8837            "https://security.netapp.com/advisory/ntap-20230316-0003/",
 8838            "https://ubuntu.com/security/notices/USN-5923-1",
 8839            "https://www.cve.org/CVERecord?id=CVE-2023-0799",
 8840            "https://www.debian.org/security/2023/dsa-5361"
 8841          ],
 8842          "PublishedDate": "2023-02-13T23:15:00Z",
 8843          "LastModifiedDate": "2023-05-30T06:16:00Z"
 8844        },
 8845        {
 8846          "VulnerabilityID": "CVE-2023-0800",
 8847          "VendorIDs": [
 8848            "DSA-5361-1"
 8849          ],
 8850          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8851          "PkgName": "libtiff5",
 8852          "InstalledVersion": "4.2.0-1+deb11u1",
 8853          "FixedVersion": "4.2.0-1+deb11u4",
 8854          "Status": "fixed",
 8855          "Layer": {
 8856            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8857            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8858          },
 8859          "SeveritySource": "nvd",
 8860          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0800",
 8861          "DataSource": {
 8862            "ID": "debian",
 8863            "Name": "Debian Security Tracker",
 8864            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8865          },
 8866          "Title": "out-of-bounds write in extractContigSamplesShifted16bits() in tools/tiffcrop.c",
 8867          "Description": "LibTIFF 4.4.0 has an out-of-bounds write in tiffcrop in tools/tiffcrop.c:3502, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 33aee127.",
 8868          "Severity": "MEDIUM",
 8869          "CweIDs": [
 8870            "CWE-787"
 8871          ],
 8872          "CVSS": {
 8873            "nvd": {
 8874              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8875              "V3Score": 5.5
 8876            },
 8877            "redhat": {
 8878              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H",
 8879              "V3Score": 6.1
 8880            }
 8881          },
 8882          "References": [
 8883            "https://access.redhat.com/errata/RHSA-2023:3711",
 8884            "https://access.redhat.com/security/cve/CVE-2023-0800",
 8885            "https://bugzilla.redhat.com/2163606",
 8886            "https://bugzilla.redhat.com/2170119",
 8887            "https://bugzilla.redhat.com/2170146",
 8888            "https://bugzilla.redhat.com/2170151",
 8889            "https://bugzilla.redhat.com/2170157",
 8890            "https://bugzilla.redhat.com/2170162",
 8891            "https://bugzilla.redhat.com/2170167",
 8892            "https://bugzilla.redhat.com/2170172",
 8893            "https://bugzilla.redhat.com/2170178",
 8894            "https://bugzilla.redhat.com/2170187",
 8895            "https://bugzilla.redhat.com/2170192",
 8896            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0800",
 8897            "https://errata.almalinux.org/9/ALSA-2023-3711.html",
 8898            "https://gitlab.com/gitlab-org/cves/-/blob/master/2023/CVE-2023-0800.json",
 8899            "https://gitlab.com/libtiff/libtiff/-/commit/33aee1275d9d1384791d2206776eb8152d397f00",
 8900            "https://gitlab.com/libtiff/libtiff/-/issues/496",
 8901            "https://linux.oracle.com/cve/CVE-2023-0800.html",
 8902            "https://linux.oracle.com/errata/ELSA-2023-3711.html",
 8903            "https://lists.debian.org/debian-lts-announce/2023/02/msg00026.html",
 8904            "https://nvd.nist.gov/vuln/detail/CVE-2023-0800",
 8905            "https://security.gentoo.org/glsa/202305-31",
 8906            "https://security.netapp.com/advisory/ntap-20230316-0002/",
 8907            "https://ubuntu.com/security/notices/USN-5923-1",
 8908            "https://www.cve.org/CVERecord?id=CVE-2023-0800",
 8909            "https://www.debian.org/security/2023/dsa-5361"
 8910          ],
 8911          "PublishedDate": "2023-02-13T23:15:00Z",
 8912          "LastModifiedDate": "2023-05-30T06:16:00Z"
 8913        },
 8914        {
 8915          "VulnerabilityID": "CVE-2023-0801",
 8916          "VendorIDs": [
 8917            "DSA-5361-1"
 8918          ],
 8919          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8920          "PkgName": "libtiff5",
 8921          "InstalledVersion": "4.2.0-1+deb11u1",
 8922          "FixedVersion": "4.2.0-1+deb11u4",
 8923          "Status": "fixed",
 8924          "Layer": {
 8925            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8926            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8927          },
 8928          "SeveritySource": "nvd",
 8929          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0801",
 8930          "DataSource": {
 8931            "ID": "debian",
 8932            "Name": "Debian Security Tracker",
 8933            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 8934          },
 8935          "Title": "out-of-bounds write in _TIFFmemcpy() in libtiff/tif_unix.c when called by functions in tools/tiffcrop.c",
 8936          "Description": "LibTIFF 4.4.0 has an out-of-bounds write in tiffcrop in libtiff/tif_unix.c:368, invoked by tools/tiffcrop.c:2903 and tools/tiffcrop.c:6778, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 33aee127.",
 8937          "Severity": "MEDIUM",
 8938          "CweIDs": [
 8939            "CWE-787"
 8940          ],
 8941          "CVSS": {
 8942            "nvd": {
 8943              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 8944              "V3Score": 5.5
 8945            },
 8946            "redhat": {
 8947              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H",
 8948              "V3Score": 6.1
 8949            }
 8950          },
 8951          "References": [
 8952            "https://access.redhat.com/errata/RHSA-2023:3711",
 8953            "https://access.redhat.com/security/cve/CVE-2023-0801",
 8954            "https://bugzilla.redhat.com/2163606",
 8955            "https://bugzilla.redhat.com/2170119",
 8956            "https://bugzilla.redhat.com/2170146",
 8957            "https://bugzilla.redhat.com/2170151",
 8958            "https://bugzilla.redhat.com/2170157",
 8959            "https://bugzilla.redhat.com/2170162",
 8960            "https://bugzilla.redhat.com/2170167",
 8961            "https://bugzilla.redhat.com/2170172",
 8962            "https://bugzilla.redhat.com/2170178",
 8963            "https://bugzilla.redhat.com/2170187",
 8964            "https://bugzilla.redhat.com/2170192",
 8965            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0801",
 8966            "https://errata.almalinux.org/9/ALSA-2023-3711.html",
 8967            "https://gitlab.com/gitlab-org/cves/-/blob/master/2023/CVE-2023-0801.json",
 8968            "https://gitlab.com/libtiff/libtiff/-/commit/33aee1275d9d1384791d2206776eb8152d397f00",
 8969            "https://gitlab.com/libtiff/libtiff/-/issues/498",
 8970            "https://linux.oracle.com/cve/CVE-2023-0801.html",
 8971            "https://linux.oracle.com/errata/ELSA-2023-3711.html",
 8972            "https://lists.debian.org/debian-lts-announce/2023/02/msg00026.html",
 8973            "https://nvd.nist.gov/vuln/detail/CVE-2023-0801",
 8974            "https://security.gentoo.org/glsa/202305-31",
 8975            "https://security.netapp.com/advisory/ntap-20230316-0002/",
 8976            "https://ubuntu.com/security/notices/USN-5923-1",
 8977            "https://www.cve.org/CVERecord?id=CVE-2023-0801",
 8978            "https://www.debian.org/security/2023/dsa-5361"
 8979          ],
 8980          "PublishedDate": "2023-02-13T23:15:00Z",
 8981          "LastModifiedDate": "2023-05-30T06:16:00Z"
 8982        },
 8983        {
 8984          "VulnerabilityID": "CVE-2023-0802",
 8985          "VendorIDs": [
 8986            "DSA-5361-1"
 8987          ],
 8988          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 8989          "PkgName": "libtiff5",
 8990          "InstalledVersion": "4.2.0-1+deb11u1",
 8991          "FixedVersion": "4.2.0-1+deb11u4",
 8992          "Status": "fixed",
 8993          "Layer": {
 8994            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 8995            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 8996          },
 8997          "SeveritySource": "nvd",
 8998          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0802",
 8999          "DataSource": {
 9000            "ID": "debian",
 9001            "Name": "Debian Security Tracker",
 9002            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9003          },
 9004          "Title": "out-of-bounds write in extractContigSamplesShifted32bits() in tools/tiffcrop.c",
 9005          "Description": "LibTIFF 4.4.0 has an out-of-bounds write in tiffcrop in tools/tiffcrop.c:3724, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 33aee127.",
 9006          "Severity": "MEDIUM",
 9007          "CweIDs": [
 9008            "CWE-787"
 9009          ],
 9010          "CVSS": {
 9011            "nvd": {
 9012              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9013              "V3Score": 5.5
 9014            },
 9015            "redhat": {
 9016              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H",
 9017              "V3Score": 6.1
 9018            }
 9019          },
 9020          "References": [
 9021            "https://access.redhat.com/errata/RHSA-2023:3711",
 9022            "https://access.redhat.com/security/cve/CVE-2023-0802",
 9023            "https://bugzilla.redhat.com/2163606",
 9024            "https://bugzilla.redhat.com/2170119",
 9025            "https://bugzilla.redhat.com/2170146",
 9026            "https://bugzilla.redhat.com/2170151",
 9027            "https://bugzilla.redhat.com/2170157",
 9028            "https://bugzilla.redhat.com/2170162",
 9029            "https://bugzilla.redhat.com/2170167",
 9030            "https://bugzilla.redhat.com/2170172",
 9031            "https://bugzilla.redhat.com/2170178",
 9032            "https://bugzilla.redhat.com/2170187",
 9033            "https://bugzilla.redhat.com/2170192",
 9034            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0802",
 9035            "https://errata.almalinux.org/9/ALSA-2023-3711.html",
 9036            "https://gitlab.com/gitlab-org/cves/-/blob/master/2023/CVE-2023-0802.json",
 9037            "https://gitlab.com/libtiff/libtiff/-/commit/33aee1275d9d1384791d2206776eb8152d397f00",
 9038            "https://gitlab.com/libtiff/libtiff/-/issues/500",
 9039            "https://linux.oracle.com/cve/CVE-2023-0802.html",
 9040            "https://linux.oracle.com/errata/ELSA-2023-3711.html",
 9041            "https://lists.debian.org/debian-lts-announce/2023/02/msg00026.html",
 9042            "https://nvd.nist.gov/vuln/detail/CVE-2023-0802",
 9043            "https://security.gentoo.org/glsa/202305-31",
 9044            "https://security.netapp.com/advisory/ntap-20230316-0002/",
 9045            "https://ubuntu.com/security/notices/USN-5923-1",
 9046            "https://www.cve.org/CVERecord?id=CVE-2023-0802",
 9047            "https://www.debian.org/security/2023/dsa-5361"
 9048          ],
 9049          "PublishedDate": "2023-02-13T23:15:00Z",
 9050          "LastModifiedDate": "2023-05-30T06:16:00Z"
 9051        },
 9052        {
 9053          "VulnerabilityID": "CVE-2023-0803",
 9054          "VendorIDs": [
 9055            "DSA-5361-1"
 9056          ],
 9057          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9058          "PkgName": "libtiff5",
 9059          "InstalledVersion": "4.2.0-1+deb11u1",
 9060          "FixedVersion": "4.2.0-1+deb11u4",
 9061          "Status": "fixed",
 9062          "Layer": {
 9063            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9064            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9065          },
 9066          "SeveritySource": "nvd",
 9067          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0803",
 9068          "DataSource": {
 9069            "ID": "debian",
 9070            "Name": "Debian Security Tracker",
 9071            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9072          },
 9073          "Title": "out-of-bounds write in extractContigSamplesShifted16bits() in tools/tiffcrop.c",
 9074          "Description": "LibTIFF 4.4.0 has an out-of-bounds write in tiffcrop in tools/tiffcrop.c:3516, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 33aee127.",
 9075          "Severity": "MEDIUM",
 9076          "CweIDs": [
 9077            "CWE-787"
 9078          ],
 9079          "CVSS": {
 9080            "nvd": {
 9081              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9082              "V3Score": 5.5
 9083            },
 9084            "redhat": {
 9085              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H",
 9086              "V3Score": 6.1
 9087            }
 9088          },
 9089          "References": [
 9090            "https://access.redhat.com/errata/RHSA-2023:3711",
 9091            "https://access.redhat.com/security/cve/CVE-2023-0803",
 9092            "https://bugzilla.redhat.com/2163606",
 9093            "https://bugzilla.redhat.com/2170119",
 9094            "https://bugzilla.redhat.com/2170146",
 9095            "https://bugzilla.redhat.com/2170151",
 9096            "https://bugzilla.redhat.com/2170157",
 9097            "https://bugzilla.redhat.com/2170162",
 9098            "https://bugzilla.redhat.com/2170167",
 9099            "https://bugzilla.redhat.com/2170172",
 9100            "https://bugzilla.redhat.com/2170178",
 9101            "https://bugzilla.redhat.com/2170187",
 9102            "https://bugzilla.redhat.com/2170192",
 9103            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0803",
 9104            "https://errata.almalinux.org/9/ALSA-2023-3711.html",
 9105            "https://gitlab.com/gitlab-org/cves/-/blob/master/2023/CVE-2023-0803.json",
 9106            "https://gitlab.com/libtiff/libtiff/-/commit/33aee1275d9d1384791d2206776eb8152d397f00",
 9107            "https://gitlab.com/libtiff/libtiff/-/issues/501",
 9108            "https://linux.oracle.com/cve/CVE-2023-0803.html",
 9109            "https://linux.oracle.com/errata/ELSA-2023-3711.html",
 9110            "https://lists.debian.org/debian-lts-announce/2023/02/msg00026.html",
 9111            "https://nvd.nist.gov/vuln/detail/CVE-2023-0803",
 9112            "https://security.gentoo.org/glsa/202305-31",
 9113            "https://security.netapp.com/advisory/ntap-20230316-0002/",
 9114            "https://ubuntu.com/security/notices/USN-5923-1",
 9115            "https://www.cve.org/CVERecord?id=CVE-2023-0803",
 9116            "https://www.debian.org/security/2023/dsa-5361"
 9117          ],
 9118          "PublishedDate": "2023-02-13T23:15:00Z",
 9119          "LastModifiedDate": "2023-05-30T06:16:00Z"
 9120        },
 9121        {
 9122          "VulnerabilityID": "CVE-2023-0804",
 9123          "VendorIDs": [
 9124            "DSA-5361-1"
 9125          ],
 9126          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9127          "PkgName": "libtiff5",
 9128          "InstalledVersion": "4.2.0-1+deb11u1",
 9129          "FixedVersion": "4.2.0-1+deb11u4",
 9130          "Status": "fixed",
 9131          "Layer": {
 9132            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9133            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9134          },
 9135          "SeveritySource": "nvd",
 9136          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0804",
 9137          "DataSource": {
 9138            "ID": "debian",
 9139            "Name": "Debian Security Tracker",
 9140            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9141          },
 9142          "Title": "out-of-bounds write in extractContigSamplesShifted24bits() in tools/tiffcrop.c",
 9143          "Description": "LibTIFF 4.4.0 has an out-of-bounds write in tiffcrop in tools/tiffcrop.c:3609, allowing attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 33aee127.",
 9144          "Severity": "MEDIUM",
 9145          "CweIDs": [
 9146            "CWE-787"
 9147          ],
 9148          "CVSS": {
 9149            "nvd": {
 9150              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9151              "V3Score": 5.5
 9152            },
 9153            "redhat": {
 9154              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H",
 9155              "V3Score": 6.1
 9156            }
 9157          },
 9158          "References": [
 9159            "https://access.redhat.com/errata/RHSA-2023:3711",
 9160            "https://access.redhat.com/security/cve/CVE-2023-0804",
 9161            "https://bugzilla.redhat.com/2163606",
 9162            "https://bugzilla.redhat.com/2170119",
 9163            "https://bugzilla.redhat.com/2170146",
 9164            "https://bugzilla.redhat.com/2170151",
 9165            "https://bugzilla.redhat.com/2170157",
 9166            "https://bugzilla.redhat.com/2170162",
 9167            "https://bugzilla.redhat.com/2170167",
 9168            "https://bugzilla.redhat.com/2170172",
 9169            "https://bugzilla.redhat.com/2170178",
 9170            "https://bugzilla.redhat.com/2170187",
 9171            "https://bugzilla.redhat.com/2170192",
 9172            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0804",
 9173            "https://errata.almalinux.org/9/ALSA-2023-3711.html",
 9174            "https://gitlab.com/gitlab-org/cves/-/blob/master/2023/CVE-2023-0804.json",
 9175            "https://gitlab.com/libtiff/libtiff/-/commit/33aee1275d9d1384791d2206776eb8152d397f00",
 9176            "https://gitlab.com/libtiff/libtiff/-/issues/497",
 9177            "https://linux.oracle.com/cve/CVE-2023-0804.html",
 9178            "https://linux.oracle.com/errata/ELSA-2023-3711.html",
 9179            "https://lists.debian.org/debian-lts-announce/2023/02/msg00026.html",
 9180            "https://nvd.nist.gov/vuln/detail/CVE-2023-0804",
 9181            "https://security.gentoo.org/glsa/202305-31",
 9182            "https://security.netapp.com/advisory/ntap-20230324-0009/",
 9183            "https://ubuntu.com/security/notices/USN-5923-1",
 9184            "https://www.cve.org/CVERecord?id=CVE-2023-0804",
 9185            "https://www.debian.org/security/2023/dsa-5361"
 9186          ],
 9187          "PublishedDate": "2023-02-13T23:15:00Z",
 9188          "LastModifiedDate": "2023-05-30T06:16:00Z"
 9189        },
 9190        {
 9191          "VulnerabilityID": "CVE-2023-25433",
 9192          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9193          "PkgName": "libtiff5",
 9194          "InstalledVersion": "4.2.0-1+deb11u1",
 9195          "Status": "affected",
 9196          "Layer": {
 9197            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9198            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9199          },
 9200          "SeveritySource": "nvd",
 9201          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-25433",
 9202          "DataSource": {
 9203            "ID": "debian",
 9204            "Name": "Debian Security Tracker",
 9205            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9206          },
 9207          "Title": "Buffer Overflow via /libtiff/tools/tiffcrop.c",
 9208          "Description": "libtiff 4.5.0 is vulnerable to Buffer Overflow via /libtiff/tools/tiffcrop.c:8499. Incorrect updating of buffer size after rotateImage() in tiffcrop cause heap-buffer-overflow and SEGV.",
 9209          "Severity": "MEDIUM",
 9210          "CweIDs": [
 9211            "CWE-120"
 9212          ],
 9213          "CVSS": {
 9214            "nvd": {
 9215              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9216              "V3Score": 5.5
 9217            },
 9218            "redhat": {
 9219              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9220              "V3Score": 5.5
 9221            }
 9222          },
 9223          "References": [
 9224            "https://access.redhat.com/security/cve/CVE-2023-25433",
 9225            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-25433",
 9226            "https://gitlab.com/libtiff/libtiff/-/issues/520",
 9227            "https://gitlab.com/libtiff/libtiff/-/merge_requests/467",
 9228            "https://lists.debian.org/debian-lts-announce/2023/07/msg00034.html",
 9229            "https://nvd.nist.gov/vuln/detail/CVE-2023-25433",
 9230            "https://ubuntu.com/security/notices/USN-6229-1",
 9231            "https://www.cve.org/CVERecord?id=CVE-2023-25433"
 9232          ],
 9233          "PublishedDate": "2023-06-29T20:15:00Z",
 9234          "LastModifiedDate": "2023-08-01T02:15:00Z"
 9235        },
 9236        {
 9237          "VulnerabilityID": "CVE-2023-25435",
 9238          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9239          "PkgName": "libtiff5",
 9240          "InstalledVersion": "4.2.0-1+deb11u1",
 9241          "FixedVersion": "4.2.0-1+deb11u4",
 9242          "Status": "fixed",
 9243          "Layer": {
 9244            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9245            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9246          },
 9247          "SeveritySource": "nvd",
 9248          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-25435",
 9249          "DataSource": {
 9250            "ID": "debian",
 9251            "Name": "Debian Security Tracker",
 9252            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9253          },
 9254          "Title": "heap-buffer-overflow in extractContigSamplesShifted8bits() in tiffcrop.c",
 9255          "Description": "libtiff 4.5.0 is vulnerable to Buffer Overflow via extractContigSamplesShifted8bits() at /libtiff/tools/tiffcrop.c:3753.",
 9256          "Severity": "MEDIUM",
 9257          "CweIDs": [
 9258            "CWE-120"
 9259          ],
 9260          "CVSS": {
 9261            "nvd": {
 9262              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9263              "V3Score": 5.5
 9264            },
 9265            "redhat": {
 9266              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9267              "V3Score": 5.5
 9268            }
 9269          },
 9270          "References": [
 9271            "https://access.redhat.com/security/cve/CVE-2023-25435",
 9272            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-25435",
 9273            "https://gitlab.com/libtiff/libtiff/-/issues/518",
 9274            "https://nvd.nist.gov/vuln/detail/CVE-2023-25435",
 9275            "https://www.cve.org/CVERecord?id=CVE-2023-25435"
 9276          ],
 9277          "PublishedDate": "2023-06-21T20:15:00Z",
 9278          "LastModifiedDate": "2023-06-28T18:51:00Z"
 9279        },
 9280        {
 9281          "VulnerabilityID": "CVE-2023-26965",
 9282          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9283          "PkgName": "libtiff5",
 9284          "InstalledVersion": "4.2.0-1+deb11u1",
 9285          "Status": "affected",
 9286          "Layer": {
 9287            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9288            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9289          },
 9290          "SeveritySource": "nvd",
 9291          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-26965",
 9292          "DataSource": {
 9293            "ID": "debian",
 9294            "Name": "Debian Security Tracker",
 9295            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9296          },
 9297          "Title": "heap-based use after free via a crafted TIFF image in loadImage() in tiffcrop.c",
 9298          "Description": "loadImage() in tools/tiffcrop.c in LibTIFF through 4.5.0 has a heap-based use after free via a crafted TIFF image.",
 9299          "Severity": "MEDIUM",
 9300          "CweIDs": [
 9301            "CWE-787"
 9302          ],
 9303          "CVSS": {
 9304            "nvd": {
 9305              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9306              "V3Score": 5.5
 9307            },
 9308            "redhat": {
 9309              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9310              "V3Score": 5.5
 9311            }
 9312          },
 9313          "References": [
 9314            "https://access.redhat.com/security/cve/CVE-2023-26965",
 9315            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26965",
 9316            "https://gitlab.com/libtiff/libtiff/-/merge_requests/472",
 9317            "https://lists.debian.org/debian-lts-announce/2023/07/msg00034.html",
 9318            "https://nvd.nist.gov/vuln/detail/CVE-2023-26965",
 9319            "https://security.netapp.com/advisory/ntap-20230706-0009/",
 9320            "https://ubuntu.com/security/notices/USN-6229-1",
 9321            "https://www.cve.org/CVERecord?id=CVE-2023-26965"
 9322          ],
 9323          "PublishedDate": "2023-06-14T21:15:00Z",
 9324          "LastModifiedDate": "2023-08-01T02:15:00Z"
 9325        },
 9326        {
 9327          "VulnerabilityID": "CVE-2023-26966",
 9328          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9329          "PkgName": "libtiff5",
 9330          "InstalledVersion": "4.2.0-1+deb11u1",
 9331          "Status": "affected",
 9332          "Layer": {
 9333            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9334            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9335          },
 9336          "SeveritySource": "nvd",
 9337          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-26966",
 9338          "DataSource": {
 9339            "ID": "debian",
 9340            "Name": "Debian Security Tracker",
 9341            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9342          },
 9343          "Title": "Buffer Overflow in uv_encode()",
 9344          "Description": "libtiff 4.5.0 is vulnerable to Buffer Overflow in uv_encode() when libtiff reads a corrupted little-endian TIFF file and specifies the output to be big-endian.",
 9345          "Severity": "MEDIUM",
 9346          "CweIDs": [
 9347            "CWE-120"
 9348          ],
 9349          "CVSS": {
 9350            "nvd": {
 9351              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9352              "V3Score": 5.5
 9353            },
 9354            "redhat": {
 9355              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9356              "V3Score": 5.5
 9357            }
 9358          },
 9359          "References": [
 9360            "https://access.redhat.com/security/cve/CVE-2023-26966",
 9361            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26966",
 9362            "https://gitlab.com/libtiff/libtiff/-/commit/b0e1c25dd1d065200c8d8f59ad0afe014861a1b9 (v4.5.1rc1)",
 9363            "https://gitlab.com/libtiff/libtiff/-/issues/530",
 9364            "https://gitlab.com/libtiff/libtiff/-/merge_requests/473",
 9365            "https://lists.debian.org/debian-lts-announce/2023/07/msg00034.html",
 9366            "https://nvd.nist.gov/vuln/detail/CVE-2023-26966",
 9367            "https://ubuntu.com/security/notices/USN-6229-1",
 9368            "https://www.cve.org/CVERecord?id=CVE-2023-26966"
 9369          ],
 9370          "PublishedDate": "2023-06-29T20:15:00Z",
 9371          "LastModifiedDate": "2023-08-01T02:15:00Z"
 9372        },
 9373        {
 9374          "VulnerabilityID": "CVE-2023-2908",
 9375          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9376          "PkgName": "libtiff5",
 9377          "InstalledVersion": "4.2.0-1+deb11u1",
 9378          "Status": "affected",
 9379          "Layer": {
 9380            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9381            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9382          },
 9383          "SeveritySource": "nvd",
 9384          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2908",
 9385          "DataSource": {
 9386            "ID": "debian",
 9387            "Name": "Debian Security Tracker",
 9388            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9389          },
 9390          "Title": "null pointer dereference in tif_dir.c",
 9391          "Description": "A null pointer dereference issue was found in Libtiff's tif_dir.c file. This issue may allow an attacker to pass a crafted TIFF image file to the tiffcp utility which triggers a runtime error that causes undefined behavior. This will result in an application crash, eventually leading to a denial of service.",
 9392          "Severity": "MEDIUM",
 9393          "CweIDs": [
 9394            "CWE-476"
 9395          ],
 9396          "CVSS": {
 9397            "nvd": {
 9398              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9399              "V3Score": 5.5
 9400            },
 9401            "redhat": {
 9402              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9403              "V3Score": 5.5
 9404            }
 9405          },
 9406          "References": [
 9407            "https://access.redhat.com/security/cve/CVE-2023-2908",
 9408            "https://bugzilla.redhat.com/show_bug.cgi?id=2218830",
 9409            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2908",
 9410            "https://gitlab.com/libtiff/libtiff/-/commit/9bd48f0dbd64fb94dc2b5b05238fde0bfdd4ff3f",
 9411            "https://gitlab.com/libtiff/libtiff/-/merge_requests/479",
 9412            "https://lists.debian.org/debian-lts-announce/2023/07/msg00034.html",
 9413            "https://nvd.nist.gov/vuln/detail/CVE-2023-2908",
 9414            "https://security.netapp.com/advisory/ntap-20230731-0004/",
 9415            "https://www.cve.org/CVERecord?id=CVE-2023-2908"
 9416          ],
 9417          "PublishedDate": "2023-06-30T22:15:00Z",
 9418          "LastModifiedDate": "2023-08-02T15:41:00Z"
 9419        },
 9420        {
 9421          "VulnerabilityID": "CVE-2023-30086",
 9422          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9423          "PkgName": "libtiff5",
 9424          "InstalledVersion": "4.2.0-1+deb11u1",
 9425          "FixedVersion": "4.2.0-1+deb11u3",
 9426          "Status": "fixed",
 9427          "Layer": {
 9428            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9429            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9430          },
 9431          "SeveritySource": "nvd",
 9432          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-30086",
 9433          "DataSource": {
 9434            "ID": "debian",
 9435            "Name": "Debian Security Tracker",
 9436            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9437          },
 9438          "Title": "Heap buffer overflow in tiffcp() at tiffcp.c",
 9439          "Description": "Buffer Overflow vulnerability found in Libtiff V.4.0.7 allows a local attacker to cause a denial of service via the tiffcp function in tiffcp.c.",
 9440          "Severity": "MEDIUM",
 9441          "CweIDs": [
 9442            "CWE-787"
 9443          ],
 9444          "CVSS": {
 9445            "nvd": {
 9446              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
 9447              "V3Score": 5.5
 9448            },
 9449            "redhat": {
 9450              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
 9451              "V3Score": 5.5
 9452            }
 9453          },
 9454          "References": [
 9455            "http://libtiff-release-v4-0-7.com",
 9456            "http://tiffcp.com",
 9457            "https://access.redhat.com/security/cve/CVE-2023-30086",
 9458            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30086",
 9459            "https://gitlab.com/libtiff/libtiff/-/issues/538",
 9460            "https://nvd.nist.gov/vuln/detail/CVE-2023-30086",
 9461            "https://security.netapp.com/advisory/ntap-20230616-0003/",
 9462            "https://www.cve.org/CVERecord?id=CVE-2023-30086"
 9463          ],
 9464          "PublishedDate": "2023-05-09T16:15:00Z",
 9465          "LastModifiedDate": "2023-06-16T15:15:00Z"
 9466        },
 9467        {
 9468          "VulnerabilityID": "CVE-2023-30774",
 9469          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9470          "PkgName": "libtiff5",
 9471          "InstalledVersion": "4.2.0-1+deb11u1",
 9472          "FixedVersion": "4.2.0-1+deb11u3",
 9473          "Status": "fixed",
 9474          "Layer": {
 9475            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9476            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9477          },
 9478          "SeveritySource": "nvd",
 9479          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-30774",
 9480          "DataSource": {
 9481            "ID": "debian",
 9482            "Name": "Debian Security Tracker",
 9483            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9484          },
 9485          "Title": "heap buffer overflow issues related to TIFFTAG_INKNAMES and related TIFFTAG_NUMBEROFINKS value",
 9486          "Description": "A vulnerability was found in the libtiff library. This flaw causes a heap buffer overflow issue via the TIFFTAG_INKNAMES and TIFFTAG_NUMBEROFINKS values.",
 9487          "Severity": "MEDIUM",
 9488          "CweIDs": [
 9489            "CWE-787"
 9490          ],
 9491          "CVSS": {
 9492            "nvd": {
 9493              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9494              "V3Score": 5.5
 9495            },
 9496            "redhat": {
 9497              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 9498              "V3Score": 6.2
 9499            }
 9500          },
 9501          "References": [
 9502            "https://access.redhat.com/errata/RHSA-2023:2340",
 9503            "https://access.redhat.com/security/cve/CVE-2023-30774",
 9504            "https://bugzilla.redhat.com/2142734",
 9505            "https://bugzilla.redhat.com/2142736",
 9506            "https://bugzilla.redhat.com/2142738",
 9507            "https://bugzilla.redhat.com/2142740",
 9508            "https://bugzilla.redhat.com/2142741",
 9509            "https://bugzilla.redhat.com/2142742",
 9510            "https://bugzilla.redhat.com/2148918",
 9511            "https://bugzilla.redhat.com/2176220",
 9512            "https://bugzilla.redhat.com/2187139",
 9513            "https://bugzilla.redhat.com/2187141",
 9514            "https://bugzilla.redhat.com/show_bug.cgi?id=2187139",
 9515            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30774",
 9516            "https://errata.almalinux.org/9/ALSA-2023-2340.html",
 9517            "https://gitlab.com/libtiff/libtiff/-/commit/e813112545942107551433d61afd16ac094ff246",
 9518            "https://gitlab.com/libtiff/libtiff/-/commit/f00484b9519df933723deb38fff943dc291a793d (v4.5.0rc1)",
 9519            "https://gitlab.com/libtiff/libtiff/-/issues/463",
 9520            "https://linux.oracle.com/cve/CVE-2023-30774.html",
 9521            "https://linux.oracle.com/errata/ELSA-2023-2340.html",
 9522            "https://nvd.nist.gov/vuln/detail/CVE-2023-30774",
 9523            "https://security.netapp.com/advisory/ntap-20230703-0002/",
 9524            "https://www.cve.org/CVERecord?id=CVE-2023-30774"
 9525          ],
 9526          "PublishedDate": "2023-05-19T15:15:00Z",
 9527          "LastModifiedDate": "2023-07-03T16:15:00Z"
 9528        },
 9529        {
 9530          "VulnerabilityID": "CVE-2023-3316",
 9531          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9532          "PkgName": "libtiff5",
 9533          "InstalledVersion": "4.2.0-1+deb11u1",
 9534          "Status": "affected",
 9535          "Layer": {
 9536            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9537            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9538          },
 9539          "SeveritySource": "nvd",
 9540          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-3316",
 9541          "DataSource": {
 9542            "ID": "debian",
 9543            "Name": "Debian Security Tracker",
 9544            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9545          },
 9546          "Title": "null pointer dereference in TIFFClose()",
 9547          "Description": "A NULL pointer dereference in TIFFClose() is caused by a failure to open an output file (non-existent path or a path that requires permissions like /dev/null) while specifying zones.\n\n",
 9548          "Severity": "MEDIUM",
 9549          "CweIDs": [
 9550            "CWE-476"
 9551          ],
 9552          "CVSS": {
 9553            "nvd": {
 9554              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9555              "V3Score": 6.5
 9556            },
 9557            "redhat": {
 9558              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9559              "V3Score": 5.5
 9560            }
 9561          },
 9562          "References": [
 9563            "https://access.redhat.com/security/cve/CVE-2023-3316",
 9564            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-3316",
 9565            "https://gitlab.com/libtiff/libtiff/-/issues/515",
 9566            "https://gitlab.com/libtiff/libtiff/-/merge_requests/468",
 9567            "https://lists.debian.org/debian-lts-announce/2023/07/msg00034.html",
 9568            "https://nvd.nist.gov/vuln/detail/CVE-2023-3316",
 9569            "https://research.jfrog.com/vulnerabilities/libtiff-nullderef-dos-xray-522144/",
 9570            "https://ubuntu.com/security/notices/USN-6229-1",
 9571            "https://www.cve.org/CVERecord?id=CVE-2023-3316"
 9572          ],
 9573          "PublishedDate": "2023-06-19T12:15:00Z",
 9574          "LastModifiedDate": "2023-08-01T02:15:00Z"
 9575        },
 9576        {
 9577          "VulnerabilityID": "CVE-2023-3618",
 9578          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9579          "PkgName": "libtiff5",
 9580          "InstalledVersion": "4.2.0-1+deb11u1",
 9581          "Status": "affected",
 9582          "Layer": {
 9583            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9584            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9585          },
 9586          "SeveritySource": "nvd",
 9587          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-3618",
 9588          "DataSource": {
 9589            "ID": "debian",
 9590            "Name": "Debian Security Tracker",
 9591            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9592          },
 9593          "Title": "segmentation fault in Fax3Encode in libtiff/tif_fax3.c",
 9594          "Description": "A flaw was found in libtiff. A specially crafted tiff file can lead to a segmentation fault due to a buffer overflow in the Fax3Encode function in libtiff/tif_fax3.c, resulting in a denial of service.",
 9595          "Severity": "MEDIUM",
 9596          "CweIDs": [
 9597            "CWE-120"
 9598          ],
 9599          "CVSS": {
 9600            "nvd": {
 9601              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9602              "V3Score": 6.5
 9603            },
 9604            "redhat": {
 9605              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 9606              "V3Score": 7.5
 9607            }
 9608          },
 9609          "References": [
 9610            "https://access.redhat.com/security/cve/CVE-2023-3618",
 9611            "https://bugzilla.redhat.com/show_bug.cgi?id=2215865",
 9612            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-3618",
 9613            "https://gitlab.com/libtiff/libtiff/-/issues/529",
 9614            "https://lists.debian.org/debian-lts-announce/2023/07/msg00034.html",
 9615            "https://nvd.nist.gov/vuln/detail/CVE-2023-3618",
 9616            "https://www.cve.org/CVERecord?id=CVE-2023-3618"
 9617          ],
 9618          "PublishedDate": "2023-07-12T15:15:00Z",
 9619          "LastModifiedDate": "2023-08-01T02:15:00Z"
 9620        },
 9621        {
 9622          "VulnerabilityID": "CVE-2023-38288",
 9623          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9624          "PkgName": "libtiff5",
 9625          "InstalledVersion": "4.2.0-1+deb11u1",
 9626          "Status": "affected",
 9627          "Layer": {
 9628            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9629            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9630          },
 9631          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-38288",
 9632          "DataSource": {
 9633            "ID": "debian",
 9634            "Name": "Debian Security Tracker",
 9635            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9636          },
 9637          "Title": "potential integer overflow in raw2tiff.c",
 9638          "Description": "No description is available for this CVE.",
 9639          "Severity": "MEDIUM",
 9640          "CVSS": {
 9641            "redhat": {
 9642              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9643              "V3Score": 6.5
 9644            }
 9645          },
 9646          "References": [
 9647            "https://access.redhat.com/security/cve/CVE-2023-38288",
 9648            "https://nvd.nist.gov/vuln/detail/CVE-2023-38288",
 9649            "https://www.cve.org/CVERecord?id=CVE-2023-38288"
 9650          ]
 9651        },
 9652        {
 9653          "VulnerabilityID": "CVE-2023-38289",
 9654          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9655          "PkgName": "libtiff5",
 9656          "InstalledVersion": "4.2.0-1+deb11u1",
 9657          "Status": "affected",
 9658          "Layer": {
 9659            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9660            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9661          },
 9662          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-38289",
 9663          "DataSource": {
 9664            "ID": "debian",
 9665            "Name": "Debian Security Tracker",
 9666            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9667          },
 9668          "Title": "integer overflow in tiffcp.c",
 9669          "Description": "No description is available for this CVE.",
 9670          "Severity": "MEDIUM",
 9671          "CVSS": {
 9672            "redhat": {
 9673              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9674              "V3Score": 6.5
 9675            }
 9676          },
 9677          "References": [
 9678            "https://access.redhat.com/security/cve/CVE-2023-38289",
 9679            "https://nvd.nist.gov/vuln/detail/CVE-2023-38289",
 9680            "https://www.cve.org/CVERecord?id=CVE-2023-38289"
 9681          ]
 9682        },
 9683        {
 9684          "VulnerabilityID": "CVE-2017-16232",
 9685          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9686          "PkgName": "libtiff5",
 9687          "InstalledVersion": "4.2.0-1+deb11u1",
 9688          "Status": "affected",
 9689          "Layer": {
 9690            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9691            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9692          },
 9693          "SeveritySource": "debian",
 9694          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-16232",
 9695          "DataSource": {
 9696            "ID": "debian",
 9697            "Name": "Debian Security Tracker",
 9698            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9699          },
 9700          "Title": "libtiff: Memory leaks in tif_open.c, tif_lzw.c, and tif_aux.c",
 9701          "Description": "** DISPUTED ** LibTIFF 4.0.8 has multiple memory leak vulnerabilities, which allow attackers to cause a denial of service (memory consumption), as demonstrated by tif_open.c, tif_lzw.c, and tif_aux.c. NOTE: Third parties were unable to reproduce the issue.",
 9702          "Severity": "LOW",
 9703          "CweIDs": [
 9704            "CWE-772"
 9705          ],
 9706          "CVSS": {
 9707            "nvd": {
 9708              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
 9709              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 9710              "V2Score": 5,
 9711              "V3Score": 7.5
 9712            },
 9713            "redhat": {
 9714              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L",
 9715              "V3Score": 3.3
 9716            }
 9717          },
 9718          "References": [
 9719            "http://lists.opensuse.org/opensuse-security-announce/2018-01/msg00036.html",
 9720            "http://lists.opensuse.org/opensuse-security-announce/2018-01/msg00041.html",
 9721            "http://packetstormsecurity.com/files/150896/LibTIFF-4.0.8-Memory-Leak.html",
 9722            "http://seclists.org/fulldisclosure/2018/Dec/32",
 9723            "http://seclists.org/fulldisclosure/2018/Dec/47",
 9724            "http://www.openwall.com/lists/oss-security/2017/11/01/11",
 9725            "http://www.openwall.com/lists/oss-security/2017/11/01/3",
 9726            "http://www.openwall.com/lists/oss-security/2017/11/01/7",
 9727            "http://www.openwall.com/lists/oss-security/2017/11/01/8",
 9728            "http://www.securityfocus.com/bid/101696",
 9729            "https://access.redhat.com/security/cve/CVE-2017-16232",
 9730            "https://nvd.nist.gov/vuln/detail/CVE-2017-16232",
 9731            "https://www.cve.org/CVERecord?id=CVE-2017-16232"
 9732          ],
 9733          "PublishedDate": "2019-03-21T15:59:00Z",
 9734          "LastModifiedDate": "2019-10-03T00:03:00Z"
 9735        },
 9736        {
 9737          "VulnerabilityID": "CVE-2017-17973",
 9738          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9739          "PkgName": "libtiff5",
 9740          "InstalledVersion": "4.2.0-1+deb11u1",
 9741          "Status": "affected",
 9742          "Layer": {
 9743            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9744            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9745          },
 9746          "SeveritySource": "debian",
 9747          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-17973",
 9748          "DataSource": {
 9749            "ID": "debian",
 9750            "Name": "Debian Security Tracker",
 9751            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9752          },
 9753          "Title": "libtiff: heap-based use after free in tiff2pdf.c:t2p_writeproc",
 9754          "Description": "** DISPUTED ** In LibTIFF 4.0.8, there is a heap-based use-after-free in the t2p_writeproc function in tiff2pdf.c. NOTE: there is a third-party report of inability to reproduce this issue.",
 9755          "Severity": "LOW",
 9756          "CweIDs": [
 9757            "CWE-416"
 9758          ],
 9759          "CVSS": {
 9760            "nvd": {
 9761              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
 9762              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 9763              "V2Score": 6.8,
 9764              "V3Score": 8.8
 9765            },
 9766            "redhat": {
 9767              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
 9768              "V3Score": 7.5
 9769            }
 9770          },
 9771          "References": [
 9772            "http://bugzilla.maptools.org/show_bug.cgi?id=2769",
 9773            "http://www.securityfocus.com/bid/102331",
 9774            "https://access.redhat.com/security/cve/CVE-2017-17973",
 9775            "https://bugzilla.novell.com/show_bug.cgi?id=1074318",
 9776            "https://bugzilla.redhat.com/show_bug.cgi?id=1530912",
 9777            "https://nvd.nist.gov/vuln/detail/CVE-2017-17973",
 9778            "https://www.cve.org/CVERecord?id=CVE-2017-17973"
 9779          ],
 9780          "PublishedDate": "2017-12-29T21:29:00Z",
 9781          "LastModifiedDate": "2018-02-12T02:29:00Z"
 9782        },
 9783        {
 9784          "VulnerabilityID": "CVE-2017-5563",
 9785          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9786          "PkgName": "libtiff5",
 9787          "InstalledVersion": "4.2.0-1+deb11u1",
 9788          "Status": "affected",
 9789          "Layer": {
 9790            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9791            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9792          },
 9793          "SeveritySource": "debian",
 9794          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-5563",
 9795          "DataSource": {
 9796            "ID": "debian",
 9797            "Name": "Debian Security Tracker",
 9798            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9799          },
 9800          "Title": "libtiff: Heap-buffer overflow in LZWEncode tif_lzw.c",
 9801          "Description": "LibTIFF version 4.0.7 is vulnerable to a heap-based buffer over-read in tif_lzw.c resulting in DoS or code execution via a crafted bmp image to tools/bmp2tiff.",
 9802          "Severity": "LOW",
 9803          "CweIDs": [
 9804            "CWE-125"
 9805          ],
 9806          "CVSS": {
 9807            "nvd": {
 9808              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
 9809              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
 9810              "V2Score": 6.8,
 9811              "V3Score": 8.8
 9812            },
 9813            "redhat": {
 9814              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:L",
 9815              "V3Score": 5.3
 9816            }
 9817          },
 9818          "References": [
 9819            "http://bugzilla.maptools.org/show_bug.cgi?id=2664",
 9820            "http://www.securityfocus.com/bid/95705",
 9821            "https://access.redhat.com/security/cve/CVE-2017-5563",
 9822            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-5563",
 9823            "https://nvd.nist.gov/vuln/detail/CVE-2017-5563",
 9824            "https://security.gentoo.org/glsa/201709-27",
 9825            "https://ubuntu.com/security/notices/USN-3606-1",
 9826            "https://usn.ubuntu.com/3606-1/",
 9827            "https://www.cve.org/CVERecord?id=CVE-2017-5563"
 9828          ],
 9829          "PublishedDate": "2017-01-23T07:59:00Z",
 9830          "LastModifiedDate": "2019-10-03T00:03:00Z"
 9831        },
 9832        {
 9833          "VulnerabilityID": "CVE-2017-9117",
 9834          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9835          "PkgName": "libtiff5",
 9836          "InstalledVersion": "4.2.0-1+deb11u1",
 9837          "Status": "affected",
 9838          "Layer": {
 9839            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9840            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9841          },
 9842          "SeveritySource": "debian",
 9843          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-9117",
 9844          "DataSource": {
 9845            "ID": "debian",
 9846            "Name": "Debian Security Tracker",
 9847            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9848          },
 9849          "Title": "libtiff: Heap-based buffer over-read in bmp2tiff",
 9850          "Description": "In LibTIFF 4.0.7, the program processes BMP images without verifying that biWidth and biHeight in the bitmap-information header match the actual input, leading to a heap-based buffer over-read in bmp2tiff.",
 9851          "Severity": "LOW",
 9852          "CweIDs": [
 9853            "CWE-125"
 9854          ],
 9855          "CVSS": {
 9856            "nvd": {
 9857              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P",
 9858              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
 9859              "V2Score": 7.5,
 9860              "V3Score": 9.8
 9861            },
 9862            "redhat": {
 9863              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L",
 9864              "V3Score": 3.3
 9865            }
 9866          },
 9867          "References": [
 9868            "http://bugzilla.maptools.org/show_bug.cgi?id=2690",
 9869            "http://www.securityfocus.com/bid/98581",
 9870            "https://access.redhat.com/security/cve/CVE-2017-9117",
 9871            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-9117",
 9872            "https://nvd.nist.gov/vuln/detail/CVE-2017-9117",
 9873            "https://ubuntu.com/security/notices/USN-3606-1",
 9874            "https://usn.ubuntu.com/3606-1/",
 9875            "https://www.cve.org/CVERecord?id=CVE-2017-9117"
 9876          ],
 9877          "PublishedDate": "2017-05-21T19:29:00Z",
 9878          "LastModifiedDate": "2019-10-03T00:03:00Z"
 9879        },
 9880        {
 9881          "VulnerabilityID": "CVE-2018-10126",
 9882          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9883          "PkgName": "libtiff5",
 9884          "InstalledVersion": "4.2.0-1+deb11u1",
 9885          "Status": "affected",
 9886          "Layer": {
 9887            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9888            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9889          },
 9890          "SeveritySource": "debian",
 9891          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-10126",
 9892          "DataSource": {
 9893            "ID": "debian",
 9894            "Name": "Debian Security Tracker",
 9895            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9896          },
 9897          "Title": "libtiff: NULL pointer dereference in the jpeg_fdct_16x16 function in jfdctint.c",
 9898          "Description": "LibTIFF 4.0.9 has a NULL pointer dereference in the jpeg_fdct_16x16 function in jfdctint.c.",
 9899          "Severity": "LOW",
 9900          "CweIDs": [
 9901            "CWE-476"
 9902          ],
 9903          "CVSS": {
 9904            "nvd": {
 9905              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 9906              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9907              "V2Score": 4.3,
 9908              "V3Score": 6.5
 9909            },
 9910            "redhat": {
 9911              "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L",
 9912              "V3Score": 3.3
 9913            }
 9914          },
 9915          "References": [
 9916            "http://bugzilla.maptools.org/show_bug.cgi?id=2786",
 9917            "https://access.redhat.com/security/cve/CVE-2018-10126",
 9918            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-10126",
 9919            "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E",
 9920            "https://nvd.nist.gov/vuln/detail/CVE-2018-10126",
 9921            "https://www.cve.org/CVERecord?id=CVE-2018-10126"
 9922          ],
 9923          "PublishedDate": "2018-04-21T21:29:00Z",
 9924          "LastModifiedDate": "2021-03-15T22:31:00Z"
 9925        },
 9926        {
 9927          "VulnerabilityID": "CVE-2022-1056",
 9928          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9929          "PkgName": "libtiff5",
 9930          "InstalledVersion": "4.2.0-1+deb11u1",
 9931          "Status": "affected",
 9932          "Layer": {
 9933            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9934            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9935          },
 9936          "SeveritySource": "debian",
 9937          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1056",
 9938          "DataSource": {
 9939            "ID": "debian",
 9940            "Name": "Debian Security Tracker",
 9941            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9942          },
 9943          "Title": "Out-of-bounds Read error in tiffcrop in libtiff 4.3.0 allows attackers ...",
 9944          "Description": "Out-of-bounds Read error in tiffcrop in libtiff 4.3.0 allows attackers to cause a denial-of-service via a crafted tiff file. For users that compile libtiff from sources, the fix is available with commit 46dc8fcd.",
 9945          "Severity": "LOW",
 9946          "CweIDs": [
 9947            "CWE-125"
 9948          ],
 9949          "CVSS": {
 9950            "nvd": {
 9951              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 9952              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9953              "V2Score": 4.3,
 9954              "V3Score": 5.5
 9955            }
 9956          },
 9957          "References": [
 9958            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1056",
 9959            "https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-1056.json",
 9960            "https://gitlab.com/libtiff/libtiff/-/commit/232282fd8f9c21eefe8d2d2b96cdbbb172fe7b7c",
 9961            "https://gitlab.com/libtiff/libtiff/-/issues/391",
 9962            "https://gitlab.com/libtiff/libtiff/-/merge_requests/307",
 9963            "https://nvd.nist.gov/vuln/detail/CVE-2022-1056",
 9964            "https://security.gentoo.org/glsa/202210-10",
 9965            "https://security.netapp.com/advisory/ntap-20221228-0008/"
 9966          ],
 9967          "PublishedDate": "2022-03-28T19:15:00Z",
 9968          "LastModifiedDate": "2023-02-22T17:35:00Z"
 9969        },
 9970        {
 9971          "VulnerabilityID": "CVE-2022-1210",
 9972          "PkgID": "libtiff5@4.2.0-1+deb11u1",
 9973          "PkgName": "libtiff5",
 9974          "InstalledVersion": "4.2.0-1+deb11u1",
 9975          "Status": "affected",
 9976          "Layer": {
 9977            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
 9978            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
 9979          },
 9980          "SeveritySource": "debian",
 9981          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1210",
 9982          "DataSource": {
 9983            "ID": "debian",
 9984            "Name": "Debian Security Tracker",
 9985            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
 9986          },
 9987          "Title": "tiff: Malicious file leads to a denial of service in TIFF File Handler",
 9988          "Description": "A vulnerability classified as problematic was found in LibTIFF 4.3.0. Affected by this vulnerability is the TIFF File Handler of tiff2ps. Opening a malicious file leads to a denial of service. The attack can be launched remotely but requires user interaction. The exploit has been disclosed to the public and may be used.",
 9989          "Severity": "LOW",
 9990          "CweIDs": [
 9991            "CWE-404"
 9992          ],
 9993          "CVSS": {
 9994            "nvd": {
 9995              "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
 9996              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
 9997              "V2Score": 4.3,
 9998              "V3Score": 6.5
 9999            },
10000            "redhat": {
10001              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L",
10002              "V3Score": 4.3
10003            }
10004          },
10005          "References": [
10006            "https://access.redhat.com/security/cve/CVE-2022-1210",
10007            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1210",
10008            "https://gitlab.com/libtiff/libtiff/-/issues/402",
10009            "https://gitlab.com/libtiff/libtiff/uploads/c3da94e53cf1e1e8e6d4d3780dc8c42f/example.tiff",
10010            "https://nvd.nist.gov/vuln/detail/CVE-2022-1210",
10011            "https://security.gentoo.org/glsa/202210-10",
10012            "https://security.netapp.com/advisory/ntap-20220513-0005/",
10013            "https://vuldb.com/?id.196363",
10014            "https://www.cve.org/CVERecord?id=CVE-2022-1210"
10015          ],
10016          "PublishedDate": "2022-04-03T09:15:00Z",
10017          "LastModifiedDate": "2023-07-24T13:46:00Z"
10018        },
10019        {
10020          "VulnerabilityID": "CVE-2023-1916",
10021          "PkgID": "libtiff5@4.2.0-1+deb11u1",
10022          "PkgName": "libtiff5",
10023          "InstalledVersion": "4.2.0-1+deb11u1",
10024          "Status": "affected",
10025          "Layer": {
10026            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
10027            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
10028          },
10029          "SeveritySource": "debian",
10030          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-1916",
10031          "DataSource": {
10032            "ID": "debian",
10033            "Name": "Debian Security Tracker",
10034            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10035          },
10036          "Title": "out-of-bounds read in extractImageSection() in tools/tiffcrop.c",
10037          "Description": "A flaw was found in tiffcrop, a program distributed by the libtiff package. A specially crafted tiff file can lead to an out-of-bounds read in the extractImageSection function in tools/tiffcrop.c, resulting in a denial of service and limited information disclosure. This issue affects libtiff versions 4.x.",
10038          "Severity": "LOW",
10039          "CweIDs": [
10040            "CWE-125"
10041          ],
10042          "CVSS": {
10043            "nvd": {
10044              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H",
10045              "V3Score": 6.1
10046            },
10047            "redhat": {
10048              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H",
10049              "V3Score": 6.1
10050            }
10051          },
10052          "References": [
10053            "https://access.redhat.com/security/cve/CVE-2023-1916",
10054            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-1916",
10055            "https://gitlab.com/libtiff/libtiff/-/issues/536",
10056            "https://gitlab.com/libtiff/libtiff/-/issues/536,",
10057            "https://gitlab.com/libtiff/libtiff/-/issues/537",
10058            "https://nvd.nist.gov/vuln/detail/CVE-2023-1916",
10059            "https://www.cve.org/CVERecord?id=CVE-2023-1916"
10060          ],
10061          "PublishedDate": "2023-04-10T22:15:00Z",
10062          "LastModifiedDate": "2023-04-18T15:25:00Z"
10063        },
10064        {
10065          "VulnerabilityID": "CVE-2023-30775",
10066          "PkgID": "libtiff5@4.2.0-1+deb11u1",
10067          "PkgName": "libtiff5",
10068          "InstalledVersion": "4.2.0-1+deb11u1",
10069          "Status": "affected",
10070          "Layer": {
10071            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
10072            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
10073          },
10074          "SeveritySource": "debian",
10075          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-30775",
10076          "DataSource": {
10077            "ID": "debian",
10078            "Name": "Debian Security Tracker",
10079            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10080          },
10081          "Title": "Heap buffer overflow in extractContigSamples32bits, tiffcrop.c",
10082          "Description": "A vulnerability was found in the libtiff library. This security flaw causes a heap buffer overflow in extractContigSamples32bits, tiffcrop.c.",
10083          "Severity": "LOW",
10084          "CweIDs": [
10085            "CWE-787"
10086          ],
10087          "CVSS": {
10088            "nvd": {
10089              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
10090              "V3Score": 5.5
10091            },
10092            "redhat": {
10093              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
10094              "V3Score": 6.2
10095            }
10096          },
10097          "References": [
10098            "https://access.redhat.com/errata/RHSA-2023:2340",
10099            "https://access.redhat.com/security/cve/CVE-2023-30775",
10100            "https://bugzilla.redhat.com/2142734",
10101            "https://bugzilla.redhat.com/2142736",
10102            "https://bugzilla.redhat.com/2142738",
10103            "https://bugzilla.redhat.com/2142740",
10104            "https://bugzilla.redhat.com/2142741",
10105            "https://bugzilla.redhat.com/2142742",
10106            "https://bugzilla.redhat.com/2148918",
10107            "https://bugzilla.redhat.com/2176220",
10108            "https://bugzilla.redhat.com/2187139",
10109            "https://bugzilla.redhat.com/2187141",
10110            "https://bugzilla.redhat.com/show_bug.cgi?id=2187141",
10111            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30775",
10112            "https://errata.almalinux.org/9/ALSA-2023-2340.html",
10113            "https://gitlab.com/libtiff/libtiff/-/commit/afd7086090dafd3949afd172822cbcec4ed17d56 (v4.5.0rc1)",
10114            "https://gitlab.com/libtiff/libtiff/-/issues/464",
10115            "https://linux.oracle.com/cve/CVE-2023-30775.html",
10116            "https://linux.oracle.com/errata/ELSA-2023-2340.html",
10117            "https://nvd.nist.gov/vuln/detail/CVE-2023-30775",
10118            "https://security.netapp.com/advisory/ntap-20230703-0002/",
10119            "https://www.cve.org/CVERecord?id=CVE-2023-30775"
10120          ],
10121          "PublishedDate": "2023-05-19T15:15:00Z",
10122          "LastModifiedDate": "2023-07-03T16:15:00Z"
10123        },
10124        {
10125          "VulnerabilityID": "CVE-2023-3164",
10126          "PkgID": "libtiff5@4.2.0-1+deb11u1",
10127          "PkgName": "libtiff5",
10128          "InstalledVersion": "4.2.0-1+deb11u1",
10129          "Status": "affected",
10130          "Layer": {
10131            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
10132            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
10133          },
10134          "SeveritySource": "debian",
10135          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-3164",
10136          "DataSource": {
10137            "ID": "debian",
10138            "Name": "Debian Security Tracker",
10139            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10140          },
10141          "Title": "heap-buffer-overflow in extractImageSection()",
10142          "Description": "A heap-buffer-overflow vulnerability was found in LibTIFF, in extractImageSection() at tools/tiffcrop.c:7916 and tools/tiffcrop.c:7801. This flaw allows attackers to cause a denial of service via a crafted tiff file.",
10143          "Severity": "LOW",
10144          "CVSS": {
10145            "redhat": {
10146              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
10147              "V3Score": 5.5
10148            }
10149          },
10150          "References": [
10151            "https://access.redhat.com/security/cve/CVE-2023-3164",
10152            "https://gitlab.com/libtiff/libtiff/-/issues/542",
10153            "https://nvd.nist.gov/vuln/detail/CVE-2023-3164",
10154            "https://www.cve.org/CVERecord?id=CVE-2023-3164"
10155          ]
10156        },
10157        {
10158          "VulnerabilityID": "CVE-2022-29458",
10159          "PkgID": "libtinfo6@6.2+20201114-2",
10160          "PkgName": "libtinfo6",
10161          "InstalledVersion": "6.2+20201114-2",
10162          "FixedVersion": "6.2+20201114-2+deb11u1",
10163          "Status": "fixed",
10164          "Layer": {
10165            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
10166            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
10167          },
10168          "SeveritySource": "nvd",
10169          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29458",
10170          "DataSource": {
10171            "ID": "debian",
10172            "Name": "Debian Security Tracker",
10173            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10174          },
10175          "Title": "segfaulting OOB read",
10176          "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.",
10177          "Severity": "HIGH",
10178          "CweIDs": [
10179            "CWE-125"
10180          ],
10181          "CVSS": {
10182            "nvd": {
10183              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P",
10184              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H",
10185              "V2Score": 5.8,
10186              "V3Score": 7.1
10187            },
10188            "redhat": {
10189              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H",
10190              "V3Score": 6.1
10191            }
10192          },
10193          "References": [
10194            "http://seclists.org/fulldisclosure/2022/Oct/41",
10195            "https://access.redhat.com/security/cve/CVE-2022-29458",
10196            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458",
10197            "https://invisible-island.net/ncurses/NEWS.html#t20220416",
10198            "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html",
10199            "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html",
10200            "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html",
10201            "https://nvd.nist.gov/vuln/detail/CVE-2022-29458",
10202            "https://support.apple.com/kb/HT213488",
10203            "https://ubuntu.com/security/notices/USN-5477-1",
10204            "https://ubuntu.com/security/notices/USN-6099-1",
10205            "https://www.cve.org/CVERecord?id=CVE-2022-29458"
10206          ],
10207          "PublishedDate": "2022-04-18T21:15:00Z",
10208          "LastModifiedDate": "2022-11-08T19:46:00Z"
10209        },
10210        {
10211          "VulnerabilityID": "CVE-2023-29491",
10212          "PkgID": "libtinfo6@6.2+20201114-2",
10213          "PkgName": "libtinfo6",
10214          "InstalledVersion": "6.2+20201114-2",
10215          "Status": "affected",
10216          "Layer": {
10217            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
10218            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
10219          },
10220          "SeveritySource": "nvd",
10221          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29491",
10222          "DataSource": {
10223            "ID": "debian",
10224            "Name": "Debian Security Tracker",
10225            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10226          },
10227          "Title": "Local users can trigger security-relevant memory corruption via malformed data",
10228          "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.",
10229          "Severity": "HIGH",
10230          "CweIDs": [
10231            "CWE-787"
10232          ],
10233          "CVSS": {
10234            "nvd": {
10235              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
10236              "V3Score": 7.8
10237            },
10238            "redhat": {
10239              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
10240              "V3Score": 7.8
10241            }
10242          },
10243          "References": [
10244            "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56",
10245            "http://www.openwall.com/lists/oss-security/2023/04/19/10",
10246            "http://www.openwall.com/lists/oss-security/2023/04/19/11",
10247            "https://access.redhat.com/security/cve/CVE-2023-29491",
10248            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491",
10249            "https://invisible-island.net/ncurses/NEWS.html#index-t20230408",
10250            "https://nvd.nist.gov/vuln/detail/CVE-2023-29491",
10251            "https://security.netapp.com/advisory/ntap-20230517-0009/",
10252            "https://ubuntu.com/security/notices/USN-6099-1",
10253            "https://www.cve.org/CVERecord?id=CVE-2023-29491",
10254            "https://www.openwall.com/lists/oss-security/2023/04/12/5",
10255            "https://www.openwall.com/lists/oss-security/2023/04/13/4"
10256          ],
10257          "PublishedDate": "2023-04-14T01:15:00Z",
10258          "LastModifiedDate": "2023-05-17T20:15:00Z"
10259        },
10260        {
10261          "VulnerabilityID": "CVE-2022-3821",
10262          "PkgID": "libudev1@247.3-7+deb11u1",
10263          "PkgName": "libudev1",
10264          "InstalledVersion": "247.3-7+deb11u1",
10265          "FixedVersion": "247.3-7+deb11u2",
10266          "Status": "fixed",
10267          "Layer": {
10268            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
10269            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
10270          },
10271          "SeveritySource": "nvd",
10272          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821",
10273          "DataSource": {
10274            "ID": "debian",
10275            "Name": "Debian Security Tracker",
10276            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10277          },
10278          "Title": "buffer overrun in format_timespan() function",
10279          "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.",
10280          "Severity": "MEDIUM",
10281          "CweIDs": [
10282            "CWE-193"
10283          ],
10284          "CVSS": {
10285            "nvd": {
10286              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
10287              "V3Score": 5.5
10288            },
10289            "redhat": {
10290              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
10291              "V3Score": 5.5
10292            }
10293          },
10294          "References": [
10295            "https://access.redhat.com/errata/RHSA-2023:0336",
10296            "https://access.redhat.com/security/cve/CVE-2022-3821",
10297            "https://bugzilla.redhat.com/2139327",
10298            "https://bugzilla.redhat.com/show_bug.cgi?id=2139327",
10299            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821",
10300            "https://errata.almalinux.org/9/ALSA-2023-0336.html",
10301            "https://errata.rockylinux.org/RLSA-2023:0336",
10302            "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e",
10303            "https://github.com/systemd/systemd/issues/23928",
10304            "https://github.com/systemd/systemd/pull/23933",
10305            "https://linux.oracle.com/cve/CVE-2022-3821.html",
10306            "https://linux.oracle.com/errata/ELSA-2023-0336.html",
10307            "https://lists.debian.org/debian-lts-announce/2023/06/msg00036.html",
10308            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/",
10309            "https://nvd.nist.gov/vuln/detail/CVE-2022-3821",
10310            "https://security.gentoo.org/glsa/202305-15",
10311            "https://ubuntu.com/security/notices/USN-5928-1",
10312            "https://www.cve.org/CVERecord?id=CVE-2022-3821"
10313          ],
10314          "PublishedDate": "2022-11-08T22:15:00Z",
10315          "LastModifiedDate": "2023-06-29T23:15:00Z"
10316        },
10317        {
10318          "VulnerabilityID": "CVE-2022-4415",
10319          "PkgID": "libudev1@247.3-7+deb11u1",
10320          "PkgName": "libudev1",
10321          "InstalledVersion": "247.3-7+deb11u1",
10322          "FixedVersion": "247.3-7+deb11u2",
10323          "Status": "fixed",
10324          "Layer": {
10325            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
10326            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
10327          },
10328          "SeveritySource": "nvd",
10329          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415",
10330          "DataSource": {
10331            "ID": "debian",
10332            "Name": "Debian Security Tracker",
10333            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10334          },
10335          "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting",
10336          "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.",
10337          "Severity": "MEDIUM",
10338          "CVSS": {
10339            "nvd": {
10340              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
10341              "V3Score": 5.5
10342            },
10343            "redhat": {
10344              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
10345              "V3Score": 5.5
10346            }
10347          },
10348          "References": [
10349            "https://access.redhat.com/errata/RHSA-2023:0954",
10350            "https://access.redhat.com/security/cve/CVE-2022-4415",
10351            "https://bugzilla.redhat.com/2149063",
10352            "https://bugzilla.redhat.com/2155515",
10353            "https://bugzilla.redhat.com/show_bug.cgi?id=2149063",
10354            "https://bugzilla.redhat.com/show_bug.cgi?id=2155515",
10355            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415",
10356            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873",
10357            "https://errata.almalinux.org/9/ALSA-2023-0954.html",
10358            "https://errata.rockylinux.org/RLSA-2023:0954",
10359            "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c",
10360            "https://linux.oracle.com/cve/CVE-2022-4415.html",
10361            "https://linux.oracle.com/errata/ELSA-2023-0954.html",
10362            "https://nvd.nist.gov/vuln/detail/CVE-2022-4415",
10363            "https://ubuntu.com/security/notices/USN-5928-1",
10364            "https://www.cve.org/CVERecord?id=CVE-2022-4415",
10365            "https://www.openwall.com/lists/oss-security/2022/12/21/3"
10366          ],
10367          "PublishedDate": "2023-01-11T15:15:00Z",
10368          "LastModifiedDate": "2023-02-02T16:19:00Z"
10369        },
10370        {
10371          "VulnerabilityID": "CVE-2013-4392",
10372          "PkgID": "libudev1@247.3-7+deb11u1",
10373          "PkgName": "libudev1",
10374          "InstalledVersion": "247.3-7+deb11u1",
10375          "Status": "affected",
10376          "Layer": {
10377            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
10378            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
10379          },
10380          "SeveritySource": "debian",
10381          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392",
10382          "DataSource": {
10383            "ID": "debian",
10384            "Name": "Debian Security Tracker",
10385            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10386          },
10387          "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts",
10388          "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.",
10389          "Severity": "LOW",
10390          "CweIDs": [
10391            "CWE-59"
10392          ],
10393          "CVSS": {
10394            "nvd": {
10395              "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N",
10396              "V2Score": 3.3
10397            },
10398            "redhat": {
10399              "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N",
10400              "V2Score": 3.3
10401            }
10402          },
10403          "References": [
10404            "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357",
10405            "http://www.openwall.com/lists/oss-security/2013/10/01/9",
10406            "https://access.redhat.com/security/cve/CVE-2013-4392",
10407            "https://bugzilla.redhat.com/show_bug.cgi?id=859060",
10408            "https://nvd.nist.gov/vuln/detail/CVE-2013-4392",
10409            "https://www.cve.org/CVERecord?id=CVE-2013-4392"
10410          ],
10411          "PublishedDate": "2013-10-28T22:55:00Z",
10412          "LastModifiedDate": "2022-01-31T17:49:00Z"
10413        },
10414        {
10415          "VulnerabilityID": "CVE-2020-13529",
10416          "PkgID": "libudev1@247.3-7+deb11u1",
10417          "PkgName": "libudev1",
10418          "InstalledVersion": "247.3-7+deb11u1",
10419          "Status": "affected",
10420          "Layer": {
10421            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
10422            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
10423          },
10424          "SeveritySource": "debian",
10425          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529",
10426          "DataSource": {
10427            "ID": "debian",
10428            "Name": "Debian Security Tracker",
10429            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10430          },
10431          "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured",
10432          "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.",
10433          "Severity": "LOW",
10434          "CweIDs": [
10435            "CWE-290"
10436          ],
10437          "CVSS": {
10438            "nvd": {
10439              "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P",
10440              "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H",
10441              "V2Score": 2.9,
10442              "V3Score": 6.1
10443            },
10444            "redhat": {
10445              "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H",
10446              "V3Score": 6.1
10447            }
10448          },
10449          "References": [
10450            "http://www.openwall.com/lists/oss-security/2021/08/04/2",
10451            "http://www.openwall.com/lists/oss-security/2021/08/17/3",
10452            "http://www.openwall.com/lists/oss-security/2021/09/07/3",
10453            "https://access.redhat.com/security/cve/CVE-2020-13529",
10454            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529",
10455            "https://linux.oracle.com/cve/CVE-2020-13529.html",
10456            "https://linux.oracle.com/errata/ELSA-2021-4361.html",
10457            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/",
10458            "https://nvd.nist.gov/vuln/detail/CVE-2020-13529",
10459            "https://security.gentoo.org/glsa/202107-48",
10460            "https://security.netapp.com/advisory/ntap-20210625-0005/",
10461            "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142",
10462            "https://ubuntu.com/security/notices/USN-5013-1",
10463            "https://ubuntu.com/security/notices/USN-5013-2",
10464            "https://www.cve.org/CVERecord?id=CVE-2020-13529"
10465          ],
10466          "PublishedDate": "2021-05-10T16:15:00Z",
10467          "LastModifiedDate": "2022-10-07T02:59:00Z"
10468        },
10469        {
10470          "VulnerabilityID": "CVE-2023-31437",
10471          "PkgID": "libudev1@247.3-7+deb11u1",
10472          "PkgName": "libudev1",
10473          "InstalledVersion": "247.3-7+deb11u1",
10474          "Status": "affected",
10475          "Layer": {
10476            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
10477            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
10478          },
10479          "SeveritySource": "debian",
10480          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31437",
10481          "DataSource": {
10482            "ID": "debian",
10483            "Name": "Debian Security Tracker",
10484            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10485          },
10486          "Title": "An issue was discovered in systemd 253. An attacker can modify a seale ...",
10487          "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.\"",
10488          "Severity": "LOW",
10489          "CweIDs": [
10490            "CWE-354"
10491          ],
10492          "CVSS": {
10493            "nvd": {
10494              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
10495              "V3Score": 5.3
10496            }
10497          },
10498          "References": [
10499            "https://github.com/kastel-security/Journald",
10500            "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf",
10501            "https://github.com/systemd/systemd/releases"
10502          ],
10503          "PublishedDate": "2023-06-13T17:15:00Z",
10504          "LastModifiedDate": "2023-06-23T19:16:00Z"
10505        },
10506        {
10507          "VulnerabilityID": "CVE-2023-31438",
10508          "PkgID": "libudev1@247.3-7+deb11u1",
10509          "PkgName": "libudev1",
10510          "InstalledVersion": "247.3-7+deb11u1",
10511          "Status": "affected",
10512          "Layer": {
10513            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
10514            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
10515          },
10516          "SeveritySource": "debian",
10517          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31438",
10518          "DataSource": {
10519            "ID": "debian",
10520            "Name": "Debian Security Tracker",
10521            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10522          },
10523          "Title": "An issue was discovered in systemd 253. An attacker can truncate a sea ...",
10524          "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.\"",
10525          "Severity": "LOW",
10526          "CweIDs": [
10527            "CWE-354"
10528          ],
10529          "CVSS": {
10530            "nvd": {
10531              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
10532              "V3Score": 5.3
10533            }
10534          },
10535          "References": [
10536            "https://github.com/kastel-security/Journald",
10537            "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf",
10538            "https://github.com/systemd/systemd/releases"
10539          ],
10540          "PublishedDate": "2023-06-13T17:15:00Z",
10541          "LastModifiedDate": "2023-06-23T19:16:00Z"
10542        },
10543        {
10544          "VulnerabilityID": "CVE-2023-31439",
10545          "PkgID": "libudev1@247.3-7+deb11u1",
10546          "PkgName": "libudev1",
10547          "InstalledVersion": "247.3-7+deb11u1",
10548          "Status": "affected",
10549          "Layer": {
10550            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
10551            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
10552          },
10553          "SeveritySource": "debian",
10554          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31439",
10555          "DataSource": {
10556            "ID": "debian",
10557            "Name": "Debian Security Tracker",
10558            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10559          },
10560          "Title": "An issue was discovered in systemd 253. An attacker can modify the con ...",
10561          "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.\"",
10562          "Severity": "LOW",
10563          "CweIDs": [
10564            "CWE-354"
10565          ],
10566          "CVSS": {
10567            "nvd": {
10568              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
10569              "V3Score": 5.3
10570            }
10571          },
10572          "References": [
10573            "https://github.com/kastel-security/Journald",
10574            "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf",
10575            "https://github.com/systemd/systemd/releases"
10576          ],
10577          "PublishedDate": "2023-06-13T17:15:00Z",
10578          "LastModifiedDate": "2023-06-23T19:15:00Z"
10579        },
10580        {
10581          "VulnerabilityID": "CVE-2022-0563",
10582          "PkgID": "libuuid1@2.36.1-8+deb11u1",
10583          "PkgName": "libuuid1",
10584          "InstalledVersion": "2.36.1-8+deb11u1",
10585          "Status": "affected",
10586          "Layer": {
10587            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
10588            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
10589          },
10590          "SeveritySource": "debian",
10591          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563",
10592          "DataSource": {
10593            "ID": "debian",
10594            "Name": "Debian Security Tracker",
10595            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10596          },
10597          "Title": "partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline",
10598          "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.",
10599          "Severity": "LOW",
10600          "CweIDs": [
10601            "CWE-209"
10602          ],
10603          "CVSS": {
10604            "nvd": {
10605              "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N",
10606              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
10607              "V2Score": 1.9,
10608              "V3Score": 5.5
10609            },
10610            "redhat": {
10611              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
10612              "V3Score": 5.5
10613            }
10614          },
10615          "References": [
10616            "https://access.redhat.com/security/cve/CVE-2022-0563",
10617            "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/",
10618            "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u",
10619            "https://nvd.nist.gov/vuln/detail/CVE-2022-0563",
10620            "https://security.netapp.com/advisory/ntap-20220331-0002/",
10621            "https://www.cve.org/CVERecord?id=CVE-2022-0563"
10622          ],
10623          "PublishedDate": "2022-02-21T19:15:00Z",
10624          "LastModifiedDate": "2022-06-03T14:15:00Z"
10625        },
10626        {
10627          "VulnerabilityID": "CVE-2023-1999",
10628          "VendorIDs": [
10629            "DSA-5408-1"
10630          ],
10631          "PkgID": "libwebp6@0.6.1-2.1",
10632          "PkgName": "libwebp6",
10633          "InstalledVersion": "0.6.1-2.1",
10634          "FixedVersion": "0.6.1-2.1+deb11u1",
10635          "Status": "fixed",
10636          "Layer": {
10637            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
10638            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
10639          },
10640          "SeveritySource": "nvd",
10641          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-1999",
10642          "DataSource": {
10643            "ID": "debian",
10644            "Name": "Debian Security Tracker",
10645            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10646          },
10647          "Title": "Double-free in libwebp",
10648          "Description": "There exists a use after free/double free in libwebp. An attacker can use the ApplyFiltersAndEncode() function and loop through to free best.bw and assign best = trial pointer. The second loop will then return 0 because of an Out of memory error in VP8 encoder, the pointer is still assigned to trial and the AddressSanitizer will attempt a double free. \n",
10649          "Severity": "HIGH",
10650          "CweIDs": [
10651            "CWE-415",
10652            "CWE-416"
10653          ],
10654          "CVSS": {
10655            "nvd": {
10656              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
10657              "V3Score": 7.5
10658            },
10659            "redhat": {
10660              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H",
10661              "V3Score": 7.5
10662            }
10663          },
10664          "References": [
10665            "https://access.redhat.com/errata/RHSA-2023:2078",
10666            "https://access.redhat.com/security/cve/CVE-2023-1999",
10667            "https://bugzilla.redhat.com/2186102",
10668            "https://bugzilla.redhat.com/show_bug.cgi?id=2186102",
10669            "https://chromium.googlesource.com/webm/libwebp",
10670            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-1999",
10671            "https://errata.almalinux.org/9/ALSA-2023-2078.html",
10672            "https://errata.rockylinux.org/RLSA-2023:2078",
10673            "https://linux.oracle.com/cve/CVE-2023-1999.html",
10674            "https://linux.oracle.com/errata/ELSA-2023-2078.html",
10675            "https://nvd.nist.gov/vuln/detail/CVE-2023-1999",
10676            "https://ubuntu.com/security/notices/USN-6078-1",
10677            "https://ubuntu.com/security/notices/USN-6078-2",
10678            "https://www.cve.org/CVERecord?id=CVE-2023-1999",
10679            "https://www.mozilla.org/en-US/security/advisories/mfsa2023-13/#CVE-2023-1999",
10680            "https://www.mozilla.org/en-US/security/advisories/mfsa2023-14/#CVE-2023-1999",
10681            "https://www.mozilla.org/en-US/security/advisories/mfsa2023-15/#CVE-2023-1999"
10682          ],
10683          "PublishedDate": "2023-06-20T12:15:00Z",
10684          "LastModifiedDate": "2023-07-05T12:47:00Z"
10685        },
10686        {
10687          "VulnerabilityID": "CVE-2023-3138",
10688          "VendorIDs": [
10689            "DSA-5433-1"
10690          ],
10691          "PkgID": "libx11-6@2:1.7.2-1",
10692          "PkgName": "libx11-6",
10693          "InstalledVersion": "2:1.7.2-1",
10694          "FixedVersion": "2:1.7.2-1+deb11u1",
10695          "Status": "fixed",
10696          "Layer": {
10697            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
10698            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
10699          },
10700          "SeveritySource": "nvd",
10701          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-3138",
10702          "DataSource": {
10703            "ID": "debian",
10704            "Name": "Debian Security Tracker",
10705            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10706          },
10707          "Title": "InitExt.c can overwrite unintended portions of the Display structure if the extension request leads to a buffer overflow",
10708          "Description": "A vulnerability was found in libX11. The security flaw occurs because the functions in src/InitExt.c in libX11 do not check that the values provided for the Request, Event, or Error IDs are within the bounds of the arrays that those functions write to, using those IDs as array indexes. They trust that they were called with values provided by an Xserver adhering to the bounds specified in the X11 protocol, as all X servers provided by X.Org do. As the protocol only specifies a single byte for these values, an out-of-bounds value provided by a malicious server (or a malicious proxy-in-the-middle) can only overwrite other portions of the Display structure and not write outside the bounds of the Display structure itself, possibly causing the client to crash with this memory corruption.",
10709          "Severity": "HIGH",
10710          "CweIDs": [
10711            "CWE-787"
10712          ],
10713          "CVSS": {
10714            "nvd": {
10715              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
10716              "V3Score": 7.5
10717            },
10718            "redhat": {
10719              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:H/A:H",
10720              "V3Score": 7.3
10721            }
10722          },
10723          "References": [
10724            "https://access.redhat.com/security/cve/CVE-2023-3138",
10725            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-3138",
10726            "https://gitlab.freedesktop.org/xorg/lib/libx11/-/commit/304a654a0d57bf0f00d8998185f0360332cfa36c",
10727            "https://lists.x.org/archives/xorg-announce/2023-June/003406.html",
10728            "https://lists.x.org/archives/xorg-announce/2023-June/003407.html",
10729            "https://nvd.nist.gov/vuln/detail/CVE-2023-3138",
10730            "https://ubuntu.com/security/notices/USN-6168-1",
10731            "https://ubuntu.com/security/notices/USN-6168-2",
10732            "https://www.cve.org/CVERecord?id=CVE-2023-3138"
10733          ],
10734          "PublishedDate": "2023-06-28T21:15:00Z",
10735          "LastModifiedDate": "2023-07-07T13:05:00Z"
10736        },
10737        {
10738          "VulnerabilityID": "CVE-2023-3138",
10739          "VendorIDs": [
10740            "DSA-5433-1"
10741          ],
10742          "PkgID": "libx11-data@2:1.7.2-1",
10743          "PkgName": "libx11-data",
10744          "InstalledVersion": "2:1.7.2-1",
10745          "FixedVersion": "2:1.7.2-1+deb11u1",
10746          "Status": "fixed",
10747          "Layer": {
10748            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
10749            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
10750          },
10751          "SeveritySource": "nvd",
10752          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-3138",
10753          "DataSource": {
10754            "ID": "debian",
10755            "Name": "Debian Security Tracker",
10756            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10757          },
10758          "Title": "InitExt.c can overwrite unintended portions of the Display structure if the extension request leads to a buffer overflow",
10759          "Description": "A vulnerability was found in libX11. The security flaw occurs because the functions in src/InitExt.c in libX11 do not check that the values provided for the Request, Event, or Error IDs are within the bounds of the arrays that those functions write to, using those IDs as array indexes. They trust that they were called with values provided by an Xserver adhering to the bounds specified in the X11 protocol, as all X servers provided by X.Org do. As the protocol only specifies a single byte for these values, an out-of-bounds value provided by a malicious server (or a malicious proxy-in-the-middle) can only overwrite other portions of the Display structure and not write outside the bounds of the Display structure itself, possibly causing the client to crash with this memory corruption.",
10760          "Severity": "HIGH",
10761          "CweIDs": [
10762            "CWE-787"
10763          ],
10764          "CVSS": {
10765            "nvd": {
10766              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
10767              "V3Score": 7.5
10768            },
10769            "redhat": {
10770              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:H/A:H",
10771              "V3Score": 7.3
10772            }
10773          },
10774          "References": [
10775            "https://access.redhat.com/security/cve/CVE-2023-3138",
10776            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-3138",
10777            "https://gitlab.freedesktop.org/xorg/lib/libx11/-/commit/304a654a0d57bf0f00d8998185f0360332cfa36c",
10778            "https://lists.x.org/archives/xorg-announce/2023-June/003406.html",
10779            "https://lists.x.org/archives/xorg-announce/2023-June/003407.html",
10780            "https://nvd.nist.gov/vuln/detail/CVE-2023-3138",
10781            "https://ubuntu.com/security/notices/USN-6168-1",
10782            "https://ubuntu.com/security/notices/USN-6168-2",
10783            "https://www.cve.org/CVERecord?id=CVE-2023-3138"
10784          ],
10785          "PublishedDate": "2023-06-28T21:15:00Z",
10786          "LastModifiedDate": "2023-07-07T13:05:00Z"
10787        },
10788        {
10789          "VulnerabilityID": "CVE-2022-2309",
10790          "PkgID": "libxml2@2.9.10+dfsg-6.7+deb11u2",
10791          "PkgName": "libxml2",
10792          "InstalledVersion": "2.9.10+dfsg-6.7+deb11u2",
10793          "Status": "affected",
10794          "Layer": {
10795            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
10796            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
10797          },
10798          "SeveritySource": "nvd",
10799          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2309",
10800          "DataSource": {
10801            "ID": "debian",
10802            "Name": "Debian Security Tracker",
10803            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10804          },
10805          "Title": "lxml: NULL Pointer Dereference in lxml",
10806          "Description": "NULL Pointer Dereference allows attackers to cause a denial of service (or application crash). This only applies when lxml is used together with libxml2 2.9.10 through 2.9.14. libxml2 2.9.9 and earlier are not affected. It allows triggering crashes through forged input data, given a vulnerable code sequence in the application. The vulnerability is caused by the iterwalk function (also used by the canonicalize function). Such code shouldn't be in wide-spread use, given that parsing + iterwalk would usually be replaced with the more efficient iterparse function. However, an XML converter that serialises to C14N would also be vulnerable, for example, and there are legitimate use cases for this code sequence. If untrusted input is received (also remotely) and processed via iterwalk function, a crash can be triggered.",
10807          "Severity": "HIGH",
10808          "CweIDs": [
10809            "CWE-476"
10810          ],
10811          "CVSS": {
10812            "ghsa": {
10813              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
10814              "V3Score": 7.5
10815            },
10816            "nvd": {
10817              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
10818              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
10819              "V2Score": 5,
10820              "V3Score": 7.5
10821            },
10822            "redhat": {
10823              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
10824              "V3Score": 7.5
10825            }
10826          },
10827          "References": [
10828            "https://access.redhat.com/errata/RHSA-2022:8226",
10829            "https://access.redhat.com/security/cve/CVE-2022-2309",
10830            "https://bugzilla.redhat.com/2107571",
10831            "https://bugzilla.redhat.com/show_bug.cgi?id=2107571",
10832            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2309",
10833            "https://errata.almalinux.org/9/ALSA-2022-8226.html",
10834            "https://errata.rockylinux.org/RLSA-2022:8226",
10835            "https://github.com/advisories/GHSA-wrxv-2j5q-m38w",
10836            "https://github.com/lxml/lxml/blob/master/CHANGES.txt",
10837            "https://github.com/lxml/lxml/commit/86368e9cf70a0ad23cccd5ee32de847149af0c6f",
10838            "https://github.com/lxml/lxml/commit/86368e9cf70a0ad23cccd5ee32de847149af0c6f (lxml-4.9.1)",
10839            "https://github.com/pypa/advisory-database/tree/main/vulns/lxml/PYSEC-2022-230.yaml",
10840            "https://gitlab.gnome.org/GNOME/libxml2/-/issues/378",
10841            "https://huntr.dev/bounties/8264e74f-edda-4c40-9956-49de635105ba",
10842            "https://huntr.dev/bounties/8264e74f-edda-4c40-9956-49de635105ba/",
10843            "https://linux.oracle.com/cve/CVE-2022-2309.html",
10844            "https://linux.oracle.com/errata/ELSA-2022-8226.html",
10845            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HGYC6L7ENH5VEGN3YWFBYMGKX6WNS7HZ/",
10846            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URHHSIBTPTALXMECRLAC2EVDNAFSR5NO/",
10847            "https://nvd.nist.gov/vuln/detail/CVE-2022-2309",
10848            "https://security.gentoo.org/glsa/202208-06",
10849            "https://security.netapp.com/advisory/ntap-20220915-0006/",
10850            "https://ubuntu.com/security/notices/USN-5760-1",
10851            "https://www.cve.org/CVERecord?id=CVE-2022-2309"
10852          ],
10853          "PublishedDate": "2022-07-05T10:15:00Z",
10854          "LastModifiedDate": "2022-10-28T18:55:00Z"
10855        },
10856        {
10857          "VulnerabilityID": "CVE-2022-40303",
10858          "VendorIDs": [
10859            "DSA-5271-1"
10860          ],
10861          "PkgID": "libxml2@2.9.10+dfsg-6.7+deb11u2",
10862          "PkgName": "libxml2",
10863          "InstalledVersion": "2.9.10+dfsg-6.7+deb11u2",
10864          "FixedVersion": "2.9.10+dfsg-6.7+deb11u3",
10865          "Status": "fixed",
10866          "Layer": {
10867            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
10868            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
10869          },
10870          "SeveritySource": "nvd",
10871          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-40303",
10872          "DataSource": {
10873            "ID": "debian",
10874            "Name": "Debian Security Tracker",
10875            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10876          },
10877          "Title": "integer overflows with XML_PARSE_HUGE",
10878          "Description": "An issue was discovered in libxml2 before 2.10.3. When parsing a multi-gigabyte XML document with the XML_PARSE_HUGE parser option enabled, several integer counters can overflow. This results in an attempt to access an array at a negative 2GB offset, typically leading to a segmentation fault.",
10879          "Severity": "HIGH",
10880          "CweIDs": [
10881            "CWE-190"
10882          ],
10883          "CVSS": {
10884            "nvd": {
10885              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
10886              "V3Score": 7.5
10887            },
10888            "redhat": {
10889              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
10890              "V3Score": 7.5
10891            }
10892          },
10893          "References": [
10894            "http://seclists.org/fulldisclosure/2022/Dec/21",
10895            "http://seclists.org/fulldisclosure/2022/Dec/24",
10896            "http://seclists.org/fulldisclosure/2022/Dec/25",
10897            "http://seclists.org/fulldisclosure/2022/Dec/26",
10898            "https://access.redhat.com/errata/RHSA-2023:0338",
10899            "https://access.redhat.com/security/cve/CVE-2022-40303",
10900            "https://bugzilla.redhat.com/2136266",
10901            "https://bugzilla.redhat.com/2136288",
10902            "https://bugzilla.redhat.com/show_bug.cgi?id=2136266",
10903            "https://bugzilla.redhat.com/show_bug.cgi?id=2136288",
10904            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40303",
10905            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40304",
10906            "https://errata.almalinux.org/9/ALSA-2023-0338.html",
10907            "https://errata.rockylinux.org/RLSA-2023:0338",
10908            "https://gitlab.gnome.org/GNOME/libxml2/-/commit/c846986356fc149915a74972bf198abc266bc2c0",
10909            "https://gitlab.gnome.org/GNOME/libxml2/-/tags/v2.10.3",
10910            "https://linux.oracle.com/cve/CVE-2022-40303.html",
10911            "https://linux.oracle.com/errata/ELSA-2023-0338.html",
10912            "https://nvd.nist.gov/vuln/detail/CVE-2022-40303",
10913            "https://security.netapp.com/advisory/ntap-20221209-0003/",
10914            "https://support.apple.com/kb/HT213531",
10915            "https://support.apple.com/kb/HT213533",
10916            "https://support.apple.com/kb/HT213534",
10917            "https://support.apple.com/kb/HT213535",
10918            "https://support.apple.com/kb/HT213536",
10919            "https://ubuntu.com/security/notices/USN-5760-1",
10920            "https://ubuntu.com/security/notices/USN-5760-2",
10921            "https://www.cve.org/CVERecord?id=CVE-2022-40303"
10922          ],
10923          "PublishedDate": "2022-11-23T00:15:00Z",
10924          "LastModifiedDate": "2023-01-11T17:29:00Z"
10925        },
10926        {
10927          "VulnerabilityID": "CVE-2022-40304",
10928          "VendorIDs": [
10929            "DSA-5271-1"
10930          ],
10931          "PkgID": "libxml2@2.9.10+dfsg-6.7+deb11u2",
10932          "PkgName": "libxml2",
10933          "InstalledVersion": "2.9.10+dfsg-6.7+deb11u2",
10934          "FixedVersion": "2.9.10+dfsg-6.7+deb11u3",
10935          "Status": "fixed",
10936          "Layer": {
10937            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
10938            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
10939          },
10940          "SeveritySource": "nvd",
10941          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-40304",
10942          "DataSource": {
10943            "ID": "debian",
10944            "Name": "Debian Security Tracker",
10945            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
10946          },
10947          "Title": "dict corruption caused by entity reference cycles",
10948          "Description": "An issue was discovered in libxml2 before 2.10.3. Certain invalid XML entity definitions can corrupt a hash table key, potentially leading to subsequent logic errors. In one case, a double-free can be provoked.",
10949          "Severity": "HIGH",
10950          "CweIDs": [
10951            "CWE-611"
10952          ],
10953          "CVSS": {
10954            "nvd": {
10955              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
10956              "V3Score": 7.8
10957            },
10958            "redhat": {
10959              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
10960              "V3Score": 7.8
10961            }
10962          },
10963          "References": [
10964            "http://seclists.org/fulldisclosure/2022/Dec/21",
10965            "http://seclists.org/fulldisclosure/2022/Dec/24",
10966            "http://seclists.org/fulldisclosure/2022/Dec/25",
10967            "http://seclists.org/fulldisclosure/2022/Dec/26",
10968            "https://access.redhat.com/errata/RHSA-2023:0338",
10969            "https://access.redhat.com/security/cve/CVE-2022-40304",
10970            "https://bugzilla.redhat.com/2136266",
10971            "https://bugzilla.redhat.com/2136288",
10972            "https://bugzilla.redhat.com/show_bug.cgi?id=2136266",
10973            "https://bugzilla.redhat.com/show_bug.cgi?id=2136288",
10974            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40303",
10975            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40304",
10976            "https://errata.almalinux.org/9/ALSA-2023-0338.html",
10977            "https://errata.rockylinux.org/RLSA-2023:0338",
10978            "https://gitlab.gnome.org/GNOME/libxml2/-/commit/1b41ec4e9433b05bb0376be4725804c54ef1d80b",
10979            "https://gitlab.gnome.org/GNOME/libxml2/-/tags",
10980            "https://gitlab.gnome.org/GNOME/libxml2/-/tags/v2.10.3",
10981            "https://linux.oracle.com/cve/CVE-2022-40304.html",
10982            "https://linux.oracle.com/errata/ELSA-2023-0338.html",
10983            "https://nvd.nist.gov/vuln/detail/CVE-2022-40304",
10984            "https://security.netapp.com/advisory/ntap-20221209-0003/",
10985            "https://support.apple.com/kb/HT213531",
10986            "https://support.apple.com/kb/HT213533",
10987            "https://support.apple.com/kb/HT213534",
10988            "https://support.apple.com/kb/HT213535",
10989            "https://support.apple.com/kb/HT213536",
10990            "https://ubuntu.com/security/notices/USN-5760-1",
10991            "https://ubuntu.com/security/notices/USN-5760-2",
10992            "https://www.cve.org/CVERecord?id=CVE-2022-40304"
10993          ],
10994          "PublishedDate": "2022-11-23T18:15:00Z",
10995          "LastModifiedDate": "2023-02-23T22:20:00Z"
10996        },
10997        {
10998          "VulnerabilityID": "CVE-2016-3709",
10999          "PkgID": "libxml2@2.9.10+dfsg-6.7+deb11u2",
11000          "PkgName": "libxml2",
11001          "InstalledVersion": "2.9.10+dfsg-6.7+deb11u2",
11002          "Status": "affected",
11003          "Layer": {
11004            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
11005            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
11006          },
11007          "SeveritySource": "nvd",
11008          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-3709",
11009          "DataSource": {
11010            "ID": "debian",
11011            "Name": "Debian Security Tracker",
11012            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11013          },
11014          "Title": "Incorrect server side include parsing can lead to XSS",
11015          "Description": "Possible cross-site scripting vulnerability in libxml after commit 960f0e2.",
11016          "Severity": "MEDIUM",
11017          "CweIDs": [
11018            "CWE-79"
11019          ],
11020          "CVSS": {
11021            "nvd": {
11022              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N",
11023              "V3Score": 6.1
11024            },
11025            "redhat": {
11026              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N",
11027              "V3Score": 6.1
11028            }
11029          },
11030          "References": [
11031            "https://access.redhat.com/errata/RHSA-2022:7715",
11032            "https://access.redhat.com/security/cve/CVE-2016-3709",
11033            "https://bugzilla.redhat.com/2112766",
11034            "https://bugzilla.redhat.com/show_bug.cgi?id=2112766",
11035            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-3709",
11036            "https://errata.almalinux.org/8/ALSA-2022-7715.html",
11037            "https://errata.rockylinux.org/RLSA-2022:7715",
11038            "https://linux.oracle.com/cve/CVE-2016-3709.html",
11039            "https://linux.oracle.com/errata/ELSA-2022-7715.html",
11040            "https://mail.gnome.org/archives/xml/2018-January/msg00010.html",
11041            "https://nvd.nist.gov/vuln/detail/CVE-2016-3709",
11042            "https://ubuntu.com/security/notices/USN-5548-1",
11043            "https://www.cve.org/CVERecord?id=CVE-2016-3709"
11044          ],
11045          "PublishedDate": "2022-07-28T17:15:00Z",
11046          "LastModifiedDate": "2022-12-07T16:39:00Z"
11047        },
11048        {
11049          "VulnerabilityID": "CVE-2023-28484",
11050          "VendorIDs": [
11051            "DSA-5391-1"
11052          ],
11053          "PkgID": "libxml2@2.9.10+dfsg-6.7+deb11u2",
11054          "PkgName": "libxml2",
11055          "InstalledVersion": "2.9.10+dfsg-6.7+deb11u2",
11056          "FixedVersion": "2.9.10+dfsg-6.7+deb11u4",
11057          "Status": "fixed",
11058          "Layer": {
11059            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
11060            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
11061          },
11062          "SeveritySource": "nvd",
11063          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28484",
11064          "DataSource": {
11065            "ID": "debian",
11066            "Name": "Debian Security Tracker",
11067            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11068          },
11069          "Title": "NULL dereference in xmlSchemaFixupComplexType",
11070          "Description": "In libxml2 before 2.10.4, parsing of certain invalid XSD schemas can lead to a NULL pointer dereference and subsequently a segfault. This occurs in xmlSchemaFixupComplexType in xmlschemas.c.",
11071          "Severity": "MEDIUM",
11072          "CweIDs": [
11073            "CWE-476"
11074          ],
11075          "CVSS": {
11076            "nvd": {
11077              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
11078              "V3Score": 6.5
11079            },
11080            "redhat": {
11081              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
11082              "V3Score": 5.9
11083            }
11084          },
11085          "References": [
11086            "https://access.redhat.com/errata/RHSA-2023:4349",
11087            "https://access.redhat.com/security/cve/CVE-2023-28484",
11088            "https://bugzilla.redhat.com/2185984",
11089            "https://bugzilla.redhat.com/2185994",
11090            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28484",
11091            "https://errata.almalinux.org/9/ALSA-2023-4349.html",
11092            "https://gitlab.gnome.org/GNOME/libxml2/-/commit/4c6922f763ad958c48ff66f82823ae21f2e92ee6",
11093            "https://gitlab.gnome.org/GNOME/libxml2/-/commit/647e072ea0a2f12687fa05c172f4c4713fdb0c4f",
11094            "https://gitlab.gnome.org/GNOME/libxml2/-/issues/491",
11095            "https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.10.4",
11096            "https://linux.oracle.com/cve/CVE-2023-28484.html",
11097            "https://linux.oracle.com/errata/ELSA-2023-4349.html",
11098            "https://lists.debian.org/debian-lts-announce/2023/04/msg00031.html",
11099            "https://nvd.nist.gov/vuln/detail/CVE-2023-28484",
11100            "https://security.netapp.com/advisory/ntap-20230601-0006/",
11101            "https://ubuntu.com/security/notices/USN-6028-1",
11102            "https://www.cve.org/CVERecord?id=CVE-2023-28484"
11103          ],
11104          "PublishedDate": "2023-04-24T21:15:00Z",
11105          "LastModifiedDate": "2023-06-01T14:15:00Z"
11106        },
11107        {
11108          "VulnerabilityID": "CVE-2023-29469",
11109          "VendorIDs": [
11110            "DSA-5391-1"
11111          ],
11112          "PkgID": "libxml2@2.9.10+dfsg-6.7+deb11u2",
11113          "PkgName": "libxml2",
11114          "InstalledVersion": "2.9.10+dfsg-6.7+deb11u2",
11115          "FixedVersion": "2.9.10+dfsg-6.7+deb11u4",
11116          "Status": "fixed",
11117          "Layer": {
11118            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
11119            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
11120          },
11121          "SeveritySource": "nvd",
11122          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29469",
11123          "DataSource": {
11124            "ID": "debian",
11125            "Name": "Debian Security Tracker",
11126            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11127          },
11128          "Title": "Hashing of empty dict strings isn't deterministic",
11129          "Description": "An issue was discovered in libxml2 before 2.10.4. When hashing empty dict strings in a crafted XML document, xmlDictComputeFastKey in dict.c can produce non-deterministic values, leading to various logic and memory errors, such as a double free. This behavior occurs because there is an attempt to use the first byte of an empty string, and any value is possible (not solely the '\\0' value).",
11130          "Severity": "MEDIUM",
11131          "CweIDs": [
11132            "CWE-415"
11133          ],
11134          "CVSS": {
11135            "nvd": {
11136              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
11137              "V3Score": 6.5
11138            },
11139            "redhat": {
11140              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
11141              "V3Score": 5.9
11142            }
11143          },
11144          "References": [
11145            "https://access.redhat.com/errata/RHSA-2023:4349",
11146            "https://access.redhat.com/security/cve/CVE-2023-29469",
11147            "https://bugzilla.redhat.com/2185984",
11148            "https://bugzilla.redhat.com/2185994",
11149            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29469",
11150            "https://errata.almalinux.org/9/ALSA-2023-4349.html",
11151            "https://gitlab.gnome.org/GNOME/libxml2/-/commit/09a2dd453007f9c7205274623acdd73747c22d64",
11152            "https://gitlab.gnome.org/GNOME/libxml2/-/issues/510",
11153            "https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.10.4",
11154            "https://linux.oracle.com/cve/CVE-2023-29469.html",
11155            "https://linux.oracle.com/errata/ELSA-2023-4349.html",
11156            "https://lists.debian.org/debian-lts-announce/2023/04/msg00031.html",
11157            "https://nvd.nist.gov/vuln/detail/CVE-2023-29469",
11158            "https://security.netapp.com/advisory/ntap-20230601-0006/",
11159            "https://ubuntu.com/security/notices/USN-6028-1",
11160            "https://www.cve.org/CVERecord?id=CVE-2023-29469"
11161          ],
11162          "PublishedDate": "2023-04-24T21:15:00Z",
11163          "LastModifiedDate": "2023-06-01T14:15:00Z"
11164        },
11165        {
11166          "VulnerabilityID": "CVE-2022-44617",
11167          "PkgID": "libxpm4@1:3.5.12-1",
11168          "PkgName": "libxpm4",
11169          "InstalledVersion": "1:3.5.12-1",
11170          "FixedVersion": "1:3.5.12-1.1~deb11u1",
11171          "Status": "fixed",
11172          "Layer": {
11173            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
11174            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
11175          },
11176          "SeveritySource": "nvd",
11177          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-44617",
11178          "DataSource": {
11179            "ID": "debian",
11180            "Name": "Debian Security Tracker",
11181            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11182          },
11183          "Title": "libXpm: Runaway loop on width of 0 and enormous height",
11184          "Description": "A flaw was found in libXpm. When processing a file with width of 0 and a very large height, some parser functions will be called repeatedly and can lead to an infinite loop, resulting in a Denial of Service in the application linked to the library.",
11185          "Severity": "HIGH",
11186          "CweIDs": [
11187            "CWE-835"
11188          ],
11189          "CVSS": {
11190            "nvd": {
11191              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
11192              "V3Score": 7.5
11193            },
11194            "redhat": {
11195              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
11196              "V3Score": 7.5
11197            }
11198          },
11199          "References": [
11200            "https://access.redhat.com/errata/RHSA-2023:0383",
11201            "https://access.redhat.com/security/cve/CVE-2022-44617",
11202            "https://bugzilla.redhat.com/2160092",
11203            "https://bugzilla.redhat.com/2160193",
11204            "https://bugzilla.redhat.com/2160213",
11205            "https://bugzilla.redhat.com/show_bug.cgi?id=2160092",
11206            "https://bugzilla.redhat.com/show_bug.cgi?id=2160193",
11207            "https://bugzilla.redhat.com/show_bug.cgi?id=2160213",
11208            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-44617",
11209            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-46285",
11210            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4883",
11211            "https://errata.almalinux.org/9/ALSA-2023-0383.html",
11212            "https://errata.rockylinux.org/RLSA-2023:0383",
11213            "https://gitlab.freedesktop.org/xorg/lib/libxpm/-/commit/f80fa6ae47ad4a5beacb28",
11214            "https://gitlab.freedesktop.org/xorg/lib/libxpm/-/merge_requests/9",
11215            "https://linux.oracle.com/cve/CVE-2022-44617.html",
11216            "https://linux.oracle.com/errata/ELSA-2023-0383.html",
11217            "https://lists.debian.org/debian-lts-announce/2023/06/msg00021.html",
11218            "https://lists.x.org/archives/xorg-announce/2023-January/003312.html",
11219            "https://nvd.nist.gov/vuln/detail/CVE-2022-44617",
11220            "https://ubuntu.com/security/notices/USN-5807-1",
11221            "https://ubuntu.com/security/notices/USN-5807-2",
11222            "https://www.cve.org/CVERecord?id=CVE-2022-44617"
11223          ],
11224          "PublishedDate": "2023-02-06T23:15:00Z",
11225          "LastModifiedDate": "2023-06-20T14:15:00Z"
11226        },
11227        {
11228          "VulnerabilityID": "CVE-2022-46285",
11229          "PkgID": "libxpm4@1:3.5.12-1",
11230          "PkgName": "libxpm4",
11231          "InstalledVersion": "1:3.5.12-1",
11232          "FixedVersion": "1:3.5.12-1.1~deb11u1",
11233          "Status": "fixed",
11234          "Layer": {
11235            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
11236            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
11237          },
11238          "SeveritySource": "nvd",
11239          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-46285",
11240          "DataSource": {
11241            "ID": "debian",
11242            "Name": "Debian Security Tracker",
11243            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11244          },
11245          "Title": "libXpm: Infinite loop on unclosed comments",
11246          "Description": "A flaw was found in libXpm. This issue occurs when parsing a file with a comment not closed; the end-of-file condition will not be detected, leading to an infinite loop and resulting in a Denial of Service in the application linked to the library.",
11247          "Severity": "HIGH",
11248          "CweIDs": [
11249            "CWE-835"
11250          ],
11251          "CVSS": {
11252            "nvd": {
11253              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
11254              "V3Score": 7.5
11255            },
11256            "redhat": {
11257              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
11258              "V3Score": 7.5
11259            }
11260          },
11261          "References": [
11262            "https://access.redhat.com/errata/RHSA-2023:0383",
11263            "https://access.redhat.com/security/cve/CVE-2022-46285",
11264            "https://bugzilla.redhat.com/2160092",
11265            "https://bugzilla.redhat.com/2160193",
11266            "https://bugzilla.redhat.com/2160213",
11267            "https://bugzilla.redhat.com/show_bug.cgi?id=2160092",
11268            "https://bugzilla.redhat.com/show_bug.cgi?id=2160193",
11269            "https://bugzilla.redhat.com/show_bug.cgi?id=2160213",
11270            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-44617",
11271            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-46285",
11272            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4883",
11273            "https://errata.almalinux.org/9/ALSA-2023-0383.html",
11274            "https://errata.rockylinux.org/RLSA-2023:0383",
11275            "https://gitlab.freedesktop.org/xorg/lib/libxpm/-/commit/a3a7c6dcc3b629d7650148",
11276            "https://gitlab.freedesktop.org/xorg/lib/libxpm/-/merge_requests/9",
11277            "https://linux.oracle.com/cve/CVE-2022-46285.html",
11278            "https://linux.oracle.com/errata/ELSA-2023-0383.html",
11279            "https://lists.debian.org/debian-lts-announce/2023/06/msg00021.html",
11280            "https://lists.x.org/archives/xorg-announce/2023-January/003312.html",
11281            "https://nvd.nist.gov/vuln/detail/CVE-2022-46285",
11282            "https://ubuntu.com/security/notices/USN-5807-1",
11283            "https://ubuntu.com/security/notices/USN-5807-2",
11284            "https://ubuntu.com/security/notices/USN-5807-3",
11285            "https://www.cve.org/CVERecord?id=CVE-2022-46285"
11286          ],
11287          "PublishedDate": "2023-02-07T19:15:00Z",
11288          "LastModifiedDate": "2023-06-20T14:15:00Z"
11289        },
11290        {
11291          "VulnerabilityID": "CVE-2022-4883",
11292          "PkgID": "libxpm4@1:3.5.12-1",
11293          "PkgName": "libxpm4",
11294          "InstalledVersion": "1:3.5.12-1",
11295          "FixedVersion": "1:3.5.12-1.1~deb11u1",
11296          "Status": "fixed",
11297          "Layer": {
11298            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
11299            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
11300          },
11301          "SeveritySource": "nvd",
11302          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4883",
11303          "DataSource": {
11304            "ID": "debian",
11305            "Name": "Debian Security Tracker",
11306            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11307          },
11308          "Title": "libXpm: compression commands depend on $PATH",
11309          "Description": "A flaw was found in libXpm. When processing files with .Z or .gz extensions, the library calls external programs to compress and uncompress files, relying on the PATH environment variable to find these programs, which could allow a malicious user to execute other programs by manipulating the PATH environment variable.",
11310          "Severity": "HIGH",
11311          "CweIDs": [
11312            "CWE-426"
11313          ],
11314          "CVSS": {
11315            "nvd": {
11316              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
11317              "V3Score": 8.8
11318            },
11319            "redhat": {
11320              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
11321              "V3Score": 8.1
11322            }
11323          },
11324          "References": [
11325            "https://access.redhat.com/errata/RHSA-2023:0383",
11326            "https://access.redhat.com/security/cve/CVE-2022-4883",
11327            "https://bugzilla.redhat.com/2160092",
11328            "https://bugzilla.redhat.com/2160193",
11329            "https://bugzilla.redhat.com/2160213",
11330            "https://bugzilla.redhat.com/show_bug.cgi?id=2160092",
11331            "https://bugzilla.redhat.com/show_bug.cgi?id=2160193",
11332            "https://bugzilla.redhat.com/show_bug.cgi?id=2160213",
11333            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-44617",
11334            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-46285",
11335            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4883",
11336            "https://errata.almalinux.org/9/ALSA-2023-0383.html",
11337            "https://errata.rockylinux.org/RLSA-2023:0383",
11338            "https://gitlab.freedesktop.org/xorg/lib/libxpm/-/commit/515294bb8023a45ff91669",
11339            "https://gitlab.freedesktop.org/xorg/lib/libxpm/-/merge_requests/9",
11340            "https://linux.oracle.com/cve/CVE-2022-4883.html",
11341            "https://linux.oracle.com/errata/ELSA-2023-0383.html",
11342            "https://lists.debian.org/debian-lts-announce/2023/06/msg00021.html",
11343            "https://lists.x.org/archives/xorg-announce/2023-January/003312.html",
11344            "https://nvd.nist.gov/vuln/detail/CVE-2022-4883",
11345            "https://ubuntu.com/security/notices/USN-5807-1",
11346            "https://ubuntu.com/security/notices/USN-5807-2",
11347            "https://www.cve.org/CVERecord?id=CVE-2022-4883"
11348          ],
11349          "PublishedDate": "2023-02-07T19:15:00Z",
11350          "LastModifiedDate": "2023-06-20T14:15:00Z"
11351        },
11352        {
11353          "VulnerabilityID": "CVE-2015-9019",
11354          "PkgID": "libxslt1.1@1.1.34-4+deb11u1",
11355          "PkgName": "libxslt1.1",
11356          "InstalledVersion": "1.1.34-4+deb11u1",
11357          "Status": "affected",
11358          "Layer": {
11359            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
11360            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
11361          },
11362          "SeveritySource": "debian",
11363          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2015-9019",
11364          "DataSource": {
11365            "ID": "debian",
11366            "Name": "Debian Security Tracker",
11367            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11368          },
11369          "Title": "libxslt: math.random() in xslt uses unseeded randomness",
11370          "Description": "In libxslt 1.1.29 and earlier, the EXSLT math.random function was not initialized with a random seed during startup, which could cause usage of this function to produce predictable outputs.",
11371          "Severity": "LOW",
11372          "CweIDs": [
11373            "CWE-330"
11374          ],
11375          "CVSS": {
11376            "nvd": {
11377              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N",
11378              "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
11379              "V2Score": 5,
11380              "V3Score": 5.3
11381            },
11382            "redhat": {
11383              "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N",
11384              "V3Score": 4
11385            }
11386          },
11387          "References": [
11388            "https://access.redhat.com/security/cve/CVE-2015-9019",
11389            "https://bugzilla.gnome.org/show_bug.cgi?id=758400",
11390            "https://bugzilla.suse.com/show_bug.cgi?id=934119",
11391            "https://nvd.nist.gov/vuln/detail/CVE-2015-9019",
11392            "https://www.cve.org/CVERecord?id=CVE-2015-9019"
11393          ],
11394          "PublishedDate": "2017-04-05T21:59:00Z",
11395          "LastModifiedDate": "2017-04-11T19:57:00Z"
11396        },
11397        {
11398          "VulnerabilityID": "CVE-2022-4899",
11399          "PkgID": "libzstd1@1.4.8+dfsg-2.1",
11400          "PkgName": "libzstd1",
11401          "InstalledVersion": "1.4.8+dfsg-2.1",
11402          "Status": "affected",
11403          "Layer": {
11404            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
11405            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
11406          },
11407          "SeveritySource": "nvd",
11408          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4899",
11409          "DataSource": {
11410            "ID": "debian",
11411            "Name": "Debian Security Tracker",
11412            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11413          },
11414          "Title": "buffer overrun in util.c",
11415          "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.",
11416          "Severity": "HIGH",
11417          "CweIDs": [
11418            "CWE-400"
11419          ],
11420          "CVSS": {
11421            "ghsa": {
11422              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
11423              "V3Score": 7.5
11424            },
11425            "nvd": {
11426              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
11427              "V3Score": 7.5
11428            },
11429            "redhat": {
11430              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
11431              "V3Score": 7.5
11432            }
11433          },
11434          "References": [
11435            "https://access.redhat.com/security/cve/CVE-2022-4899",
11436            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899",
11437            "https://github.com/advisories/GHSA-5c9c-6x87-f9vm",
11438            "https://github.com/facebook/zstd/issues/3200",
11439            "https://github.com/facebook/zstd/pull/3220",
11440            "https://github.com/pypa/advisory-database/tree/main/vulns/zstd/PYSEC-2023-121.yaml",
11441            "https://github.com/sergey-dryabzhinsky/python-zstd/commit/c8a619aebdbd6b838fbfef6e19325a70f631a4c6",
11442            "https://nvd.nist.gov/vuln/detail/CVE-2022-4899",
11443            "https://security.netapp.com/advisory/ntap-20230725-0005/",
11444            "https://www.cve.org/CVERecord?id=CVE-2022-4899"
11445          ],
11446          "PublishedDate": "2023-03-31T20:15:00Z",
11447          "LastModifiedDate": "2023-07-25T15:15:00Z"
11448        },
11449        {
11450          "VulnerabilityID": "CVE-2007-5686",
11451          "PkgID": "login@1:4.8.1-1",
11452          "PkgName": "login",
11453          "InstalledVersion": "1:4.8.1-1",
11454          "Status": "affected",
11455          "Layer": {
11456            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
11457            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
11458          },
11459          "SeveritySource": "debian",
11460          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686",
11461          "DataSource": {
11462            "ID": "debian",
11463            "Name": "Debian Security Tracker",
11464            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11465          },
11466          "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...",
11467          "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.",
11468          "Severity": "LOW",
11469          "CweIDs": [
11470            "CWE-264"
11471          ],
11472          "CVSS": {
11473            "nvd": {
11474              "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N",
11475              "V2Score": 4.9
11476            }
11477          },
11478          "References": [
11479            "http://secunia.com/advisories/27215",
11480            "http://www.securityfocus.com/archive/1/482129/100/100/threaded",
11481            "http://www.securityfocus.com/archive/1/482857/100/0/threaded",
11482            "http://www.securityfocus.com/bid/26048",
11483            "http://www.vupen.com/english/advisories/2007/3474",
11484            "https://issues.rpath.com/browse/RPL-1825"
11485          ],
11486          "PublishedDate": "2007-10-28T17:08:00Z",
11487          "LastModifiedDate": "2018-10-15T21:45:00Z"
11488        },
11489        {
11490          "VulnerabilityID": "CVE-2013-4235",
11491          "PkgID": "login@1:4.8.1-1",
11492          "PkgName": "login",
11493          "InstalledVersion": "1:4.8.1-1",
11494          "Status": "affected",
11495          "Layer": {
11496            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
11497            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
11498          },
11499          "SeveritySource": "debian",
11500          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235",
11501          "DataSource": {
11502            "ID": "debian",
11503            "Name": "Debian Security Tracker",
11504            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11505          },
11506          "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees",
11507          "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees",
11508          "Severity": "LOW",
11509          "CweIDs": [
11510            "CWE-367"
11511          ],
11512          "CVSS": {
11513            "nvd": {
11514              "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P",
11515              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N",
11516              "V2Score": 3.3,
11517              "V3Score": 4.7
11518            },
11519            "redhat": {
11520              "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P",
11521              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N",
11522              "V2Score": 3.7,
11523              "V3Score": 4.4
11524            }
11525          },
11526          "References": [
11527            "https://access.redhat.com/security/cve/CVE-2013-4235",
11528            "https://access.redhat.com/security/cve/cve-2013-4235",
11529            "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169",
11530            "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235",
11531            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235",
11532            "https://github.com/shadow-maint/shadow/issues/317",
11533            "https://github.com/shadow-maint/shadow/pull/545",
11534            "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E",
11535            "https://nvd.nist.gov/vuln/detail/CVE-2013-4235",
11536            "https://security-tracker.debian.org/tracker/CVE-2013-4235",
11537            "https://security.gentoo.org/glsa/202210-26",
11538            "https://ubuntu.com/security/notices/USN-5745-1",
11539            "https://ubuntu.com/security/notices/USN-5745-2",
11540            "https://www.cve.org/CVERecord?id=CVE-2013-4235"
11541          ],
11542          "PublishedDate": "2019-12-03T15:15:00Z",
11543          "LastModifiedDate": "2023-02-13T00:28:00Z"
11544        },
11545        {
11546          "VulnerabilityID": "CVE-2019-19882",
11547          "PkgID": "login@1:4.8.1-1",
11548          "PkgName": "login",
11549          "InstalledVersion": "1:4.8.1-1",
11550          "Status": "affected",
11551          "Layer": {
11552            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
11553            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
11554          },
11555          "SeveritySource": "debian",
11556          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882",
11557          "DataSource": {
11558            "ID": "debian",
11559            "Name": "Debian Security Tracker",
11560            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11561          },
11562          "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured",
11563          "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).",
11564          "Severity": "LOW",
11565          "CweIDs": [
11566            "CWE-732"
11567          ],
11568          "CVSS": {
11569            "nvd": {
11570              "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C",
11571              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
11572              "V2Score": 6.9,
11573              "V3Score": 7.8
11574            },
11575            "redhat": {
11576              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
11577              "V3Score": 7.8
11578            }
11579          },
11580          "References": [
11581            "https://access.redhat.com/security/cve/CVE-2019-19882",
11582            "https://bugs.archlinux.org/task/64836",
11583            "https://bugs.gentoo.org/702252",
11584            "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75",
11585            "https://github.com/shadow-maint/shadow/pull/199",
11586            "https://github.com/void-linux/void-packages/pull/17580",
11587            "https://nvd.nist.gov/vuln/detail/CVE-2019-19882",
11588            "https://security.gentoo.org/glsa/202008-09",
11589            "https://www.cve.org/CVERecord?id=CVE-2019-19882"
11590          ],
11591          "PublishedDate": "2019-12-18T16:15:00Z",
11592          "LastModifiedDate": "2020-08-25T15:15:00Z"
11593        },
11594        {
11595          "VulnerabilityID": "CVE-2023-29383",
11596          "PkgID": "login@1:4.8.1-1",
11597          "PkgName": "login",
11598          "InstalledVersion": "1:4.8.1-1",
11599          "Status": "affected",
11600          "Layer": {
11601            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
11602            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
11603          },
11604          "SeveritySource": "nvd",
11605          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383",
11606          "DataSource": {
11607            "ID": "debian",
11608            "Name": "Debian Security Tracker",
11609            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11610          },
11611          "Title": "Improper input validation in shadow-utils package utility chfn",
11612          "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.",
11613          "Severity": "LOW",
11614          "CweIDs": [
11615            "CWE-74"
11616          ],
11617          "CVSS": {
11618            "nvd": {
11619              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N",
11620              "V3Score": 3.3
11621            },
11622            "redhat": {
11623              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
11624              "V3Score": 5.5
11625            }
11626          },
11627          "References": [
11628            "https://access.redhat.com/security/cve/CVE-2023-29383",
11629            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383",
11630            "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d",
11631            "https://github.com/shadow-maint/shadow/pull/687",
11632            "https://nvd.nist.gov/vuln/detail/CVE-2023-29383",
11633            "https://www.cve.org/CVERecord?id=CVE-2023-29383",
11634            "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/",
11635            "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797"
11636          ],
11637          "PublishedDate": "2023-04-14T22:15:00Z",
11638          "LastModifiedDate": "2023-04-24T18:05:00Z"
11639        },
11640        {
11641          "VulnerabilityID": "CVE-2022-1304",
11642          "PkgID": "logsave@1.46.2-2",
11643          "PkgName": "logsave",
11644          "InstalledVersion": "1.46.2-2",
11645          "Status": "affected",
11646          "Layer": {
11647            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
11648            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
11649          },
11650          "SeveritySource": "nvd",
11651          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1304",
11652          "DataSource": {
11653            "ID": "debian",
11654            "Name": "Debian Security Tracker",
11655            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11656          },
11657          "Title": "out-of-bounds read/write via crafted filesystem",
11658          "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.",
11659          "Severity": "HIGH",
11660          "CweIDs": [
11661            "CWE-125",
11662            "CWE-787"
11663          ],
11664          "CVSS": {
11665            "nvd": {
11666              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
11667              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
11668              "V2Score": 6.8,
11669              "V3Score": 7.8
11670            },
11671            "redhat": {
11672              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H",
11673              "V3Score": 5.8
11674            }
11675          },
11676          "References": [
11677            "https://access.redhat.com/errata/RHSA-2022:8361",
11678            "https://access.redhat.com/security/cve/CVE-2022-1304",
11679            "https://bugzilla.redhat.com/2069726",
11680            "https://bugzilla.redhat.com/show_bug.cgi?id=2069726",
11681            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304",
11682            "https://errata.almalinux.org/9/ALSA-2022-8361.html",
11683            "https://errata.rockylinux.org/RLSA-2022:8361",
11684            "https://linux.oracle.com/cve/CVE-2022-1304.html",
11685            "https://linux.oracle.com/errata/ELSA-2022-8361.html",
11686            "https://marc.info/?l=linux-ext4\u0026m=165056234501732\u0026w=2",
11687            "https://nvd.nist.gov/vuln/detail/CVE-2022-1304",
11688            "https://ubuntu.com/security/notices/USN-5464-1",
11689            "https://www.cve.org/CVERecord?id=CVE-2022-1304"
11690          ],
11691          "PublishedDate": "2022-04-14T21:15:00Z",
11692          "LastModifiedDate": "2023-02-12T22:15:00Z"
11693        },
11694        {
11695          "VulnerabilityID": "CVE-2022-0563",
11696          "PkgID": "mount@2.36.1-8+deb11u1",
11697          "PkgName": "mount",
11698          "InstalledVersion": "2.36.1-8+deb11u1",
11699          "Status": "affected",
11700          "Layer": {
11701            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
11702            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
11703          },
11704          "SeveritySource": "debian",
11705          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563",
11706          "DataSource": {
11707            "ID": "debian",
11708            "Name": "Debian Security Tracker",
11709            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11710          },
11711          "Title": "partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline",
11712          "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.",
11713          "Severity": "LOW",
11714          "CweIDs": [
11715            "CWE-209"
11716          ],
11717          "CVSS": {
11718            "nvd": {
11719              "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N",
11720              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
11721              "V2Score": 1.9,
11722              "V3Score": 5.5
11723            },
11724            "redhat": {
11725              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
11726              "V3Score": 5.5
11727            }
11728          },
11729          "References": [
11730            "https://access.redhat.com/security/cve/CVE-2022-0563",
11731            "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/",
11732            "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u",
11733            "https://nvd.nist.gov/vuln/detail/CVE-2022-0563",
11734            "https://security.netapp.com/advisory/ntap-20220331-0002/",
11735            "https://www.cve.org/CVERecord?id=CVE-2022-0563"
11736          ],
11737          "PublishedDate": "2022-02-21T19:15:00Z",
11738          "LastModifiedDate": "2022-06-03T14:15:00Z"
11739        },
11740        {
11741          "VulnerabilityID": "CVE-2022-29458",
11742          "PkgID": "ncurses-base@6.2+20201114-2",
11743          "PkgName": "ncurses-base",
11744          "InstalledVersion": "6.2+20201114-2",
11745          "FixedVersion": "6.2+20201114-2+deb11u1",
11746          "Status": "fixed",
11747          "Layer": {
11748            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
11749            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
11750          },
11751          "SeveritySource": "nvd",
11752          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29458",
11753          "DataSource": {
11754            "ID": "debian",
11755            "Name": "Debian Security Tracker",
11756            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11757          },
11758          "Title": "segfaulting OOB read",
11759          "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.",
11760          "Severity": "HIGH",
11761          "CweIDs": [
11762            "CWE-125"
11763          ],
11764          "CVSS": {
11765            "nvd": {
11766              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P",
11767              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H",
11768              "V2Score": 5.8,
11769              "V3Score": 7.1
11770            },
11771            "redhat": {
11772              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H",
11773              "V3Score": 6.1
11774            }
11775          },
11776          "References": [
11777            "http://seclists.org/fulldisclosure/2022/Oct/41",
11778            "https://access.redhat.com/security/cve/CVE-2022-29458",
11779            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458",
11780            "https://invisible-island.net/ncurses/NEWS.html#t20220416",
11781            "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html",
11782            "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html",
11783            "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html",
11784            "https://nvd.nist.gov/vuln/detail/CVE-2022-29458",
11785            "https://support.apple.com/kb/HT213488",
11786            "https://ubuntu.com/security/notices/USN-5477-1",
11787            "https://ubuntu.com/security/notices/USN-6099-1",
11788            "https://www.cve.org/CVERecord?id=CVE-2022-29458"
11789          ],
11790          "PublishedDate": "2022-04-18T21:15:00Z",
11791          "LastModifiedDate": "2022-11-08T19:46:00Z"
11792        },
11793        {
11794          "VulnerabilityID": "CVE-2023-29491",
11795          "PkgID": "ncurses-base@6.2+20201114-2",
11796          "PkgName": "ncurses-base",
11797          "InstalledVersion": "6.2+20201114-2",
11798          "Status": "affected",
11799          "Layer": {
11800            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
11801            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
11802          },
11803          "SeveritySource": "nvd",
11804          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29491",
11805          "DataSource": {
11806            "ID": "debian",
11807            "Name": "Debian Security Tracker",
11808            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11809          },
11810          "Title": "Local users can trigger security-relevant memory corruption via malformed data",
11811          "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.",
11812          "Severity": "HIGH",
11813          "CweIDs": [
11814            "CWE-787"
11815          ],
11816          "CVSS": {
11817            "nvd": {
11818              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
11819              "V3Score": 7.8
11820            },
11821            "redhat": {
11822              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
11823              "V3Score": 7.8
11824            }
11825          },
11826          "References": [
11827            "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56",
11828            "http://www.openwall.com/lists/oss-security/2023/04/19/10",
11829            "http://www.openwall.com/lists/oss-security/2023/04/19/11",
11830            "https://access.redhat.com/security/cve/CVE-2023-29491",
11831            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491",
11832            "https://invisible-island.net/ncurses/NEWS.html#index-t20230408",
11833            "https://nvd.nist.gov/vuln/detail/CVE-2023-29491",
11834            "https://security.netapp.com/advisory/ntap-20230517-0009/",
11835            "https://ubuntu.com/security/notices/USN-6099-1",
11836            "https://www.cve.org/CVERecord?id=CVE-2023-29491",
11837            "https://www.openwall.com/lists/oss-security/2023/04/12/5",
11838            "https://www.openwall.com/lists/oss-security/2023/04/13/4"
11839          ],
11840          "PublishedDate": "2023-04-14T01:15:00Z",
11841          "LastModifiedDate": "2023-05-17T20:15:00Z"
11842        },
11843        {
11844          "VulnerabilityID": "CVE-2022-29458",
11845          "PkgID": "ncurses-bin@6.2+20201114-2",
11846          "PkgName": "ncurses-bin",
11847          "InstalledVersion": "6.2+20201114-2",
11848          "FixedVersion": "6.2+20201114-2+deb11u1",
11849          "Status": "fixed",
11850          "Layer": {
11851            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
11852            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
11853          },
11854          "SeveritySource": "nvd",
11855          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29458",
11856          "DataSource": {
11857            "ID": "debian",
11858            "Name": "Debian Security Tracker",
11859            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11860          },
11861          "Title": "segfaulting OOB read",
11862          "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.",
11863          "Severity": "HIGH",
11864          "CweIDs": [
11865            "CWE-125"
11866          ],
11867          "CVSS": {
11868            "nvd": {
11869              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P",
11870              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H",
11871              "V2Score": 5.8,
11872              "V3Score": 7.1
11873            },
11874            "redhat": {
11875              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H",
11876              "V3Score": 6.1
11877            }
11878          },
11879          "References": [
11880            "http://seclists.org/fulldisclosure/2022/Oct/41",
11881            "https://access.redhat.com/security/cve/CVE-2022-29458",
11882            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458",
11883            "https://invisible-island.net/ncurses/NEWS.html#t20220416",
11884            "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html",
11885            "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html",
11886            "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html",
11887            "https://nvd.nist.gov/vuln/detail/CVE-2022-29458",
11888            "https://support.apple.com/kb/HT213488",
11889            "https://ubuntu.com/security/notices/USN-5477-1",
11890            "https://ubuntu.com/security/notices/USN-6099-1",
11891            "https://www.cve.org/CVERecord?id=CVE-2022-29458"
11892          ],
11893          "PublishedDate": "2022-04-18T21:15:00Z",
11894          "LastModifiedDate": "2022-11-08T19:46:00Z"
11895        },
11896        {
11897          "VulnerabilityID": "CVE-2023-29491",
11898          "PkgID": "ncurses-bin@6.2+20201114-2",
11899          "PkgName": "ncurses-bin",
11900          "InstalledVersion": "6.2+20201114-2",
11901          "Status": "affected",
11902          "Layer": {
11903            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
11904            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
11905          },
11906          "SeveritySource": "nvd",
11907          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29491",
11908          "DataSource": {
11909            "ID": "debian",
11910            "Name": "Debian Security Tracker",
11911            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11912          },
11913          "Title": "Local users can trigger security-relevant memory corruption via malformed data",
11914          "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.",
11915          "Severity": "HIGH",
11916          "CweIDs": [
11917            "CWE-787"
11918          ],
11919          "CVSS": {
11920            "nvd": {
11921              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
11922              "V3Score": 7.8
11923            },
11924            "redhat": {
11925              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
11926              "V3Score": 7.8
11927            }
11928          },
11929          "References": [
11930            "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56",
11931            "http://www.openwall.com/lists/oss-security/2023/04/19/10",
11932            "http://www.openwall.com/lists/oss-security/2023/04/19/11",
11933            "https://access.redhat.com/security/cve/CVE-2023-29491",
11934            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491",
11935            "https://invisible-island.net/ncurses/NEWS.html#index-t20230408",
11936            "https://nvd.nist.gov/vuln/detail/CVE-2023-29491",
11937            "https://security.netapp.com/advisory/ntap-20230517-0009/",
11938            "https://ubuntu.com/security/notices/USN-6099-1",
11939            "https://www.cve.org/CVERecord?id=CVE-2023-29491",
11940            "https://www.openwall.com/lists/oss-security/2023/04/12/5",
11941            "https://www.openwall.com/lists/oss-security/2023/04/13/4"
11942          ],
11943          "PublishedDate": "2023-04-14T01:15:00Z",
11944          "LastModifiedDate": "2023-05-17T20:15:00Z"
11945        },
11946        {
11947          "VulnerabilityID": "CVE-2020-36309",
11948          "PkgID": "nginx@1.22.0-1~bullseye",
11949          "PkgName": "nginx",
11950          "InstalledVersion": "1.22.0-1~bullseye",
11951          "Status": "will_not_fix",
11952          "Layer": {
11953            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
11954            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
11955          },
11956          "SeveritySource": "nvd",
11957          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-36309",
11958          "DataSource": {
11959            "ID": "debian",
11960            "Name": "Debian Security Tracker",
11961            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
11962          },
11963          "Title": "ngx_http_lua_module (aka lua-nginx-module) before 0.10.16 in OpenResty ...",
11964          "Description": "ngx_http_lua_module (aka lua-nginx-module) before 0.10.16 in OpenResty allows unsafe characters in an argument when using the API to mutate a URI, or a request or response header.",
11965          "Severity": "MEDIUM",
11966          "CVSS": {
11967            "nvd": {
11968              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N",
11969              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
11970              "V2Score": 5,
11971              "V3Score": 5.3
11972            }
11973          },
11974          "References": [
11975            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-36309",
11976            "https://github.com/openresty/lua-nginx-module/compare/v0.10.15...v0.10.16",
11977            "https://github.com/openresty/lua-nginx-module/pull/1654",
11978            "https://news.ycombinator.com/item?id=26712562",
11979            "https://security.netapp.com/advisory/ntap-20210507-0005/",
11980            "https://ubuntu.com/security/notices/USN-5371-1"
11981          ],
11982          "PublishedDate": "2021-04-06T19:15:00Z",
11983          "LastModifiedDate": "2021-06-03T19:10:00Z"
11984        },
11985        {
11986          "VulnerabilityID": "CVE-2009-4487",
11987          "PkgID": "nginx@1.22.0-1~bullseye",
11988          "PkgName": "nginx",
11989          "InstalledVersion": "1.22.0-1~bullseye",
11990          "Status": "affected",
11991          "Layer": {
11992            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
11993            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
11994          },
11995          "SeveritySource": "debian",
11996          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2009-4487",
11997          "DataSource": {
11998            "ID": "debian",
11999            "Name": "Debian Security Tracker",
12000            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12001          },
12002          "Title": "nginx: Absent sanitation of escape sequences in web server log",
12003          "Description": "nginx 0.7.64 writes data to a log file without sanitizing non-printable characters, which might allow remote attackers to modify a window's title, or possibly execute arbitrary commands or overwrite files, via an HTTP request containing an escape sequence for a terminal emulator.",
12004          "Severity": "LOW",
12005          "CVSS": {
12006            "nvd": {
12007              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
12008              "V2Score": 6.8
12009            },
12010            "redhat": {
12011              "V2Vector": "AV:N/AC:H/Au:N/C:N/I:P/A:N",
12012              "V2Score": 2.6
12013            }
12014          },
12015          "References": [
12016            "http://www.securityfocus.com/archive/1/508830/100/0/threaded",
12017            "http://www.securityfocus.com/bid/37711",
12018            "http://www.ush.it/team/ush/hack_httpd_escape/adv.txt",
12019            "https://access.redhat.com/security/cve/CVE-2009-4487",
12020            "https://nvd.nist.gov/vuln/detail/CVE-2009-4487",
12021            "https://www.cve.org/CVERecord?id=CVE-2009-4487"
12022          ],
12023          "PublishedDate": "2010-01-13T20:30:00Z",
12024          "LastModifiedDate": "2021-11-10T15:51:00Z"
12025        },
12026        {
12027          "VulnerabilityID": "CVE-2013-0337",
12028          "PkgID": "nginx@1.22.0-1~bullseye",
12029          "PkgName": "nginx",
12030          "InstalledVersion": "1.22.0-1~bullseye",
12031          "Status": "will_not_fix",
12032          "Layer": {
12033            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12034            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12035          },
12036          "SeveritySource": "debian",
12037          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-0337",
12038          "DataSource": {
12039            "ID": "debian",
12040            "Name": "Debian Security Tracker",
12041            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12042          },
12043          "Title": "The default configuration of nginx, possibly 1.3.13 and earlier, uses  ...",
12044          "Description": "The default configuration of nginx, possibly 1.3.13 and earlier, uses world-readable permissions for the (1) access.log and (2) error.log files, which allows local users to obtain sensitive information by reading the files.",
12045          "Severity": "LOW",
12046          "CweIDs": [
12047            "CWE-264"
12048          ],
12049          "CVSS": {
12050            "nvd": {
12051              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P",
12052              "V2Score": 7.5
12053            }
12054          },
12055          "References": [
12056            "http://secunia.com/advisories/55181",
12057            "http://security.gentoo.org/glsa/glsa-201310-04.xml",
12058            "http://www.openwall.com/lists/oss-security/2013/02/21/15",
12059            "http://www.openwall.com/lists/oss-security/2013/02/22/1",
12060            "http://www.openwall.com/lists/oss-security/2013/02/24/1"
12061          ],
12062          "PublishedDate": "2013-10-27T00:55:00Z",
12063          "LastModifiedDate": "2021-11-10T15:57:00Z"
12064        },
12065        {
12066          "VulnerabilityID": "CVE-2022-4450",
12067          "VendorIDs": [
12068            "DSA-5343-1"
12069          ],
12070          "PkgID": "openssl@1.1.1n-0+deb11u3",
12071          "PkgName": "openssl",
12072          "InstalledVersion": "1.1.1n-0+deb11u3",
12073          "FixedVersion": "1.1.1n-0+deb11u4",
12074          "Status": "fixed",
12075          "Layer": {
12076            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12077            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12078          },
12079          "SeveritySource": "nvd",
12080          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4450",
12081          "DataSource": {
12082            "ID": "debian",
12083            "Name": "Debian Security Tracker",
12084            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12085          },
12086          "Title": "double free after calling PEM_read_bio_ex",
12087          "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.",
12088          "Severity": "HIGH",
12089          "CweIDs": [
12090            "CWE-415"
12091          ],
12092          "CVSS": {
12093            "ghsa": {
12094              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
12095              "V3Score": 7.5
12096            },
12097            "nvd": {
12098              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
12099              "V3Score": 7.5
12100            },
12101            "redhat": {
12102              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
12103              "V3Score": 7.5
12104            }
12105          },
12106          "References": [
12107            "https://access.redhat.com/errata/RHSA-2023:2165",
12108            "https://access.redhat.com/security/cve/CVE-2022-4450",
12109            "https://bugzilla.redhat.com/1960321",
12110            "https://bugzilla.redhat.com/2164440",
12111            "https://bugzilla.redhat.com/2164487",
12112            "https://bugzilla.redhat.com/2164492",
12113            "https://bugzilla.redhat.com/2164494",
12114            "https://bugzilla.redhat.com/show_bug.cgi?id=2144000",
12115            "https://bugzilla.redhat.com/show_bug.cgi?id=2144003",
12116            "https://bugzilla.redhat.com/show_bug.cgi?id=2144006",
12117            "https://bugzilla.redhat.com/show_bug.cgi?id=2144008",
12118            "https://bugzilla.redhat.com/show_bug.cgi?id=2144010",
12119            "https://bugzilla.redhat.com/show_bug.cgi?id=2144012",
12120            "https://bugzilla.redhat.com/show_bug.cgi?id=2144015",
12121            "https://bugzilla.redhat.com/show_bug.cgi?id=2144017",
12122            "https://bugzilla.redhat.com/show_bug.cgi?id=2144019",
12123            "https://bugzilla.redhat.com/show_bug.cgi?id=2145170",
12124            "https://bugzilla.redhat.com/show_bug.cgi?id=2158412",
12125            "https://bugzilla.redhat.com/show_bug.cgi?id=2164440",
12126            "https://bugzilla.redhat.com/show_bug.cgi?id=2164487",
12127            "https://bugzilla.redhat.com/show_bug.cgi?id=2164488",
12128            "https://bugzilla.redhat.com/show_bug.cgi?id=2164492",
12129            "https://bugzilla.redhat.com/show_bug.cgi?id=2164494",
12130            "https://bugzilla.redhat.com/show_bug.cgi?id=2164497",
12131            "https://bugzilla.redhat.com/show_bug.cgi?id=2164499",
12132            "https://bugzilla.redhat.com/show_bug.cgi?id=2164500",
12133            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203",
12134            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304",
12135            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450",
12136            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215",
12137            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216",
12138            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217",
12139            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286",
12140            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401",
12141            "https://errata.almalinux.org/9/ALSA-2023-2165.html",
12142            "https://errata.rockylinux.org/RLSA-2023:0946",
12143            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83",
12144            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b",
12145            "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q",
12146            "https://linux.oracle.com/cve/CVE-2022-4450.html",
12147            "https://linux.oracle.com/errata/ELSA-2023-2932.html",
12148            "https://nvd.nist.gov/vuln/detail/CVE-2022-4450",
12149            "https://rustsec.org/advisories/RUSTSEC-2023-0010.html",
12150            "https://ubuntu.com/security/notices/USN-5844-1",
12151            "https://www.cve.org/CVERecord?id=CVE-2022-4450",
12152            "https://www.openssl.org/news/secadv/20230207.txt"
12153          ],
12154          "PublishedDate": "2023-02-08T20:15:00Z",
12155          "LastModifiedDate": "2023-07-19T00:57:00Z"
12156        },
12157        {
12158          "VulnerabilityID": "CVE-2023-0215",
12159          "VendorIDs": [
12160            "DSA-5343-1"
12161          ],
12162          "PkgID": "openssl@1.1.1n-0+deb11u3",
12163          "PkgName": "openssl",
12164          "InstalledVersion": "1.1.1n-0+deb11u3",
12165          "FixedVersion": "1.1.1n-0+deb11u4",
12166          "Status": "fixed",
12167          "Layer": {
12168            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12169            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12170          },
12171          "SeveritySource": "nvd",
12172          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0215",
12173          "DataSource": {
12174            "ID": "debian",
12175            "Name": "Debian Security Tracker",
12176            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12177          },
12178          "Title": "use-after-free following BIO_new_NDEF",
12179          "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",
12180          "Severity": "HIGH",
12181          "CweIDs": [
12182            "CWE-416"
12183          ],
12184          "CVSS": {
12185            "ghsa": {
12186              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
12187              "V3Score": 7.5
12188            },
12189            "nvd": {
12190              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
12191              "V3Score": 7.5
12192            },
12193            "redhat": {
12194              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
12195              "V3Score": 7.5
12196            }
12197          },
12198          "References": [
12199            "https://access.redhat.com/errata/RHSA-2023:2165",
12200            "https://access.redhat.com/security/cve/CVE-2023-0215",
12201            "https://bugzilla.redhat.com/1960321",
12202            "https://bugzilla.redhat.com/2164440",
12203            "https://bugzilla.redhat.com/2164487",
12204            "https://bugzilla.redhat.com/2164492",
12205            "https://bugzilla.redhat.com/2164494",
12206            "https://bugzilla.redhat.com/show_bug.cgi?id=2144000",
12207            "https://bugzilla.redhat.com/show_bug.cgi?id=2144003",
12208            "https://bugzilla.redhat.com/show_bug.cgi?id=2144006",
12209            "https://bugzilla.redhat.com/show_bug.cgi?id=2144008",
12210            "https://bugzilla.redhat.com/show_bug.cgi?id=2144010",
12211            "https://bugzilla.redhat.com/show_bug.cgi?id=2144012",
12212            "https://bugzilla.redhat.com/show_bug.cgi?id=2144015",
12213            "https://bugzilla.redhat.com/show_bug.cgi?id=2144017",
12214            "https://bugzilla.redhat.com/show_bug.cgi?id=2144019",
12215            "https://bugzilla.redhat.com/show_bug.cgi?id=2145170",
12216            "https://bugzilla.redhat.com/show_bug.cgi?id=2158412",
12217            "https://bugzilla.redhat.com/show_bug.cgi?id=2164440",
12218            "https://bugzilla.redhat.com/show_bug.cgi?id=2164487",
12219            "https://bugzilla.redhat.com/show_bug.cgi?id=2164488",
12220            "https://bugzilla.redhat.com/show_bug.cgi?id=2164492",
12221            "https://bugzilla.redhat.com/show_bug.cgi?id=2164494",
12222            "https://bugzilla.redhat.com/show_bug.cgi?id=2164497",
12223            "https://bugzilla.redhat.com/show_bug.cgi?id=2164499",
12224            "https://bugzilla.redhat.com/show_bug.cgi?id=2164500",
12225            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203",
12226            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304",
12227            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450",
12228            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215",
12229            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216",
12230            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217",
12231            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286",
12232            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401",
12233            "https://errata.almalinux.org/9/ALSA-2023-2165.html",
12234            "https://errata.rockylinux.org/RLSA-2023:0946",
12235            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd",
12236            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb",
12237            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344",
12238            "https://github.com/advisories/GHSA-r7jw-wp68-3xch",
12239            "https://linux.oracle.com/cve/CVE-2023-0215.html",
12240            "https://linux.oracle.com/errata/ELSA-2023-2932.html",
12241            "https://nvd.nist.gov/vuln/detail/CVE-2023-0215",
12242            "https://rustsec.org/advisories/RUSTSEC-2023-0009.html",
12243            "https://security.netapp.com/advisory/ntap-20230427-0007/",
12244            "https://security.netapp.com/advisory/ntap-20230427-0009/",
12245            "https://ubuntu.com/security/notices/USN-5844-1",
12246            "https://ubuntu.com/security/notices/USN-5845-1",
12247            "https://ubuntu.com/security/notices/USN-5845-2",
12248            "https://www.cve.org/CVERecord?id=CVE-2023-0215",
12249            "https://www.openssl.org/news/secadv/20230207.txt"
12250          ],
12251          "PublishedDate": "2023-02-08T20:15:00Z",
12252          "LastModifiedDate": "2023-07-19T00:55:00Z"
12253        },
12254        {
12255          "VulnerabilityID": "CVE-2023-0286",
12256          "VendorIDs": [
12257            "DSA-5343-1"
12258          ],
12259          "PkgID": "openssl@1.1.1n-0+deb11u3",
12260          "PkgName": "openssl",
12261          "InstalledVersion": "1.1.1n-0+deb11u3",
12262          "FixedVersion": "1.1.1n-0+deb11u4",
12263          "Status": "fixed",
12264          "Layer": {
12265            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12266            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12267          },
12268          "SeveritySource": "nvd",
12269          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0286",
12270          "DataSource": {
12271            "ID": "debian",
12272            "Name": "Debian Security Tracker",
12273            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12274          },
12275          "Title": "X.400 address type confusion in X.509 GeneralName",
12276          "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.",
12277          "Severity": "HIGH",
12278          "CweIDs": [
12279            "CWE-843"
12280          ],
12281          "CVSS": {
12282            "ghsa": {
12283              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
12284              "V3Score": 7.4
12285            },
12286            "nvd": {
12287              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
12288              "V3Score": 7.4
12289            },
12290            "redhat": {
12291              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
12292              "V3Score": 7.4
12293            }
12294          },
12295          "References": [
12296            "https://access.redhat.com/errata/RHSA-2023:2165",
12297            "https://access.redhat.com/security/cve/CVE-2023-0286",
12298            "https://access.redhat.com/security/cve/cve-2023-0286",
12299            "https://bugzilla.redhat.com/1960321",
12300            "https://bugzilla.redhat.com/2164440",
12301            "https://bugzilla.redhat.com/2164487",
12302            "https://bugzilla.redhat.com/2164492",
12303            "https://bugzilla.redhat.com/2164494",
12304            "https://bugzilla.redhat.com/show_bug.cgi?id=2144000",
12305            "https://bugzilla.redhat.com/show_bug.cgi?id=2144003",
12306            "https://bugzilla.redhat.com/show_bug.cgi?id=2144006",
12307            "https://bugzilla.redhat.com/show_bug.cgi?id=2144008",
12308            "https://bugzilla.redhat.com/show_bug.cgi?id=2144010",
12309            "https://bugzilla.redhat.com/show_bug.cgi?id=2144012",
12310            "https://bugzilla.redhat.com/show_bug.cgi?id=2144015",
12311            "https://bugzilla.redhat.com/show_bug.cgi?id=2144017",
12312            "https://bugzilla.redhat.com/show_bug.cgi?id=2144019",
12313            "https://bugzilla.redhat.com/show_bug.cgi?id=2145170",
12314            "https://bugzilla.redhat.com/show_bug.cgi?id=2158412",
12315            "https://bugzilla.redhat.com/show_bug.cgi?id=2164440",
12316            "https://bugzilla.redhat.com/show_bug.cgi?id=2164487",
12317            "https://bugzilla.redhat.com/show_bug.cgi?id=2164488",
12318            "https://bugzilla.redhat.com/show_bug.cgi?id=2164492",
12319            "https://bugzilla.redhat.com/show_bug.cgi?id=2164494",
12320            "https://bugzilla.redhat.com/show_bug.cgi?id=2164497",
12321            "https://bugzilla.redhat.com/show_bug.cgi?id=2164499",
12322            "https://bugzilla.redhat.com/show_bug.cgi?id=2164500",
12323            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203",
12324            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304",
12325            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450",
12326            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215",
12327            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216",
12328            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217",
12329            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286",
12330            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401",
12331            "https://errata.almalinux.org/9/ALSA-2023-2165.html",
12332            "https://errata.rockylinux.org/RLSA-2023:0946",
12333            "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt",
12334            "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig",
12335            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9",
12336            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658",
12337            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d",
12338            "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5",
12339            "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5",
12340            "https://linux.oracle.com/cve/CVE-2023-0286.html",
12341            "https://linux.oracle.com/errata/ELSA-2023-2932.html",
12342            "https://nvd.nist.gov/vuln/detail/CVE-2023-0286",
12343            "https://rustsec.org/advisories/RUSTSEC-2023-0006.html",
12344            "https://ubuntu.com/security/notices/USN-5844-1",
12345            "https://ubuntu.com/security/notices/USN-5845-1",
12346            "https://ubuntu.com/security/notices/USN-5845-2",
12347            "https://www.cve.org/CVERecord?id=CVE-2023-0286",
12348            "https://www.openssl.org/news/secadv/20230207.txt"
12349          ],
12350          "PublishedDate": "2023-02-08T20:15:00Z",
12351          "LastModifiedDate": "2023-07-19T00:54:00Z"
12352        },
12353        {
12354          "VulnerabilityID": "CVE-2023-0464",
12355          "VendorIDs": [
12356            "DSA-5417-1"
12357          ],
12358          "PkgID": "openssl@1.1.1n-0+deb11u3",
12359          "PkgName": "openssl",
12360          "InstalledVersion": "1.1.1n-0+deb11u3",
12361          "FixedVersion": "1.1.1n-0+deb11u5",
12362          "Status": "fixed",
12363          "Layer": {
12364            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12365            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12366          },
12367          "SeveritySource": "nvd",
12368          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0464",
12369          "DataSource": {
12370            "ID": "debian",
12371            "Name": "Debian Security Tracker",
12372            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12373          },
12374          "Title": "Denial of service by excessive resource usage in verifying X509 policy constraints",
12375          "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.",
12376          "Severity": "HIGH",
12377          "CweIDs": [
12378            "CWE-295"
12379          ],
12380          "CVSS": {
12381            "nvd": {
12382              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
12383              "V3Score": 7.5
12384            },
12385            "redhat": {
12386              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
12387              "V3Score": 5.9
12388            }
12389          },
12390          "References": [
12391            "https://access.redhat.com/errata/RHSA-2023:3722",
12392            "https://access.redhat.com/security/cve/CVE-2023-0464",
12393            "https://bugzilla.redhat.com/2181082",
12394            "https://bugzilla.redhat.com/2182561",
12395            "https://bugzilla.redhat.com/2182565",
12396            "https://bugzilla.redhat.com/2188461",
12397            "https://bugzilla.redhat.com/2207947",
12398            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464",
12399            "https://errata.almalinux.org/9/ALSA-2023-3722.html",
12400            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545",
12401            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e",
12402            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b",
12403            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1",
12404            "https://linux.oracle.com/cve/CVE-2023-0464.html",
12405            "https://linux.oracle.com/errata/ELSA-2023-3722.html",
12406            "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html",
12407            "https://nvd.nist.gov/vuln/detail/CVE-2023-0464",
12408            "https://ubuntu.com/security/notices/USN-6039-1",
12409            "https://www.cve.org/CVERecord?id=CVE-2023-0464",
12410            "https://www.debian.org/security/2023/dsa-5417",
12411            "https://www.openssl.org/news/secadv/20230322.txt"
12412          ],
12413          "PublishedDate": "2023-03-22T17:15:00Z",
12414          "LastModifiedDate": "2023-06-08T19:15:00Z"
12415        },
12416        {
12417          "VulnerabilityID": "CVE-2023-2650",
12418          "VendorIDs": [
12419            "DSA-5417-1"
12420          ],
12421          "PkgID": "openssl@1.1.1n-0+deb11u3",
12422          "PkgName": "openssl",
12423          "InstalledVersion": "1.1.1n-0+deb11u3",
12424          "FixedVersion": "1.1.1n-0+deb11u5",
12425          "Status": "fixed",
12426          "Layer": {
12427            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12428            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12429          },
12430          "SeveritySource": "nvd",
12431          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650",
12432          "DataSource": {
12433            "ID": "debian",
12434            "Name": "Debian Security Tracker",
12435            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12436          },
12437          "Title": "Possible DoS translating ASN.1 object identifiers",
12438          "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.",
12439          "Severity": "HIGH",
12440          "CweIDs": [
12441            "CWE-770"
12442          ],
12443          "CVSS": {
12444            "nvd": {
12445              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
12446              "V3Score": 7.5
12447            },
12448            "redhat": {
12449              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
12450              "V3Score": 6.5
12451            }
12452          },
12453          "References": [
12454            "http://www.openwall.com/lists/oss-security/2023/05/30/1",
12455            "https://access.redhat.com/errata/RHSA-2023:3722",
12456            "https://access.redhat.com/security/cve/CVE-2023-2650",
12457            "https://bugzilla.redhat.com/2181082",
12458            "https://bugzilla.redhat.com/2182561",
12459            "https://bugzilla.redhat.com/2182565",
12460            "https://bugzilla.redhat.com/2188461",
12461            "https://bugzilla.redhat.com/2207947",
12462            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650",
12463            "https://errata.almalinux.org/9/ALSA-2023-3722.html",
12464            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b",
12465            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c",
12466            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098",
12467            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a",
12468            "https://linux.oracle.com/cve/CVE-2023-2650.html",
12469            "https://linux.oracle.com/errata/ELSA-2023-3722.html",
12470            "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html",
12471            "https://nvd.nist.gov/vuln/detail/CVE-2023-2650",
12472            "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009",
12473            "https://security.netapp.com/advisory/ntap-20230703-0001/",
12474            "https://ubuntu.com/security/notices/USN-6119-1",
12475            "https://ubuntu.com/security/notices/USN-6188-1",
12476            "https://www.cve.org/CVERecord?id=CVE-2023-2650",
12477            "https://www.debian.org/security/2023/dsa-5417",
12478            "https://www.openssl.org/news/secadv/20230530.txt"
12479          ],
12480          "PublishedDate": "2023-05-30T14:15:00Z",
12481          "LastModifiedDate": "2023-07-03T16:15:00Z"
12482        },
12483        {
12484          "VulnerabilityID": "CVE-2022-2097",
12485          "VendorIDs": [
12486            "DSA-5343-1"
12487          ],
12488          "PkgID": "openssl@1.1.1n-0+deb11u3",
12489          "PkgName": "openssl",
12490          "InstalledVersion": "1.1.1n-0+deb11u3",
12491          "FixedVersion": "1.1.1n-0+deb11u4",
12492          "Status": "fixed",
12493          "Layer": {
12494            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12495            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12496          },
12497          "SeveritySource": "nvd",
12498          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2097",
12499          "DataSource": {
12500            "ID": "debian",
12501            "Name": "Debian Security Tracker",
12502            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12503          },
12504          "Title": "AES OCB fails to encrypt some bytes",
12505          "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).",
12506          "Severity": "MEDIUM",
12507          "CweIDs": [
12508            "CWE-326"
12509          ],
12510          "CVSS": {
12511            "ghsa": {
12512              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
12513              "V3Score": 7.5
12514            },
12515            "nvd": {
12516              "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N",
12517              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
12518              "V2Score": 5,
12519              "V3Score": 5.3
12520            },
12521            "redhat": {
12522              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
12523              "V3Score": 5.3
12524            }
12525          },
12526          "References": [
12527            "https://access.redhat.com/errata/RHSA-2022:6224",
12528            "https://access.redhat.com/security/cve/CVE-2022-2097",
12529            "https://bugzilla.redhat.com/2081494",
12530            "https://bugzilla.redhat.com/2087911",
12531            "https://bugzilla.redhat.com/2087913",
12532            "https://bugzilla.redhat.com/2097310",
12533            "https://bugzilla.redhat.com/2104905",
12534            "https://bugzilla.redhat.com/show_bug.cgi?id=2081494",
12535            "https://bugzilla.redhat.com/show_bug.cgi?id=2097310",
12536            "https://bugzilla.redhat.com/show_bug.cgi?id=2100554",
12537            "https://bugzilla.redhat.com/show_bug.cgi?id=2104905",
12538            "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf",
12539            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292",
12540            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068",
12541            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097",
12542            "https://errata.almalinux.org/9/ALSA-2022-6224.html",
12543            "https://errata.rockylinux.org/RLSA-2022:5818",
12544            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431",
12545            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93",
12546            "https://github.com/advisories/GHSA-3wx7-46ch-7rq2",
12547            "https://linux.oracle.com/cve/CVE-2022-2097.html",
12548            "https://linux.oracle.com/errata/ELSA-2022-9751.html",
12549            "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html",
12550            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/",
12551            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/",
12552            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/",
12553            "https://nvd.nist.gov/vuln/detail/CVE-2022-2097",
12554            "https://rustsec.org/advisories/RUSTSEC-2022-0032.html",
12555            "https://security.gentoo.org/glsa/202210-02",
12556            "https://security.netapp.com/advisory/ntap-20220715-0011/",
12557            "https://security.netapp.com/advisory/ntap-20230420-0008/",
12558            "https://ubuntu.com/security/notices/USN-5502-1",
12559            "https://www.cve.org/CVERecord?id=CVE-2022-2097",
12560            "https://www.debian.org/security/2023/dsa-5343",
12561            "https://www.openssl.org/news/secadv/20220705.txt"
12562          ],
12563          "PublishedDate": "2022-07-05T11:15:00Z",
12564          "LastModifiedDate": "2023-04-20T09:15:00Z"
12565        },
12566        {
12567          "VulnerabilityID": "CVE-2022-4304",
12568          "VendorIDs": [
12569            "DSA-5343-1"
12570          ],
12571          "PkgID": "openssl@1.1.1n-0+deb11u3",
12572          "PkgName": "openssl",
12573          "InstalledVersion": "1.1.1n-0+deb11u3",
12574          "FixedVersion": "1.1.1n-0+deb11u4",
12575          "Status": "fixed",
12576          "Layer": {
12577            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12578            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12579          },
12580          "SeveritySource": "nvd",
12581          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4304",
12582          "DataSource": {
12583            "ID": "debian",
12584            "Name": "Debian Security Tracker",
12585            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12586          },
12587          "Title": "timing attack in RSA Decryption implementation",
12588          "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.",
12589          "Severity": "MEDIUM",
12590          "CVSS": {
12591            "ghsa": {
12592              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
12593              "V3Score": 5.9
12594            },
12595            "nvd": {
12596              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
12597              "V3Score": 5.9
12598            },
12599            "redhat": {
12600              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
12601              "V3Score": 5.9
12602            }
12603          },
12604          "References": [
12605            "https://access.redhat.com/errata/RHSA-2023:2165",
12606            "https://access.redhat.com/security/cve/CVE-2022-4304",
12607            "https://bugzilla.redhat.com/1960321",
12608            "https://bugzilla.redhat.com/2164440",
12609            "https://bugzilla.redhat.com/2164487",
12610            "https://bugzilla.redhat.com/2164492",
12611            "https://bugzilla.redhat.com/2164494",
12612            "https://bugzilla.redhat.com/show_bug.cgi?id=2144000",
12613            "https://bugzilla.redhat.com/show_bug.cgi?id=2144003",
12614            "https://bugzilla.redhat.com/show_bug.cgi?id=2144006",
12615            "https://bugzilla.redhat.com/show_bug.cgi?id=2144008",
12616            "https://bugzilla.redhat.com/show_bug.cgi?id=2144010",
12617            "https://bugzilla.redhat.com/show_bug.cgi?id=2144012",
12618            "https://bugzilla.redhat.com/show_bug.cgi?id=2144015",
12619            "https://bugzilla.redhat.com/show_bug.cgi?id=2144017",
12620            "https://bugzilla.redhat.com/show_bug.cgi?id=2144019",
12621            "https://bugzilla.redhat.com/show_bug.cgi?id=2145170",
12622            "https://bugzilla.redhat.com/show_bug.cgi?id=2158412",
12623            "https://bugzilla.redhat.com/show_bug.cgi?id=2164440",
12624            "https://bugzilla.redhat.com/show_bug.cgi?id=2164487",
12625            "https://bugzilla.redhat.com/show_bug.cgi?id=2164488",
12626            "https://bugzilla.redhat.com/show_bug.cgi?id=2164492",
12627            "https://bugzilla.redhat.com/show_bug.cgi?id=2164494",
12628            "https://bugzilla.redhat.com/show_bug.cgi?id=2164497",
12629            "https://bugzilla.redhat.com/show_bug.cgi?id=2164499",
12630            "https://bugzilla.redhat.com/show_bug.cgi?id=2164500",
12631            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203",
12632            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304",
12633            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450",
12634            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215",
12635            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216",
12636            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217",
12637            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286",
12638            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401",
12639            "https://errata.almalinux.org/9/ALSA-2023-2165.html",
12640            "https://errata.rockylinux.org/RLSA-2023:0946",
12641            "https://github.com/advisories/GHSA-p52g-cm5j-mjv4",
12642            "https://linux.oracle.com/cve/CVE-2022-4304.html",
12643            "https://linux.oracle.com/errata/ELSA-2023-2932.html",
12644            "https://nvd.nist.gov/vuln/detail/CVE-2022-4304",
12645            "https://rustsec.org/advisories/RUSTSEC-2023-0007.html",
12646            "https://ubuntu.com/security/notices/USN-5844-1",
12647            "https://www.cve.org/CVERecord?id=CVE-2022-4304",
12648            "https://www.openssl.org/news/secadv/20230207.txt"
12649          ],
12650          "PublishedDate": "2023-02-08T20:15:00Z",
12651          "LastModifiedDate": "2023-07-19T00:57:00Z"
12652        },
12653        {
12654          "VulnerabilityID": "CVE-2023-0465",
12655          "VendorIDs": [
12656            "DSA-5417-1"
12657          ],
12658          "PkgID": "openssl@1.1.1n-0+deb11u3",
12659          "PkgName": "openssl",
12660          "InstalledVersion": "1.1.1n-0+deb11u3",
12661          "FixedVersion": "1.1.1n-0+deb11u5",
12662          "Status": "fixed",
12663          "Layer": {
12664            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12665            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12666          },
12667          "SeveritySource": "nvd",
12668          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0465",
12669          "DataSource": {
12670            "ID": "debian",
12671            "Name": "Debian Security Tracker",
12672            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12673          },
12674          "Title": "Invalid certificate policies in leaf certificates are silently ignored",
12675          "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.",
12676          "Severity": "MEDIUM",
12677          "CweIDs": [
12678            "CWE-295"
12679          ],
12680          "CVSS": {
12681            "nvd": {
12682              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
12683              "V3Score": 5.3
12684            },
12685            "redhat": {
12686              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
12687              "V3Score": 5.3
12688            }
12689          },
12690          "References": [
12691            "https://access.redhat.com/errata/RHSA-2023:3722",
12692            "https://access.redhat.com/security/cve/CVE-2023-0465",
12693            "https://bugzilla.redhat.com/2181082",
12694            "https://bugzilla.redhat.com/2182561",
12695            "https://bugzilla.redhat.com/2182565",
12696            "https://bugzilla.redhat.com/2188461",
12697            "https://bugzilla.redhat.com/2207947",
12698            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465",
12699            "https://errata.almalinux.org/9/ALSA-2023-3722.html",
12700            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a",
12701            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb",
12702            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95",
12703            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c",
12704            "https://linux.oracle.com/cve/CVE-2023-0465.html",
12705            "https://linux.oracle.com/errata/ELSA-2023-3722.html",
12706            "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html",
12707            "https://nvd.nist.gov/vuln/detail/CVE-2023-0465",
12708            "https://security.netapp.com/advisory/ntap-20230414-0001/",
12709            "https://ubuntu.com/security/notices/USN-6039-1",
12710            "https://www.cve.org/CVERecord?id=CVE-2023-0465",
12711            "https://www.debian.org/security/2023/dsa-5417",
12712            "https://www.openssl.org/news/secadv/20230328.txt"
12713          ],
12714          "PublishedDate": "2023-03-28T15:15:00Z",
12715          "LastModifiedDate": "2023-06-08T19:15:00Z"
12716        },
12717        {
12718          "VulnerabilityID": "CVE-2023-0466",
12719          "VendorIDs": [
12720            "DSA-5417-1"
12721          ],
12722          "PkgID": "openssl@1.1.1n-0+deb11u3",
12723          "PkgName": "openssl",
12724          "InstalledVersion": "1.1.1n-0+deb11u3",
12725          "FixedVersion": "1.1.1n-0+deb11u5",
12726          "Status": "fixed",
12727          "Layer": {
12728            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12729            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12730          },
12731          "SeveritySource": "nvd",
12732          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0466",
12733          "DataSource": {
12734            "ID": "debian",
12735            "Name": "Debian Security Tracker",
12736            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12737          },
12738          "Title": "Certificate policy check not enabled",
12739          "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.",
12740          "Severity": "MEDIUM",
12741          "CweIDs": [
12742            "CWE-295"
12743          ],
12744          "CVSS": {
12745            "nvd": {
12746              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
12747              "V3Score": 5.3
12748            },
12749            "redhat": {
12750              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
12751              "V3Score": 5.3
12752            }
12753          },
12754          "References": [
12755            "https://access.redhat.com/errata/RHSA-2023:3722",
12756            "https://access.redhat.com/security/cve/CVE-2023-0466",
12757            "https://bugzilla.redhat.com/2181082",
12758            "https://bugzilla.redhat.com/2182561",
12759            "https://bugzilla.redhat.com/2182565",
12760            "https://bugzilla.redhat.com/2188461",
12761            "https://bugzilla.redhat.com/2207947",
12762            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466",
12763            "https://errata.almalinux.org/9/ALSA-2023-3722.html",
12764            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a",
12765            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908",
12766            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72",
12767            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061",
12768            "https://linux.oracle.com/cve/CVE-2023-0466.html",
12769            "https://linux.oracle.com/errata/ELSA-2023-3722.html",
12770            "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html",
12771            "https://nvd.nist.gov/vuln/detail/CVE-2023-0466",
12772            "https://security.netapp.com/advisory/ntap-20230414-0001/",
12773            "https://ubuntu.com/security/notices/USN-6039-1",
12774            "https://www.cve.org/CVERecord?id=CVE-2023-0466",
12775            "https://www.debian.org/security/2023/dsa-5417",
12776            "https://www.openssl.org/news/secadv/20230328.txt"
12777          ],
12778          "PublishedDate": "2023-03-28T15:15:00Z",
12779          "LastModifiedDate": "2023-06-08T19:15:00Z"
12780        },
12781        {
12782          "VulnerabilityID": "CVE-2023-3446",
12783          "PkgID": "openssl@1.1.1n-0+deb11u3",
12784          "PkgName": "openssl",
12785          "InstalledVersion": "1.1.1n-0+deb11u3",
12786          "Status": "fix_deferred",
12787          "Layer": {
12788            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12789            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12790          },
12791          "SeveritySource": "nvd",
12792          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-3446",
12793          "DataSource": {
12794            "ID": "debian",
12795            "Name": "Debian Security Tracker",
12796            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12797          },
12798          "Title": "Excessive time spent checking DH keys and parameters",
12799          "Description": "Issue summary: Checking excessively long DH keys or parameters may be very slow.\n\nImpact summary: Applications that use the functions DH_check(), DH_check_ex()\nor EVP_PKEY_param_check() to check a DH key or DH parameters may experience long\ndelays. Where the key or parameters that are being checked have been obtained\nfrom an untrusted source this may lead to a Denial of Service.\n\nThe function DH_check() performs various checks on DH parameters. One of those\nchecks confirms that the modulus ('p' parameter) is not too large. Trying to use\na very large modulus is slow and OpenSSL will not normally use a modulus which\nis over 10,000 bits in length.\n\nHowever the DH_check() function checks numerous aspects of the key or parameters\nthat have been supplied. Some of those checks use the supplied modulus value\neven if it has already been found to be too large.\n\nAn application that calls DH_check() and supplies a key or parameters obtained\nfrom an untrusted source could be vulernable to a Denial of Service attack.\n\nThe function DH_check() is itself called by a number of other OpenSSL functions.\nAn application calling any of those other functions may similarly be affected.\nThe other functions affected by this are DH_check_ex() and\nEVP_PKEY_param_check().\n\nAlso vulnerable are the OpenSSL dhparam and pkeyparam command line applications\nwhen using the '-check' option.\n\nThe OpenSSL SSL/TLS implementation is not affected by this issue.\nThe OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.",
12800          "Severity": "MEDIUM",
12801          "CweIDs": [
12802            "CWE-1333"
12803          ],
12804          "CVSS": {
12805            "nvd": {
12806              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
12807              "V3Score": 5.3
12808            },
12809            "redhat": {
12810              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
12811              "V3Score": 5.3
12812            }
12813          },
12814          "References": [
12815            "http://www.openwall.com/lists/oss-security/2023/07/19/4",
12816            "http://www.openwall.com/lists/oss-security/2023/07/19/5",
12817            "http://www.openwall.com/lists/oss-security/2023/07/19/6",
12818            "http://www.openwall.com/lists/oss-security/2023/07/31/1",
12819            "https://access.redhat.com/security/cve/CVE-2023-3446",
12820            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-3446",
12821            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1fa20cf2f506113c761777127a38bce5068740eb",
12822            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8780a896543a654e757db1b9396383f9d8095528",
12823            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9a0a4d3c1e7138915563c0df4fe6a3f9377b839c",
12824            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc9867c1e03c22ebf56943be205202e576aabf23",
12825            "https://nvd.nist.gov/vuln/detail/CVE-2023-3446",
12826            "https://security.netapp.com/advisory/ntap-20230803-0011/",
12827            "https://www.cve.org/CVERecord?id=CVE-2023-3446",
12828            "https://www.openssl.org/news/secadv/20230719.txt"
12829          ],
12830          "PublishedDate": "2023-07-19T12:15:00Z",
12831          "LastModifiedDate": "2023-08-03T15:15:00Z"
12832        },
12833        {
12834          "VulnerabilityID": "CVE-2023-3817",
12835          "PkgID": "openssl@1.1.1n-0+deb11u3",
12836          "PkgName": "openssl",
12837          "InstalledVersion": "1.1.1n-0+deb11u3",
12838          "Status": "fix_deferred",
12839          "Layer": {
12840            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12841            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12842          },
12843          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-3817",
12844          "DataSource": {
12845            "ID": "debian",
12846            "Name": "Debian Security Tracker",
12847            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12848          },
12849          "Title": "Excessive time spent checking DH q parameter value",
12850          "Description": "Issue summary: Checking excessively long DH keys or parameters may be very slow.\n\nImpact summary: Applications that use the functions DH_check(), DH_check_ex()\nor EVP_PKEY_param_check() to check a DH key or DH parameters may experience long\ndelays. Where the key or parameters that are being checked have been obtained\nfrom an untrusted source this may lead to a Denial of Service.\n\nThe function DH_check() performs various checks on DH parameters. After fixing\nCVE-2023-3446 it was discovered that a large q parameter value can also trigger\nan overly long computation during some of these checks. A correct q value,\nif present, cannot be larger than the modulus p parameter, thus it is\nunnecessary to perform these checks if q is larger than p.\n\nAn application that calls DH_check() and supplies a key or parameters obtained\nfrom an untrusted source could be vulnerable to a Denial of Service attack.\n\nThe function DH_check() is itself called by a number of other OpenSSL functions.\nAn application calling any of those other functions may similarly be affected.\nThe other functions affected by this are DH_check_ex() and\nEVP_PKEY_param_check().\n\nAlso vulnerable are the OpenSSL dhparam and pkeyparam command line applications\nwhen using the \"-check\" option.\n\nThe OpenSSL SSL/TLS implementation is not affected by this issue.\n\nThe OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.",
12851          "Severity": "MEDIUM",
12852          "CVSS": {
12853            "redhat": {
12854              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
12855              "V3Score": 5.3
12856            }
12857          },
12858          "References": [
12859            "http://seclists.org/fulldisclosure/2023/Jul/43",
12860            "http://www.openwall.com/lists/oss-security/2023/07/31/1",
12861            "https://access.redhat.com/security/cve/CVE-2023-3817",
12862            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-3817",
12863            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a1eb62c29db6cb5eec707f9338aee00f44e26f5",
12864            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=869ad69aadd985c7b8ca6f4e5dd0eb274c9f3644",
12865            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9002fd07327a91f35ba6c1307e71fa6fd4409b7f",
12866            "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=91ddeba0f2269b017dc06c46c993a788974b1aa5",
12867            "https://nvd.nist.gov/vuln/detail/CVE-2023-3817",
12868            "https://www.cve.org/CVERecord?id=CVE-2023-3817",
12869            "https://www.openssl.org/news/secadv/20230731.txt"
12870          ],
12871          "PublishedDate": "2023-07-31T16:15:00Z",
12872          "LastModifiedDate": "2023-08-01T11:15:00Z"
12873        },
12874        {
12875          "VulnerabilityID": "CVE-2007-6755",
12876          "PkgID": "openssl@1.1.1n-0+deb11u3",
12877          "PkgName": "openssl",
12878          "InstalledVersion": "1.1.1n-0+deb11u3",
12879          "Status": "affected",
12880          "Layer": {
12881            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12882            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12883          },
12884          "SeveritySource": "debian",
12885          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755",
12886          "DataSource": {
12887            "ID": "debian",
12888            "Name": "Debian Security Tracker",
12889            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12890          },
12891          "Title": "Dual_EC_DRBG: weak pseudo random number generator",
12892          "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.",
12893          "Severity": "LOW",
12894          "CweIDs": [
12895            "CWE-327"
12896          ],
12897          "CVSS": {
12898            "nvd": {
12899              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N",
12900              "V2Score": 5.8
12901            },
12902            "redhat": {
12903              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N",
12904              "V2Score": 5.8
12905            }
12906          },
12907          "References": [
12908            "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/",
12909            "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html",
12910            "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html",
12911            "http://rump2007.cr.yp.to/15-shumow.pdf",
12912            "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/",
12913            "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect",
12914            "http://www.securityfocus.com/bid/63657",
12915            "https://access.redhat.com/security/cve/CVE-2007-6755",
12916            "https://nvd.nist.gov/vuln/detail/CVE-2007-6755",
12917            "https://www.cve.org/CVERecord?id=CVE-2007-6755",
12918            "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html"
12919          ],
12920          "PublishedDate": "2013-10-11T22:55:00Z",
12921          "LastModifiedDate": "2022-11-01T14:44:00Z"
12922        },
12923        {
12924          "VulnerabilityID": "CVE-2010-0928",
12925          "PkgID": "openssl@1.1.1n-0+deb11u3",
12926          "PkgName": "openssl",
12927          "InstalledVersion": "1.1.1n-0+deb11u3",
12928          "Status": "affected",
12929          "Layer": {
12930            "Digest": "sha256:265da2307f4a31427d68b316cedf0cbe649a74dbc4f75664bdffbc9ad49df871",
12931            "DiffID": "sha256:b9361c275c5d9b3d5a8c6cff59733193fec1be8cb57374d880e8dd8fd503ed8b"
12932          },
12933          "SeveritySource": "debian",
12934          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928",
12935          "DataSource": {
12936            "ID": "debian",
12937            "Name": "Debian Security Tracker",
12938            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12939          },
12940          "Title": "openssl: RSA authentication weakness",
12941          "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.\"",
12942          "Severity": "LOW",
12943          "CweIDs": [
12944            "CWE-310"
12945          ],
12946          "CVSS": {
12947            "nvd": {
12948              "V2Vector": "AV:L/AC:H/Au:N/C:C/I:N/A:N",
12949              "V2Score": 4
12950            }
12951          },
12952          "References": [
12953            "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/",
12954            "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf",
12955            "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html",
12956            "http://www.osvdb.org/62808",
12957            "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/",
12958            "https://access.redhat.com/security/cve/CVE-2010-0928",
12959            "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750",
12960            "https://nvd.nist.gov/vuln/detail/CVE-2010-0928",
12961            "https://www.cve.org/CVERecord?id=CVE-2010-0928"
12962          ],
12963          "PublishedDate": "2010-03-05T19:30:00Z",
12964          "LastModifiedDate": "2017-08-17T01:32:00Z"
12965        },
12966        {
12967          "VulnerabilityID": "CVE-2007-5686",
12968          "PkgID": "passwd@1:4.8.1-1",
12969          "PkgName": "passwd",
12970          "InstalledVersion": "1:4.8.1-1",
12971          "Status": "affected",
12972          "Layer": {
12973            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
12974            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
12975          },
12976          "SeveritySource": "debian",
12977          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686",
12978          "DataSource": {
12979            "ID": "debian",
12980            "Name": "Debian Security Tracker",
12981            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
12982          },
12983          "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...",
12984          "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.",
12985          "Severity": "LOW",
12986          "CweIDs": [
12987            "CWE-264"
12988          ],
12989          "CVSS": {
12990            "nvd": {
12991              "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N",
12992              "V2Score": 4.9
12993            }
12994          },
12995          "References": [
12996            "http://secunia.com/advisories/27215",
12997            "http://www.securityfocus.com/archive/1/482129/100/100/threaded",
12998            "http://www.securityfocus.com/archive/1/482857/100/0/threaded",
12999            "http://www.securityfocus.com/bid/26048",
13000            "http://www.vupen.com/english/advisories/2007/3474",
13001            "https://issues.rpath.com/browse/RPL-1825"
13002          ],
13003          "PublishedDate": "2007-10-28T17:08:00Z",
13004          "LastModifiedDate": "2018-10-15T21:45:00Z"
13005        },
13006        {
13007          "VulnerabilityID": "CVE-2013-4235",
13008          "PkgID": "passwd@1:4.8.1-1",
13009          "PkgName": "passwd",
13010          "InstalledVersion": "1:4.8.1-1",
13011          "Status": "affected",
13012          "Layer": {
13013            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
13014            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
13015          },
13016          "SeveritySource": "debian",
13017          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235",
13018          "DataSource": {
13019            "ID": "debian",
13020            "Name": "Debian Security Tracker",
13021            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
13022          },
13023          "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees",
13024          "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees",
13025          "Severity": "LOW",
13026          "CweIDs": [
13027            "CWE-367"
13028          ],
13029          "CVSS": {
13030            "nvd": {
13031              "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P",
13032              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N",
13033              "V2Score": 3.3,
13034              "V3Score": 4.7
13035            },
13036            "redhat": {
13037              "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P",
13038              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N",
13039              "V2Score": 3.7,
13040              "V3Score": 4.4
13041            }
13042          },
13043          "References": [
13044            "https://access.redhat.com/security/cve/CVE-2013-4235",
13045            "https://access.redhat.com/security/cve/cve-2013-4235",
13046            "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169",
13047            "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235",
13048            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235",
13049            "https://github.com/shadow-maint/shadow/issues/317",
13050            "https://github.com/shadow-maint/shadow/pull/545",
13051            "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E",
13052            "https://nvd.nist.gov/vuln/detail/CVE-2013-4235",
13053            "https://security-tracker.debian.org/tracker/CVE-2013-4235",
13054            "https://security.gentoo.org/glsa/202210-26",
13055            "https://ubuntu.com/security/notices/USN-5745-1",
13056            "https://ubuntu.com/security/notices/USN-5745-2",
13057            "https://www.cve.org/CVERecord?id=CVE-2013-4235"
13058          ],
13059          "PublishedDate": "2019-12-03T15:15:00Z",
13060          "LastModifiedDate": "2023-02-13T00:28:00Z"
13061        },
13062        {
13063          "VulnerabilityID": "CVE-2019-19882",
13064          "PkgID": "passwd@1:4.8.1-1",
13065          "PkgName": "passwd",
13066          "InstalledVersion": "1:4.8.1-1",
13067          "Status": "affected",
13068          "Layer": {
13069            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
13070            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
13071          },
13072          "SeveritySource": "debian",
13073          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882",
13074          "DataSource": {
13075            "ID": "debian",
13076            "Name": "Debian Security Tracker",
13077            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
13078          },
13079          "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured",
13080          "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).",
13081          "Severity": "LOW",
13082          "CweIDs": [
13083            "CWE-732"
13084          ],
13085          "CVSS": {
13086            "nvd": {
13087              "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C",
13088              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
13089              "V2Score": 6.9,
13090              "V3Score": 7.8
13091            },
13092            "redhat": {
13093              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
13094              "V3Score": 7.8
13095            }
13096          },
13097          "References": [
13098            "https://access.redhat.com/security/cve/CVE-2019-19882",
13099            "https://bugs.archlinux.org/task/64836",
13100            "https://bugs.gentoo.org/702252",
13101            "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75",
13102            "https://github.com/shadow-maint/shadow/pull/199",
13103            "https://github.com/void-linux/void-packages/pull/17580",
13104            "https://nvd.nist.gov/vuln/detail/CVE-2019-19882",
13105            "https://security.gentoo.org/glsa/202008-09",
13106            "https://www.cve.org/CVERecord?id=CVE-2019-19882"
13107          ],
13108          "PublishedDate": "2019-12-18T16:15:00Z",
13109          "LastModifiedDate": "2020-08-25T15:15:00Z"
13110        },
13111        {
13112          "VulnerabilityID": "CVE-2023-29383",
13113          "PkgID": "passwd@1:4.8.1-1",
13114          "PkgName": "passwd",
13115          "InstalledVersion": "1:4.8.1-1",
13116          "Status": "affected",
13117          "Layer": {
13118            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
13119            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
13120          },
13121          "SeveritySource": "nvd",
13122          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383",
13123          "DataSource": {
13124            "ID": "debian",
13125            "Name": "Debian Security Tracker",
13126            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
13127          },
13128          "Title": "Improper input validation in shadow-utils package utility chfn",
13129          "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.",
13130          "Severity": "LOW",
13131          "CweIDs": [
13132            "CWE-74"
13133          ],
13134          "CVSS": {
13135            "nvd": {
13136              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N",
13137              "V3Score": 3.3
13138            },
13139            "redhat": {
13140              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
13141              "V3Score": 5.5
13142            }
13143          },
13144          "References": [
13145            "https://access.redhat.com/security/cve/CVE-2023-29383",
13146            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383",
13147            "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d",
13148            "https://github.com/shadow-maint/shadow/pull/687",
13149            "https://nvd.nist.gov/vuln/detail/CVE-2023-29383",
13150            "https://www.cve.org/CVERecord?id=CVE-2023-29383",
13151            "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/",
13152            "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797"
13153          ],
13154          "PublishedDate": "2023-04-14T22:15:00Z",
13155          "LastModifiedDate": "2023-04-24T18:05:00Z"
13156        },
13157        {
13158          "VulnerabilityID": "CVE-2020-16156",
13159          "PkgID": "perl-base@5.32.1-4+deb11u2",
13160          "PkgName": "perl-base",
13161          "InstalledVersion": "5.32.1-4+deb11u2",
13162          "Status": "affected",
13163          "Layer": {
13164            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
13165            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
13166          },
13167          "SeveritySource": "nvd",
13168          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-16156",
13169          "DataSource": {
13170            "ID": "debian",
13171            "Name": "Debian Security Tracker",
13172            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
13173          },
13174          "Title": "Bypass of verification of signatures in CHECKSUMS files",
13175          "Description": "CPAN 2.28 allows Signature Verification Bypass.",
13176          "Severity": "HIGH",
13177          "CweIDs": [
13178            "CWE-347"
13179          ],
13180          "CVSS": {
13181            "nvd": {
13182              "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
13183              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
13184              "V2Score": 6.8,
13185              "V3Score": 7.8
13186            },
13187            "redhat": {
13188              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
13189              "V3Score": 7.8
13190            }
13191          },
13192          "References": [
13193            "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html",
13194            "https://access.redhat.com/security/cve/CVE-2020-16156",
13195            "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/",
13196            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156",
13197            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/",
13198            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/",
13199            "https://metacpan.org/pod/distribution/CPAN/scripts/cpan",
13200            "https://nvd.nist.gov/vuln/detail/CVE-2020-16156",
13201            "https://ubuntu.com/security/notices/USN-5689-1",
13202            "https://ubuntu.com/security/notices/USN-5689-2",
13203            "https://www.cve.org/CVERecord?id=CVE-2020-16156"
13204          ],
13205          "PublishedDate": "2021-12-13T18:15:00Z",
13206          "LastModifiedDate": "2022-04-01T13:26:00Z"
13207        },
13208        {
13209          "VulnerabilityID": "CVE-2023-31484",
13210          "PkgID": "perl-base@5.32.1-4+deb11u2",
13211          "PkgName": "perl-base",
13212          "InstalledVersion": "5.32.1-4+deb11u2",
13213          "Status": "affected",
13214          "Layer": {
13215            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
13216            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
13217          },
13218          "SeveritySource": "nvd",
13219          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31484",
13220          "DataSource": {
13221            "ID": "debian",
13222            "Name": "Debian Security Tracker",
13223            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
13224          },
13225          "Title": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS",
13226          "Description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.",
13227          "Severity": "HIGH",
13228          "CweIDs": [
13229            "CWE-295"
13230          ],
13231          "CVSS": {
13232            "nvd": {
13233              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
13234              "V3Score": 8.1
13235            },
13236            "redhat": {
13237              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
13238              "V3Score": 7.4
13239            }
13240          },
13241          "References": [
13242            "http://www.openwall.com/lists/oss-security/2023/04/29/1",
13243            "http://www.openwall.com/lists/oss-security/2023/05/03/3",
13244            "http://www.openwall.com/lists/oss-security/2023/05/03/5",
13245            "http://www.openwall.com/lists/oss-security/2023/05/07/2",
13246            "https://access.redhat.com/security/cve/CVE-2023-31484",
13247            "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/",
13248            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484",
13249            "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)",
13250            "https://github.com/andk/cpanpm/pull/175",
13251            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BM6UW55CNFUTNGD5ZRKGUKKKFDJGMFHL/",
13252            "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LEGCEOKFJVBJ2QQ6S2H4NAEWTUERC7SB/",
13253            "https://metacpan.org/dist/CPAN/changes",
13254            "https://nvd.nist.gov/vuln/detail/CVE-2023-31484",
13255            "https://ubuntu.com/security/notices/USN-6112-1",
13256            "https://ubuntu.com/security/notices/USN-6112-2",
13257            "https://www.cve.org/CVERecord?id=CVE-2023-31484",
13258            "https://www.openwall.com/lists/oss-security/2023/04/18/14"
13259          ],
13260          "PublishedDate": "2023-04-29T00:15:00Z",
13261          "LastModifiedDate": "2023-08-02T15:28:00Z"
13262        },
13263        {
13264          "VulnerabilityID": "CVE-2011-4116",
13265          "PkgID": "perl-base@5.32.1-4+deb11u2",
13266          "PkgName": "perl-base",
13267          "InstalledVersion": "5.32.1-4+deb11u2",
13268          "Status": "affected",
13269          "Layer": {
13270            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
13271            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
13272          },
13273          "SeveritySource": "debian",
13274          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-4116",
13275          "DataSource": {
13276            "ID": "debian",
13277            "Name": "Debian Security Tracker",
13278            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
13279          },
13280          "Title": "perl: File::Temp insecure temporary file handling",
13281          "Description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.",
13282          "Severity": "LOW",
13283          "CweIDs": [
13284            "CWE-59"
13285          ],
13286          "CVSS": {
13287            "nvd": {
13288              "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N",
13289              "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
13290              "V2Score": 5,
13291              "V3Score": 7.5
13292            },
13293            "redhat": {
13294              "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N",
13295              "V2Score": 1.9
13296            }
13297          },
13298          "References": [
13299            "http://www.openwall.com/lists/oss-security/2011/11/04/2",
13300            "http://www.openwall.com/lists/oss-security/2011/11/04/4",
13301            "https://access.redhat.com/security/cve/CVE-2011-4116",
13302            "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14",
13303            "https://nvd.nist.gov/vuln/detail/CVE-2011-4116",
13304            "https://rt.cpan.org/Public/Bug/Display.html?id=69106",
13305            "https://seclists.org/oss-sec/2011/q4/238",
13306            "https://www.cve.org/CVERecord?id=CVE-2011-4116"
13307          ],
13308          "PublishedDate": "2020-01-31T18:15:00Z",
13309          "LastModifiedDate": "2020-02-05T22:10:00Z"
13310        },
13311        {
13312          "VulnerabilityID": "CVE-2023-31486",
13313          "PkgID": "perl-base@5.32.1-4+deb11u2",
13314          "PkgName": "perl-base",
13315          "InstalledVersion": "5.32.1-4+deb11u2",
13316          "Status": "affected",
13317          "Layer": {
13318            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
13319            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
13320          },
13321          "SeveritySource": "debian",
13322          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31486",
13323          "DataSource": {
13324            "ID": "debian",
13325            "Name": "Debian Security Tracker",
13326            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
13327          },
13328          "Title": "insecure TLS cert default",
13329          "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.",
13330          "Severity": "LOW",
13331          "CweIDs": [
13332            "CWE-295"
13333          ],
13334          "CVSS": {
13335            "nvd": {
13336              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
13337              "V3Score": 8.1
13338            },
13339            "redhat": {
13340              "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
13341              "V3Score": 7.4
13342            }
13343          },
13344          "References": [
13345            "http://www.openwall.com/lists/oss-security/2023/04/29/1",
13346            "http://www.openwall.com/lists/oss-security/2023/05/03/3",
13347            "http://www.openwall.com/lists/oss-security/2023/05/03/5",
13348            "http://www.openwall.com/lists/oss-security/2023/05/07/2",
13349            "https://access.redhat.com/security/cve/CVE-2023-31486",
13350            "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/",
13351            "https://github.com/chansen/p5-http-tiny/pull/153",
13352            "https://hackeriet.github.io/cpan-http-tiny-overview/",
13353            "https://nvd.nist.gov/vuln/detail/CVE-2023-31486",
13354            "https://www.cve.org/CVERecord?id=CVE-2023-31486",
13355            "https://www.openwall.com/lists/oss-security/2023/04/18/14",
13356            "https://www.openwall.com/lists/oss-security/2023/05/03/4",
13357            "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/"
13358          ],
13359          "PublishedDate": "2023-04-29T00:15:00Z",
13360          "LastModifiedDate": "2023-06-21T18:19:00Z"
13361        },
13362        {
13363          "VulnerabilityID": "CVE-2005-2541",
13364          "PkgID": "tar@1.34+dfsg-1",
13365          "PkgName": "tar",
13366          "InstalledVersion": "1.34+dfsg-1",
13367          "Status": "affected",
13368          "Layer": {
13369            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
13370            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
13371          },
13372          "SeveritySource": "debian",
13373          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2005-2541",
13374          "DataSource": {
13375            "ID": "debian",
13376            "Name": "Debian Security Tracker",
13377            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
13378          },
13379          "Title": "tar: does not properly warn the user when extracting setuid or setgid files",
13380          "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.",
13381          "Severity": "LOW",
13382          "CVSS": {
13383            "nvd": {
13384              "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C",
13385              "V2Score": 10
13386            },
13387            "redhat": {
13388              "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H",
13389              "V3Score": 7
13390            }
13391          },
13392          "References": [
13393            "http://marc.info/?l=bugtraq\u0026m=112327628230258\u0026w=2",
13394            "https://access.redhat.com/security/cve/CVE-2005-2541",
13395            "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E",
13396            "https://nvd.nist.gov/vuln/detail/CVE-2005-2541",
13397            "https://www.cve.org/CVERecord?id=CVE-2005-2541"
13398          ],
13399          "PublishedDate": "2005-08-10T04:00:00Z",
13400          "LastModifiedDate": "2021-06-18T15:15:00Z"
13401        },
13402        {
13403          "VulnerabilityID": "CVE-2022-48303",
13404          "PkgID": "tar@1.34+dfsg-1",
13405          "PkgName": "tar",
13406          "InstalledVersion": "1.34+dfsg-1",
13407          "Status": "affected",
13408          "Layer": {
13409            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
13410            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
13411          },
13412          "SeveritySource": "debian",
13413          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-48303",
13414          "DataSource": {
13415            "ID": "debian",
13416            "Name": "Debian Security Tracker",
13417            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
13418          },
13419          "Title": "heap buffer overflow at from_header() in list.c via specially crafted checksum",
13420          "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.",
13421          "Severity": "LOW",
13422          "CweIDs": [
13423            "CWE-125"
13424          ],
13425          "CVSS": {
13426            "nvd": {
13427              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
13428              "V3Score": 5.5
13429            },
13430            "redhat": {
13431              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
13432              "V3Score": 5.5
13433            }
13434          },
13435          "References": [
13436            "https://access.redhat.com/errata/RHSA-2023:0959",
13437            "https://access.redhat.com/security/cve/CVE-2022-48303",
13438            "https://bugzilla.redhat.com/2149722",
13439            "https://bugzilla.redhat.com/show_bug.cgi?id=2149722",
13440            "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303",
13441            "https://errata.almalinux.org/9/ALSA-2023-0959.html",
13442            "https://errata.rockylinux.org/RLSA-2023:0959",
13443            "https://linux.oracle.com/cve/CVE-2022-48303.html",
13444            "https://linux.oracle.com/errata/ELSA-2023-0959.html",
13445            "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/",
13446            "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/",
13447            "https://nvd.nist.gov/vuln/detail/CVE-2022-48303",
13448            "https://savannah.gnu.org/bugs/?62387",
13449            "https://savannah.gnu.org/patch/?10307",
13450            "https://ubuntu.com/security/notices/USN-5900-1",
13451            "https://ubuntu.com/security/notices/USN-5900-2",
13452            "https://www.cve.org/CVERecord?id=CVE-2022-48303"
13453          ],
13454          "PublishedDate": "2023-01-30T04:15:00Z",
13455          "LastModifiedDate": "2023-05-30T17:16:00Z"
13456        },
13457        {
13458          "VulnerabilityID": "CVE-2022-0563",
13459          "PkgID": "util-linux@2.36.1-8+deb11u1",
13460          "PkgName": "util-linux",
13461          "InstalledVersion": "2.36.1-8+deb11u1",
13462          "Status": "affected",
13463          "Layer": {
13464            "Digest": "sha256:bd159e379b3b1bc0134341e4ffdeab5f966ec422ae04818bb69ecef08a823b05",
13465            "DiffID": "sha256:fe7b1e9bf7922fbc22281bcc6b4f5ac8f1a7b4278929880940978c42fc9d0229"
13466          },
13467          "SeveritySource": "debian",
13468          "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563",
13469          "DataSource": {
13470            "ID": "debian",
13471            "Name": "Debian Security Tracker",
13472            "URL": "https://salsa.debian.org/security-tracker-team/security-tracker"
13473          },
13474          "Title": "partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline",
13475          "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.",
13476          "Severity": "LOW",
13477          "CweIDs": [
13478            "CWE-209"
13479          ],
13480          "CVSS": {
13481            "nvd": {
13482              "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N",
13483              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
13484              "V2Score": 1.9,
13485              "V3Score": 5.5
13486            },
13487            "redhat": {
13488              "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
13489              "V3Score": 5.5
13490            }
13491          },
13492          "References": [
13493            "https://access.redhat.com/security/cve/CVE-2022-0563",
13494            "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/",
13495            "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u",
13496            "https://nvd.nist.gov/vuln/detail/CVE-2022-0563",
13497            "https://security.netapp.com/advisory/ntap-20220331-0002/",
13498            "https://www.cve.org/CVERecord?id=CVE-2022-0563"
13499          ],
13500          "PublishedDate": "2022-02-21T19:15:00Z",
13501          "LastModifiedDate": "2022-06-03T14:15:00Z"
13502        }
13503      ]
13504    }
13505  ]
13506}