cve-2022-48908
Vulnerability from cvelistv5
Published
2024-08-22 01:30
Modified
2024-12-19 08:10
Severity ?
EPSS score ?
Summary
In the Linux kernel, the following vulnerability has been resolved:
net: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe()
During driver initialization, the pointer of card info, i.e. the
variable 'ci' is required. However, the definition of
'com20020pci_id_table' reveals that this field is empty for some
devices, which will cause null pointer dereference when initializing
these devices.
The following log reveals it:
[ 3.973806] KASAN: null-ptr-deref in range [0x0000000000000028-0x000000000000002f]
[ 3.973819] RIP: 0010:com20020pci_probe+0x18d/0x13e0 [com20020_pci]
[ 3.975181] Call Trace:
[ 3.976208] local_pci_probe+0x13f/0x210
[ 3.977248] pci_device_probe+0x34c/0x6d0
[ 3.977255] ? pci_uevent+0x470/0x470
[ 3.978265] really_probe+0x24c/0x8d0
[ 3.978273] __driver_probe_device+0x1b3/0x280
[ 3.979288] driver_probe_device+0x50/0x370
Fix this by checking whether the 'ci' is a null pointer first.
References
Impacted products
Vendor | Product | Version | |||||||
---|---|---|---|---|---|---|---|---|---|
▼ | Linux | Linux |
Version: 8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f Version: 8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f Version: 8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f Version: 8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f Version: 8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f Version: 8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f Version: 8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f Version: 8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f |
||||||
|
{ containers: { adp: [ { metrics: [ { other: { content: { id: "CVE-2022-48908", options: [ { Exploitation: "none", }, { Automatable: "no", }, { "Technical Impact": "partial", }, ], role: "CISA Coordinator", timestamp: "2024-09-10T15:34:10.946683Z", version: "2.0.3", }, type: "ssvc", }, }, ], providerMetadata: { dateUpdated: "2024-09-12T17:33:12.055Z", orgId: "134c704f-9b21-4f2e-91b3-4a467353bcc0", shortName: "CISA-ADP", }, title: "CISA ADP Vulnrichment", }, ], cna: { affected: [ { defaultStatus: "unaffected", product: "Linux", programFiles: [ "drivers/net/arcnet/com20020-pci.c", ], repo: "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git", vendor: "Linux", versions: [ { lessThan: "8e3bc7c5bbf87e86e9cd652ca2a9166942d86206", status: "affected", version: "8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f", versionType: "git", }, { lessThan: "b1ee6b9340a38bdb9e5c90f0eac5b22b122c3049", status: "affected", version: "8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f", versionType: "git", }, { lessThan: "b838add93e1dd98210482dc433768daaf752bdef", status: "affected", version: "8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f", versionType: "git", }, { lessThan: "e50c589678e50f8d574612e473ca60ef45190896", status: "affected", version: "8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f", versionType: "git", }, { lessThan: "5f394102ee27dbf051a4e283390cd8d1759dacea", status: "affected", version: "8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f", versionType: "git", }, { lessThan: "ea372aab54903310756217d81610901a8e66cb7d", status: "affected", version: "8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f", versionType: "git", }, { lessThan: "ca0bdff4249a644f2ca7a49d410d95b8dacf1f72", status: "affected", version: "8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f", versionType: "git", }, { lessThan: "bd6f1fd5d33dfe5d1b4f2502d3694a7cc13f166d", status: "affected", version: "8c14f9c70327a6fb75534c4c61d7ea9c82ccf78f", versionType: "git", }, ], }, { defaultStatus: "affected", product: "Linux", programFiles: [ "drivers/net/arcnet/com20020-pci.c", ], repo: "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git", vendor: "Linux", versions: [ { status: "affected", version: "3.18", }, { lessThan: "3.18", status: "unaffected", version: "0", versionType: "semver", }, { lessThanOrEqual: "4.9.*", status: "unaffected", version: "4.9.305", versionType: "semver", }, { lessThanOrEqual: "4.14.*", status: "unaffected", version: "4.14.270", versionType: "semver", }, { lessThanOrEqual: "4.19.*", status: "unaffected", version: "4.19.233", versionType: "semver", }, { lessThanOrEqual: "5.4.*", status: "unaffected", version: "5.4.183", versionType: "semver", }, { lessThanOrEqual: "5.10.*", status: "unaffected", version: "5.10.104", versionType: "semver", }, { lessThanOrEqual: "5.15.*", status: "unaffected", version: "5.15.27", versionType: "semver", }, { lessThanOrEqual: "5.16.*", status: "unaffected", version: "5.16.13", versionType: "semver", }, { lessThanOrEqual: "*", status: "unaffected", version: "5.17", versionType: "original_commit_for_fix", }, ], }, ], descriptions: [ { lang: "en", value: "In the Linux kernel, the following vulnerability has been resolved:\n\nnet: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe()\n\nDuring driver initialization, the pointer of card info, i.e. the\nvariable 'ci' is required. However, the definition of\n'com20020pci_id_table' reveals that this field is empty for some\ndevices, which will cause null pointer dereference when initializing\nthese devices.\n\nThe following log reveals it:\n\n[ 3.973806] KASAN: null-ptr-deref in range [0x0000000000000028-0x000000000000002f]\n[ 3.973819] RIP: 0010:com20020pci_probe+0x18d/0x13e0 [com20020_pci]\n[ 3.975181] Call Trace:\n[ 3.976208] local_pci_probe+0x13f/0x210\n[ 3.977248] pci_device_probe+0x34c/0x6d0\n[ 3.977255] ? pci_uevent+0x470/0x470\n[ 3.978265] really_probe+0x24c/0x8d0\n[ 3.978273] __driver_probe_device+0x1b3/0x280\n[ 3.979288] driver_probe_device+0x50/0x370\n\nFix this by checking whether the 'ci' is a null pointer first.", }, ], providerMetadata: { dateUpdated: "2024-12-19T08:10:17.214Z", orgId: "416baaa9-dc9f-4396-8d5f-8c081fb06d67", shortName: "Linux", }, references: [ { url: "https://git.kernel.org/stable/c/8e3bc7c5bbf87e86e9cd652ca2a9166942d86206", }, { url: "https://git.kernel.org/stable/c/b1ee6b9340a38bdb9e5c90f0eac5b22b122c3049", }, { url: "https://git.kernel.org/stable/c/b838add93e1dd98210482dc433768daaf752bdef", }, { url: "https://git.kernel.org/stable/c/e50c589678e50f8d574612e473ca60ef45190896", }, { url: "https://git.kernel.org/stable/c/5f394102ee27dbf051a4e283390cd8d1759dacea", }, { url: "https://git.kernel.org/stable/c/ea372aab54903310756217d81610901a8e66cb7d", }, { url: "https://git.kernel.org/stable/c/ca0bdff4249a644f2ca7a49d410d95b8dacf1f72", }, { url: "https://git.kernel.org/stable/c/bd6f1fd5d33dfe5d1b4f2502d3694a7cc13f166d", }, ], title: "net: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe()", x_generator: { engine: "bippy-5f407fcff5a0", }, }, }, cveMetadata: { assignerOrgId: "416baaa9-dc9f-4396-8d5f-8c081fb06d67", assignerShortName: "Linux", cveId: "CVE-2022-48908", datePublished: "2024-08-22T01:30:49.441Z", dateReserved: "2024-08-21T06:06:23.293Z", dateUpdated: "2024-12-19T08:10:17.214Z", state: "PUBLISHED", }, dataType: "CVE_RECORD", dataVersion: "5.1", "vulnerability-lookup:meta": { nvd: "{\"cve\":{\"id\":\"CVE-2022-48908\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-08-22T02:15:05.247\",\"lastModified\":\"2024-09-12T13:37:52.190\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nnet: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe()\\n\\nDuring driver initialization, the pointer of card info, i.e. the\\nvariable 'ci' is required. However, the definition of\\n'com20020pci_id_table' reveals that this field is empty for some\\ndevices, which will cause null pointer dereference when initializing\\nthese devices.\\n\\nThe following log reveals it:\\n\\n[ 3.973806] KASAN: null-ptr-deref in range [0x0000000000000028-0x000000000000002f]\\n[ 3.973819] RIP: 0010:com20020pci_probe+0x18d/0x13e0 [com20020_pci]\\n[ 3.975181] Call Trace:\\n[ 3.976208] local_pci_probe+0x13f/0x210\\n[ 3.977248] pci_device_probe+0x34c/0x6d0\\n[ 3.977255] ? pci_uevent+0x470/0x470\\n[ 3.978265] really_probe+0x24c/0x8d0\\n[ 3.978273] __driver_probe_device+0x1b3/0x280\\n[ 3.979288] driver_probe_device+0x50/0x370\\n\\nFix this by checking whether the 'ci' is a null pointer first.\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: net: arcnet: com20020: corrija null-ptr-deref en com20020pci_probe() Durante la inicialización del controlador, se requiere el puntero de información de la tarjeta, es decir, la variable 'ci'. Sin embargo, la definición de 'com20020pci_id_table' revela que este campo está vacío para algunos dispositivos, lo que provocará una desreferencia del puntero nulo al inicializar estos dispositivos. El siguiente registro lo revela: [3.973806] KASAN: null-ptr-deref en el rango [0x0000000000000028-0x000000000000002f] [3.973819] RIP: 0010:com20020pci_probe+0x18d/0x13e0 [com20020_p ci] [3.975181] Seguimiento de llamadas: [3.976208] local_pci_probe+0x13f /0x210 [3.977248] pci_device_probe+0x34c/0x6d0 [3.977255]? pci_uevent+0x470/0x470 [3.978265] very_probe+0x24c/0x8d0 [3.978273] __driver_probe_device+0x1b3/0x280 [3.979288] driver_probe_device+0x50/0x370 Solucione este problema comprobando primero si el 'ci' es un puntero nulo.\"}],\"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\":\"CWE-476\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"3.18\",\"versionEndExcluding\":\"4.9.305\",\"matchCriteriaId\":\"FD5759B6-D0C9-44AA-A127-E183C95F00A4\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.10\",\"versionEndExcluding\":\"4.14.270\",\"matchCriteriaId\":\"51C0B6F2-A904-4FE6-B06B-CE26226B22B7\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.15\",\"versionEndExcluding\":\"4.19.233\",\"matchCriteriaId\":\"B59A7E33-6262-458E-AC76-E8CC4E812344\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.20\",\"versionEndExcluding\":\"5.4.183\",\"matchCriteriaId\":\"76A7616E-E6B9-4A7F-AA7C-1D47F774215F\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.5\",\"versionEndExcluding\":\"5.10.104\",\"matchCriteriaId\":\"764998FC-D1F7-4BAA-BD56-A553C7AB8F08\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.11\",\"versionEndExcluding\":\"5.15.27\",\"matchCriteriaId\":\"B3A8E092-3021-4A34-8DCE-B89D2238818B\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.16\",\"versionEndExcluding\":\"5.16.13\",\"matchCriteriaId\":\"B871B667-EDC0-435D-909E-E918D8D90995\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.17:rc1:*:*:*:*:*:*\",\"matchCriteriaId\":\"7BD5F8D9-54FA-4CB0-B4F0-CB0471FDDB2D\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.17:rc2:*:*:*:*:*:*\",\"matchCriteriaId\":\"E6E34B23-78B4-4516-9BD8-61B33F4AC49A\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.17:rc3:*:*:*:*:*:*\",\"matchCriteriaId\":\"C030FA3D-03F4-4FB9-9DBF-D08E5CAC51AA\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.17:rc4:*:*:*:*:*:*\",\"matchCriteriaId\":\"B2D2677C-5389-4AE9-869D-0F881E80D923\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.17:rc5:*:*:*:*:*:*\",\"matchCriteriaId\":\"EFA3917C-C322-4D92-912D-ECE45B2E7416\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.17:rc6:*:*:*:*:*:*\",\"matchCriteriaId\":\"BED18363-5ABC-4639-8BBA-68E771E5BB3F\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/5f394102ee27dbf051a4e283390cd8d1759dacea\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/8e3bc7c5bbf87e86e9cd652ca2a9166942d86206\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/b1ee6b9340a38bdb9e5c90f0eac5b22b122c3049\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/b838add93e1dd98210482dc433768daaf752bdef\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/bd6f1fd5d33dfe5d1b4f2502d3694a7cc13f166d\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/ca0bdff4249a644f2ca7a49d410d95b8dacf1f72\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/e50c589678e50f8d574612e473ca60ef45190896\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/ea372aab54903310756217d81610901a8e66cb7d\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}", vulnrichment: { containers: "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2022-48908\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2024-09-10T15:34:10.946683Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2024-09-11T12:42:15.977Z\"}}], \"cna\": {\"title\": \"net: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe()\", \"affected\": [{\"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"vendor\": \"Linux\", \"product\": \"Linux\", \"versions\": [{\"status\": \"affected\", \"version\": \"8c14f9c70327\", \"lessThan\": \"8e3bc7c5bbf8\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"8c14f9c70327\", \"lessThan\": \"b1ee6b9340a3\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"8c14f9c70327\", \"lessThan\": \"b838add93e1d\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"8c14f9c70327\", \"lessThan\": \"e50c589678e5\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"8c14f9c70327\", \"lessThan\": \"5f394102ee27\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"8c14f9c70327\", \"lessThan\": \"ea372aab5490\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"8c14f9c70327\", \"lessThan\": \"ca0bdff4249a\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"8c14f9c70327\", \"lessThan\": \"bd6f1fd5d33d\", \"versionType\": \"git\"}], \"programFiles\": [\"drivers/net/arcnet/com20020-pci.c\"], \"defaultStatus\": \"unaffected\"}, {\"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"vendor\": \"Linux\", \"product\": \"Linux\", \"versions\": [{\"status\": \"affected\", \"version\": \"3.18\"}, {\"status\": \"unaffected\", \"version\": \"0\", \"lessThan\": \"3.18\", \"versionType\": \"custom\"}, {\"status\": \"unaffected\", \"version\": \"4.9.305\", \"versionType\": \"custom\", \"lessThanOrEqual\": \"4.9.*\"}, {\"status\": \"unaffected\", \"version\": \"4.14.270\", \"versionType\": \"custom\", \"lessThanOrEqual\": \"4.14.*\"}, {\"status\": \"unaffected\", \"version\": \"4.19.233\", \"versionType\": \"custom\", \"lessThanOrEqual\": \"4.19.*\"}, {\"status\": \"unaffected\", \"version\": \"5.4.183\", \"versionType\": \"custom\", \"lessThanOrEqual\": \"5.4.*\"}, {\"status\": \"unaffected\", \"version\": \"5.10.104\", \"versionType\": \"custom\", \"lessThanOrEqual\": \"5.10.*\"}, {\"status\": \"unaffected\", \"version\": \"5.15.27\", \"versionType\": \"custom\", \"lessThanOrEqual\": \"5.15.*\"}, {\"status\": \"unaffected\", \"version\": \"5.16.13\", \"versionType\": \"custom\", \"lessThanOrEqual\": \"5.16.*\"}, {\"status\": \"unaffected\", \"version\": \"5.17\", \"versionType\": \"original_commit_for_fix\", \"lessThanOrEqual\": \"*\"}], \"programFiles\": [\"drivers/net/arcnet/com20020-pci.c\"], \"defaultStatus\": \"affected\"}], \"references\": [{\"url\": \"https://git.kernel.org/stable/c/8e3bc7c5bbf87e86e9cd652ca2a9166942d86206\"}, {\"url\": \"https://git.kernel.org/stable/c/b1ee6b9340a38bdb9e5c90f0eac5b22b122c3049\"}, {\"url\": \"https://git.kernel.org/stable/c/b838add93e1dd98210482dc433768daaf752bdef\"}, {\"url\": \"https://git.kernel.org/stable/c/e50c589678e50f8d574612e473ca60ef45190896\"}, {\"url\": \"https://git.kernel.org/stable/c/5f394102ee27dbf051a4e283390cd8d1759dacea\"}, {\"url\": \"https://git.kernel.org/stable/c/ea372aab54903310756217d81610901a8e66cb7d\"}, {\"url\": \"https://git.kernel.org/stable/c/ca0bdff4249a644f2ca7a49d410d95b8dacf1f72\"}, {\"url\": \"https://git.kernel.org/stable/c/bd6f1fd5d33dfe5d1b4f2502d3694a7cc13f166d\"}], \"x_generator\": {\"engine\": \"bippy-c9c4e1df01b2\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"In the Linux kernel, the following vulnerability has been resolved:\\n\\nnet: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe()\\n\\nDuring driver initialization, the pointer of card info, i.e. the\\nvariable 'ci' is required. However, the definition of\\n'com20020pci_id_table' reveals that this field is empty for some\\ndevices, which will cause null pointer dereference when initializing\\nthese devices.\\n\\nThe following log reveals it:\\n\\n[ 3.973806] KASAN: null-ptr-deref in range [0x0000000000000028-0x000000000000002f]\\n[ 3.973819] RIP: 0010:com20020pci_probe+0x18d/0x13e0 [com20020_pci]\\n[ 3.975181] Call Trace:\\n[ 3.976208] local_pci_probe+0x13f/0x210\\n[ 3.977248] pci_device_probe+0x34c/0x6d0\\n[ 3.977255] ? pci_uevent+0x470/0x470\\n[ 3.978265] really_probe+0x24c/0x8d0\\n[ 3.978273] __driver_probe_device+0x1b3/0x280\\n[ 3.979288] driver_probe_device+0x50/0x370\\n\\nFix this by checking whether the 'ci' is a null pointer first.\"}], \"providerMetadata\": {\"orgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"shortName\": \"Linux\", \"dateUpdated\": \"2024-08-22T03:30:38.816Z\"}}}", cveMetadata: "{\"cveId\": \"CVE-2022-48908\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2024-09-12T17:33:12.055Z\", \"dateReserved\": \"2024-08-21T06:06:23.293Z\", \"assignerOrgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"datePublished\": \"2024-08-22T01:30:49.441Z\", \"assignerShortName\": \"Linux\"}", dataType: "CVE_RECORD", dataVersion: "5.1", }, }, }
Log in or create an account to share your comment.
Security Advisory comment format.
This schema specifies the format of a comment related to a security advisory.
Title of the comment
Description of the comment
Loading…
Loading…
Loading…
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.