CVE-2024-32655: Npgsql vulnerable to SQL Injection via Protocol Message Size Overflow
The WriteBind()
method in src/Npgsql/Internal/NpgsqlConnector.FrontendMessages.cs
uses int
variables to store the message length and the sum of parameter lengths. Both variables overflow when the sum of parameter lengths becomes too large.
This causes Npgsql to write a message size that is too small when constructing a Postgres protocol message to send it over the network to the database. When parsing the message, the database will only read a small number of bytes and treat any following bytes as new messages while they belong to the old message.
Attackers can abuse this to inject arbitrary Postgres protocol messages into the connection, leading to the execution of arbitrary SQL statements on the application’s behalf.
References
- github.com/advisories/GHSA-x9vc-6hfv-hg8c
- github.com/npgsql/npgsql
- github.com/npgsql/npgsql/commit/f7e7ead0702d776a8f551f5786c4cac2d65c4bc6
- github.com/npgsql/npgsql/files/14309386/Npgsql.Security.Advisory.pdf
- github.com/npgsql/npgsql/files/14309397/npgsql-protocol-overflow-poc.zip
- github.com/npgsql/npgsql/releases/tag/v8.0.3
- github.com/npgsql/npgsql/security/advisories/GHSA-x9vc-6hfv-hg8c
- nvd.nist.gov/vuln/detail/CVE-2024-32655
Detect and mitigate CVE-2024-32655 with GitLab Dependency Scanning
Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →