Bug 1678297 (CVE-2019-8357)
Summary: | CVE-2019-8357 sox: null pointer dereference in function lsx_make_lpf in effect_i_dsp.c | ||
---|---|---|---|
Product: | [Other] Security Response | Reporter: | Dhananjay Arunesh <darunesh> |
Component: | vulnerability | Assignee: | Red Hat Product Security <security-response-team> |
Status: | CLOSED ERRATA | QA Contact: | |
Severity: | low | Docs Contact: | |
Priority: | low | ||
Version: | unspecified | CC: | felix, hhorak, hobbes1069, jkucera |
Target Milestone: | --- | Keywords: | Security |
Target Release: | --- | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | If docs needed, set a value | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2021-10-27 03:25:26 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | 1678298, 1680119 | ||
Bug Blocks: | 1678305 |
Description
Dhananjay Arunesh
2019-02-18 13:01:02 UTC
Created sox tracking bugs for this issue: Affects: fedora-all [bug 1678298] in lsx_make_lpf, num_taps is passed in a large value (402653185 in poc). malloc then fails here: ``` │360 double * h = malloc(num_taps * sizeof(*h)), sum = 0; ``` sizeof(*h) is 8, which ends up passing around 3GB to malloc, which returns 0. The fix is to check the malloc return code and also potentially sanitize whatever is setting the large num_taps earlier. Code doesn't seem to exist in earlier versions than that shipped in Red Hat Enterprise Linux 7. |