| 제목 | quickjs-ng quickjs v0.11.0 Heap-based Buffer Overflow |
|---|
| 설명 | A heap-buffer-overflow (out-of-bounds access) can be triggered in QuickJS-NG in js_typed_array_sort when a user-supplied comparator resizes the underlying resizable ArrayBuffer during sorting.
Root cause: js_typed_array_sort calls rqsort, then uses an index array (array_idx) to build the final sorted typed array. If the comparator function resizes the underlying ArrayBuffer during rqsort, the bounds checks performed in js_TA_cmp_generic can be bypassed (when the resize happens after large indices have already been moved into positions that appear valid during comparisons). After returning from rqsort, js_typed_array_sort proceeds with stale assumptions, and j = array_idx[i] may exceed the new backing buffer length; the subsequent copy from the temporary array using index j causes an out-of-bounds access.
Affected version: quickjs-ng/quickjs commit 537d004cd22b86373c262528c7e8076eaf76996d (tested on 2026-01-05).
Reproduction and ASAN crash details are publicly documented in: https://github.com/quickjs-ng/quickjs/issues/1297
Reporter credit: mcsky23 (Vlad Ionut Seba) |
|---|
| 원천 | ⚠️ https://github.com/quickjs-ng/quickjs/issues/1297 |
|---|
| 사용자 | mcsky23 (UID 94179) |
|---|
| 제출 | 2026. 01. 05. PM 04:17 (3 개월 ago) |
|---|
| 모더레이션 | 2026. 01. 09. PM 07:24 (4 days later) |
|---|
| 상태 | 수락 |
|---|
| VulDB 항목 | 340356 [quickjs-ng quickjs 까지 0.11.0 quickjs.c js_typed_array_sort 메모리 손상] |
|---|
| 포인트들 | 20 |
|---|