CVE-2024-36010 (GCVE-0-2024-36010)

Vulnerability from cvelistv5 – Published: 2024-05-22 11:46 – Updated: 2026-05-11 20:15
VLAI?
Title
igb: Fix string truncation warnings in igb_set_fw_version
Summary
In the Linux kernel, the following vulnerability has been resolved: igb: Fix string truncation warnings in igb_set_fw_version Commit 1978d3ead82c ("intel: fix string truncation warnings") fixes '-Wformat-truncation=' warnings in igb_main.c by using kasprintf. drivers/net/ethernet/intel/igb/igb_main.c:3092:53: warning:‘%d’ directive output may be truncated writing between 1 and 5 bytes into a region of size between 1 and 13 [-Wformat-truncation=] 3092 | "%d.%d, 0x%08x, %d.%d.%d", | ^~ drivers/net/ethernet/intel/igb/igb_main.c:3092:34: note:directive argument in the range [0, 65535] 3092 | "%d.%d, 0x%08x, %d.%d.%d", | ^~~~~~~~~~~~~~~~~~~~~~~~~ drivers/net/ethernet/intel/igb/igb_main.c:3092:34: note:directive argument in the range [0, 65535] drivers/net/ethernet/intel/igb/igb_main.c:3090:25: note:‘snprintf’ output between 23 and 43 bytes into a destination of size 32 kasprintf() returns a pointer to dynamically allocated memory which can be NULL upon failure. Fix this warning by using a larger space for adapter->fw_version, and then fall back and continue to use snprintf.
Severity ?
No CVSS data available.
Assigner
Impacted products
Vendor Product Version
Linux Linux Affected: 1978d3ead82c8e39d739dd4e19b1ea7bf923dfb4 , < c56d055893cbe97848611855d1c97d0ab171eccc (git)
Create a notification for this product.
Linux Linux Affected: 6.7
Unaffected: 0 , < 6.7 (semver)
Unaffected: 6.8 , ≤ * (original_commit_for_fix)
Create a notification for this product.
Show details on NVD website

{
  "containers": {
    "adp": [
      {
        "metrics": [
          {
            "other": {
              "content": {
                "id": "CVE-2024-36010",
                "options": [
                  {
                    "Exploitation": "none"
                  },
                  {
                    "Automatable": "no"
                  },
                  {
                    "Technical Impact": "partial"
                  }
                ],
                "role": "CISA Coordinator",
                "timestamp": "2024-05-22T15:07:27.450256Z",
                "version": "2.0.3"
              },
              "type": "ssvc"
            }
          }
        ],
        "providerMetadata": {
          "dateUpdated": "2024-06-04T17:47:56.678Z",
          "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
          "shortName": "CISA-ADP"
        },
        "title": "CISA ADP Vulnrichment"
      },
      {
        "providerMetadata": {
          "dateUpdated": "2024-08-02T03:30:12.517Z",
          "orgId": "af854a3a-2127-422b-91ae-364da2661108",
          "shortName": "CVE"
        },
        "references": [
          {
            "tags": [
              "x_transferred"
            ],
            "url": "https://git.kernel.org/stable/c/c56d055893cbe97848611855d1c97d0ab171eccc"
          }
        ],
        "title": "CVE Program Container"
      }
    ],
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "drivers/net/ethernet/intel/igb/igb.h",
            "drivers/net/ethernet/intel/igb/igb_main.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "c56d055893cbe97848611855d1c97d0ab171eccc",
              "status": "affected",
              "version": "1978d3ead82c8e39d739dd4e19b1ea7bf923dfb4",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "drivers/net/ethernet/intel/igb/igb.h",
            "drivers/net/ethernet/intel/igb/igb_main.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "6.7"
            },
            {
              "lessThan": "6.7",
              "status": "unaffected",
              "version": "0",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "*",
              "status": "unaffected",
              "version": "6.8",
              "versionType": "original_commit_for_fix"
            }
          ]
        }
      ],
      "cpeApplicability": [
        {
          "nodes": [
            {
              "cpeMatch": [
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.8",
                  "versionStartIncluding": "6.7",
                  "vulnerable": true
                }
              ],
              "negate": false,
              "operator": "OR"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nigb: Fix string truncation warnings in igb_set_fw_version\n\nCommit 1978d3ead82c (\"intel: fix string truncation warnings\")\nfixes \u0027-Wformat-truncation=\u0027 warnings in igb_main.c by using kasprintf.\n\ndrivers/net/ethernet/intel/igb/igb_main.c:3092:53: warning\uff1a\u2018%d\u2019 directive output may be truncated writing between 1 and 5 bytes into a region of size between 1 and 13 [-Wformat-truncation=]\n 3092 |                                  \"%d.%d, 0x%08x, %d.%d.%d\",\n      |                                                     ^~\ndrivers/net/ethernet/intel/igb/igb_main.c:3092:34: note\uff1adirective argument in the range [0, 65535]\n 3092 |                                  \"%d.%d, 0x%08x, %d.%d.%d\",\n      |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~\ndrivers/net/ethernet/intel/igb/igb_main.c:3092:34: note\uff1adirective argument in the range [0, 65535]\ndrivers/net/ethernet/intel/igb/igb_main.c:3090:25: note\uff1a\u2018snprintf\u2019 output between 23 and 43 bytes into a destination of size 32\n\nkasprintf() returns a pointer to dynamically allocated memory\nwhich can be NULL upon failure.\n\nFix this warning by using a larger space for adapter-\u003efw_version,\nand then fall back and continue to use snprintf."
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2026-05-11T20:15:34.749Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/c56d055893cbe97848611855d1c97d0ab171eccc"
        }
      ],
      "title": "igb: Fix string truncation warnings in igb_set_fw_version",
      "x_generator": {
        "engine": "bippy-1.2.0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2024-36010",
    "datePublished": "2024-05-22T11:46:32.984Z",
    "dateReserved": "2024-05-17T13:50:33.152Z",
    "dateUpdated": "2026-05-11T20:15:34.749Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.2",
  "vulnerability-lookup:meta": {
    "epss": {
      "cve": "CVE-2024-36010",
      "date": "2026-05-20",
      "epss": "0.00018",
      "percentile": "0.04902"
    },
    "fkie_nvd": {
      "descriptions": "[{\"lang\": \"en\", \"value\": \"In the Linux kernel, the following vulnerability has been resolved:\\n\\nigb: Fix string truncation warnings in igb_set_fw_version\\n\\nCommit 1978d3ead82c (\\\"intel: fix string truncation warnings\\\")\\nfixes \u0027-Wformat-truncation=\u0027 warnings in igb_main.c by using kasprintf.\\n\\ndrivers/net/ethernet/intel/igb/igb_main.c:3092:53: warning\\uff1a\\u2018%d\\u2019 directive output may be truncated writing between 1 and 5 bytes into a region of size between 1 and 13 [-Wformat-truncation=]\\n 3092 |                                  \\\"%d.%d, 0x%08x, %d.%d.%d\\\",\\n      |                                                     ^~\\ndrivers/net/ethernet/intel/igb/igb_main.c:3092:34: note\\uff1adirective argument in the range [0, 65535]\\n 3092 |                                  \\\"%d.%d, 0x%08x, %d.%d.%d\\\",\\n      |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~\\ndrivers/net/ethernet/intel/igb/igb_main.c:3092:34: note\\uff1adirective argument in the range [0, 65535]\\ndrivers/net/ethernet/intel/igb/igb_main.c:3090:25: note\\uff1a\\u2018snprintf\\u2019 output between 23 and 43 bytes into a destination of size 32\\n\\nkasprintf() returns a pointer to dynamically allocated memory\\nwhich can be NULL upon failure.\\n\\nFix this warning by using a larger space for adapter-\u003efw_version,\\nand then fall back and continue to use snprintf.\"}, {\"lang\": \"es\", \"value\": \"En el kernel de Linux, se resolvi\\u00f3 la siguiente vulnerabilidad: igb: corrige advertencias de truncamiento de cadenas en igb_set_fw_version Commit 1978d3ead82c (\\\"intel: corrige advertencias de truncamiento de cadenas\\\") corrige las advertencias \u0027-Wformat-truncation=\u0027 en igb_main.c usando kasprintf. drivers/net/ethernet/intel/igb/igb_main.c:3092:53: \\u00bfadvertencia? La salida de la directiva \u0027%d\u0027 puede truncarse escribiendo entre 1 y 5 bytes en una regi\\u00f3n de tama\\u00f1o entre 1 y 13 [-Wformat-truncation= ] 3092 | \\\"%d.%d, 0x%08x, %d.%d.%d\\\", | ^~ drivers/net/ethernet/intel/igb/igb_main.c:3092:34: nota?argumento directivo en el rango [0, 65535] 3092 | \\\"%d.%d, 0x%08x, %d.%d.%d\\\", | ^~~~~~~~~~~~~~~~~~~~~~~~~ drivers/net/ethernet/intel/igb/igb_main.c:3092:34: argumento note?directive en el rango [0, 65535] drivers/net/ethernet/intel/igb/igb_main.c:3090:25: \\u00bfnota? Salida \u0027snprintf\u0027 entre 23 y 43 bytes en un destino de tama\\u00f1o 32 kasprintf() devuelve un puntero a la memoria asignada din\\u00e1micamente que puede ser NULL en caso de error. Corrija esta advertencia usando un espacio m\\u00e1s grande para adaptador-\u0026gt;fw_version y luego retroceda y contin\\u00fae usando snprintf.\"}]",
      "id": "CVE-2024-36010",
      "lastModified": "2024-11-21T09:21:25.650",
      "published": "2024-05-22T12:15:10.660",
      "references": "[{\"url\": \"https://git.kernel.org/stable/c/c56d055893cbe97848611855d1c97d0ab171eccc\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}, {\"url\": \"https://git.kernel.org/stable/c/c56d055893cbe97848611855d1c97d0ab171eccc\", \"source\": \"af854a3a-2127-422b-91ae-364da2661108\"}]",
      "sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
      "vulnStatus": "Awaiting Analysis"
    },
    "nvd": "{\"cve\":{\"id\":\"CVE-2024-36010\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-05-22T12:15:10.660\",\"lastModified\":\"2025-09-29T17:59:01.407\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nigb: Fix string truncation warnings in igb_set_fw_version\\n\\nCommit 1978d3ead82c (\\\"intel: fix string truncation warnings\\\")\\nfixes \u0027-Wformat-truncation=\u0027 warnings in igb_main.c by using kasprintf.\\n\\ndrivers/net/ethernet/intel/igb/igb_main.c:3092:53: warning\uff1a\u2018%d\u2019 directive output may be truncated writing between 1 and 5 bytes into a region of size between 1 and 13 [-Wformat-truncation=]\\n 3092 |                                  \\\"%d.%d, 0x%08x, %d.%d.%d\\\",\\n      |                                                     ^~\\ndrivers/net/ethernet/intel/igb/igb_main.c:3092:34: note\uff1adirective argument in the range [0, 65535]\\n 3092 |                                  \\\"%d.%d, 0x%08x, %d.%d.%d\\\",\\n      |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~\\ndrivers/net/ethernet/intel/igb/igb_main.c:3092:34: note\uff1adirective argument in the range [0, 65535]\\ndrivers/net/ethernet/intel/igb/igb_main.c:3090:25: note\uff1a\u2018snprintf\u2019 output between 23 and 43 bytes into a destination of size 32\\n\\nkasprintf() returns a pointer to dynamically allocated memory\\nwhich can be NULL upon failure.\\n\\nFix this warning by using a larger space for adapter-\u003efw_version,\\nand then fall back and continue to use snprintf.\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se resolvi\u00f3 la siguiente vulnerabilidad: igb: corrige advertencias de truncamiento de cadenas en igb_set_fw_version Commit 1978d3ead82c (\\\"intel: corrige advertencias de truncamiento de cadenas\\\") corrige las advertencias \u0027-Wformat-truncation=\u0027 en igb_main.c usando kasprintf. drivers/net/ethernet/intel/igb/igb_main.c:3092:53: \u00bfadvertencia? La salida de la directiva \u0027%d\u0027 puede truncarse escribiendo entre 1 y 5 bytes en una regi\u00f3n de tama\u00f1o entre 1 y 13 [-Wformat-truncation= ] 3092 | \\\"%d.%d, 0x%08x, %d.%d.%d\\\", | ^~ drivers/net/ethernet/intel/igb/igb_main.c:3092:34: nota?argumento directivo en el rango [0, 65535] 3092 | \\\"%d.%d, 0x%08x, %d.%d.%d\\\", | ^~~~~~~~~~~~~~~~~~~~~~~~~ drivers/net/ethernet/intel/igb/igb_main.c:3092:34: argumento note?directive en el rango [0, 65535] drivers/net/ethernet/intel/igb/igb_main.c:3090:25: \u00bfnota? Salida \u0027snprintf\u0027 entre 23 y 43 bytes en un destino de tama\u00f1o 32 kasprintf() devuelve un puntero a la memoria asignada din\u00e1micamente que puede ser NULL en caso de error. Corrija esta advertencia usando un espacio m\u00e1s grande para adaptador-\u0026gt;fw_version y luego retroceda y contin\u00fae usando snprintf.\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":5.5,\"baseSeverity\":\"MEDIUM\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.8,\"impactScore\":3.6}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"NVD-CWE-noinfo\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.7\",\"versionEndExcluding\":\"6.8\",\"matchCriteriaId\":\"B6EE9877-1A98-4700-B284-E7401B4A11FE\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.8:rc1:*:*:*:*:*:*\",\"matchCriteriaId\":\"B9F4EA73-0894-400F-A490-3A397AB7A517\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.8:rc2:*:*:*:*:*:*\",\"matchCriteriaId\":\"056BD938-0A27-4569-B391-30578B309EE3\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.8:rc3:*:*:*:*:*:*\",\"matchCriteriaId\":\"F02056A5-B362-4370-9FF8-6F0BD384D520\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.8:rc4:*:*:*:*:*:*\",\"matchCriteriaId\":\"62075ACE-B2A0-4B16-829D-B3DA5AE5CC41\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/c56d055893cbe97848611855d1c97d0ab171eccc\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/c56d055893cbe97848611855d1c97d0ab171eccc\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\"]}]}}",
    "vulnrichment": {
      "containers": "{\"adp\": [{\"title\": \"CVE Program Container\", \"references\": [{\"url\": \"https://git.kernel.org/stable/c/c56d055893cbe97848611855d1c97d0ab171eccc\", \"tags\": [\"x_transferred\"]}], \"providerMetadata\": {\"orgId\": \"af854a3a-2127-422b-91ae-364da2661108\", \"shortName\": \"CVE\", \"dateUpdated\": \"2024-08-02T03:30:12.517Z\"}}, {\"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2024-36010\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2024-05-22T15:07:27.450256Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2024-05-23T19:01:25.532Z\"}, \"title\": \"CISA ADP Vulnrichment\"}], \"cna\": {\"title\": \"igb: Fix string truncation warnings in igb_set_fw_version\", \"affected\": [{\"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"vendor\": \"Linux\", \"product\": \"Linux\", \"versions\": [{\"status\": \"affected\", \"version\": \"1978d3ead82c8e39d739dd4e19b1ea7bf923dfb4\", \"lessThan\": \"c56d055893cbe97848611855d1c97d0ab171eccc\", \"versionType\": \"git\"}], \"programFiles\": [\"drivers/net/ethernet/intel/igb/igb.h\", \"drivers/net/ethernet/intel/igb/igb_main.c\"], \"defaultStatus\": \"unaffected\"}, {\"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"vendor\": \"Linux\", \"product\": \"Linux\", \"versions\": [{\"status\": \"affected\", \"version\": \"6.7\"}, {\"status\": \"unaffected\", \"version\": \"0\", \"lessThan\": \"6.7\", \"versionType\": \"semver\"}, {\"status\": \"unaffected\", \"version\": \"6.8\", \"versionType\": \"original_commit_for_fix\", \"lessThanOrEqual\": \"*\"}], \"programFiles\": [\"drivers/net/ethernet/intel/igb/igb.h\", \"drivers/net/ethernet/intel/igb/igb_main.c\"], \"defaultStatus\": \"affected\"}], \"references\": [{\"url\": \"https://git.kernel.org/stable/c/c56d055893cbe97848611855d1c97d0ab171eccc\"}], \"x_generator\": {\"engine\": \"bippy-1.2.0\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"In the Linux kernel, the following vulnerability has been resolved:\\n\\nigb: Fix string truncation warnings in igb_set_fw_version\\n\\nCommit 1978d3ead82c (\\\"intel: fix string truncation warnings\\\")\\nfixes \u0027-Wformat-truncation=\u0027 warnings in igb_main.c by using kasprintf.\\n\\ndrivers/net/ethernet/intel/igb/igb_main.c:3092:53: warning\\uff1a\\u2018%d\\u2019 directive output may be truncated writing between 1 and 5 bytes into a region of size between 1 and 13 [-Wformat-truncation=]\\n 3092 |                                  \\\"%d.%d, 0x%08x, %d.%d.%d\\\",\\n      |                                                     ^~\\ndrivers/net/ethernet/intel/igb/igb_main.c:3092:34: note\\uff1adirective argument in the range [0, 65535]\\n 3092 |                                  \\\"%d.%d, 0x%08x, %d.%d.%d\\\",\\n      |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~\\ndrivers/net/ethernet/intel/igb/igb_main.c:3092:34: note\\uff1adirective argument in the range [0, 65535]\\ndrivers/net/ethernet/intel/igb/igb_main.c:3090:25: note\\uff1a\\u2018snprintf\\u2019 output between 23 and 43 bytes into a destination of size 32\\n\\nkasprintf() returns a pointer to dynamically allocated memory\\nwhich can be NULL upon failure.\\n\\nFix this warning by using a larger space for adapter-\u003efw_version,\\nand then fall back and continue to use snprintf.\"}], \"cpeApplicability\": [{\"nodes\": [{\"negate\": false, \"cpeMatch\": [{\"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"vulnerable\": true, \"versionEndExcluding\": \"6.8\", \"versionStartIncluding\": \"6.7\"}], \"operator\": \"OR\"}]}], \"providerMetadata\": {\"orgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"shortName\": \"Linux\", \"dateUpdated\": \"2025-05-04T09:10:26.508Z\"}}}",
      "cveMetadata": "{\"cveId\": \"CVE-2024-36010\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2025-05-04T09:10:26.508Z\", \"dateReserved\": \"2024-05-17T13:50:33.152Z\", \"assignerOrgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"datePublished\": \"2024-05-22T11:46:32.984Z\", \"assignerShortName\": \"Linux\"}",
      "dataType": "CVE_RECORD",
      "dataVersion": "5.1"
    }
  }
}


Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…
Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.

Sightings

Author Source Type Date Other

Nomenclature

  • Seen: The vulnerability was mentioned, discussed, or observed by the user.
  • Confirmed: The vulnerability has been validated from an analyst's perspective.
  • Published Proof of Concept: A public proof of concept is available for this vulnerability.
  • Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
  • Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
  • Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
  • Not confirmed: The user expressed doubt about the validity of the vulnerability.
  • Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.


Loading…

Detection rules are retrieved from Rulezet.

Loading…

Loading…