Описание
Querydsl vulnerable to HQL injection through orderBy
Summary
The order by method enables injecting HQL queries. This may cause blind HQL injection, which could lead to leakage of sensitive information, and potentially also Denial Of Service. This vulnerability is present since the original querydsl repository(https://github.com/querydsl/querydsl) where it was assigned preliminary CVE identifier CVE-2024-49203.
Details
Vulnerable code may look as follows:
Where vulnerability is either caused by pathBuilder.get(orderBy) or the orderBy(order) method itself, based on where the security checks are expected.
PoC
Full POC code is available in repository: https://github.com/CSIRTTrizna/CVE-2024-49203/ When we take a look at source code shown in Details section the functionality is as follows:
- Create JPAQuery object instance:
- Create OrderSpecifier object instance:
Where orderBy variable is user provided input.
- order and run the query
When user goes to URL
/products?orderBy=name+INTERSECT+SELECT+t+FROM+Test+t+WHERE+(SELECT+cast(pg_sleep(10) AS text))='2'+ORDER+BY+t.id
The generated query will look something like this:
Environment
Library versions used in proof of concept to reproduce the vulnerability:
Impact
The vulnerability is HQL injection, so anyone using source code similar to one provided in details is exposed to potentional information leakage and denial of service.
Ссылки
- https://github.com/OpenFeign/querydsl/security/advisories/GHSA-6q3q-6v5j-h6vg
- https://nvd.nist.gov/vuln/detail/CVE-2024-49203
- https://github.com/querydsl/querydsl/issues/3757
- https://github.com/CSIRTTrizna/CVE-2024-49203
- https://github.com/OpenFeign/querydsl/releases/tag/5.6.1
- https://github.com/OpenFeign/querydsl/releases/tag/6.10.1
- https://github.com/querydsl/querydsl/releases/tag/QUERYDSL_5_1_0
- https://www.csirt.sk/querydsl-java-library-vulnerability-permits-sql-hql-injection.html
Пакеты
io.github.openfeign.querydsl:querydsl-jpa
>= 6.0.0.M1, < 6.10.1
6.10.1
io.github.openfeign.querydsl:querydsl-apt
>= 6.0.0.M1, < 6.10.1
6.10.1
io.github.openfeign.querydsl:querydsl-jpa
< 5.6.1
5.6.1
io.github.openfeign.querydsl:querydsl-apt
< 5.6.1
5.6.1
com.querydsl:querydsl-jpa
<= 5.1.0
Отсутствует
com.querydsl:querydsl-apt
<= 5.1.0
Отсутствует
Связанные уязвимости
Querydsl 5.1.0 and OpenFeign Querydsl 6.8 allows SQL/HQL injection in orderBy in JPAQuery. NOTE: this is disputed by a Querydsl community member because the product is not intended to defend against a developer who uses untrusted input directly in query construction.