CVE-2024-48924

Description

### ImpactWhen this library is used to deserialize messagepack data from an untrusted source, there is a risk of a denial of service attack by an attacker that sends data contrived to produce hash collisions, leading to large CPU consumption disproportionate to the size of the data being deserialized.This is similar to [a prior advisory](https://github.com/MessagePack-CSharp/MessagePack-CSharp/security/advisories/GHSA-7q36-4xx7-xcxf), which provided an inadequate fix for the hash collision part of the vulnerability.### PatchesThe following steps are required to mitigate this risk.1. Upgrade to a version of the library where a fix is available.1. Review the steps in [this previous advisory](https://github.com/MessagePack-CSharp/MessagePack-CSharp/security/advisories/GHSA-7q36-4xx7-xcxf) to ensure you have your application configured for untrusted data.### WorkaroundsIf upgrading MessagePack to a patched version is not an option for you, you may apply a manual workaround as follows:1. Declare a class that derives from MessagePackSecurity.2. Override the GetHashCollisionResistantEqualityComparer method to provide a collision-resistant hash function of your own and avoid calling base.GetHashCollisionResistantEqualityComparer().3. Configure a MessagePackSerializerOptions with an instance of your derived type by calling WithSecurity on an existing options object.4. Use your custom options object for all deserialization operations. This may be by setting the MessagePackSerializer.DefaultOptions static property, if you call methods that rely on this default property, and/or by passing in the options object explicitly to any Deserialize method.### References- Learn more about best security practices when reading untrusted data with [MessagePack 1.x](https://github.com/MessagePack-CSharp/MessagePack-CSharp/tree/v1.x#security) or [MessagePack 2.x](https://github.com/MessagePack-CSharp/MessagePack-CSharp#security).- The .NET teams [discussion on hash collision vulnerabilities of their HashCode struct](https://github.com/GrabYourPitchforks/runtime/blob/threat_models/docs/design/security/System.HashCode.md).### For more informationIf you have any questions or comments about this advisory:* [Start a public discussion](https://github.com/MessagePack-CSharp/MessagePack-CSharp/discussions)* [Email us privately](mailto:andrewarnott@live.com)

Risk Information

Base Score
6.2
MODERATE
Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H/E:U/RL:O/RC:C
EPSS Score
Exploitation Probability
0.107

Associated Vulnerability

VulnerabilityOS Platform
Vulnerabilities CVE-2024-48924 are fixed in Nuget - MessagePack 2.5.187Windows
Vulnerabilities CVE-2024-48924 are fixed in Nuget - MessagePack 3.0.214Windows
Vulnerabilities CVE-2024-48924 are fixed in Nuget - MessagePack for Linux 2.5.187Linux
Vulnerabilities CVE-2024-48924 are fixed in Nuget - MessagePack for Linux 3.0.214Linux

Patch Details

No records found

References

https://nvd.nist.gov/vuln/detail/CVE-2023-1234
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-1234