mirror of
https://github.com/0xMarcio/cve.git
synced 2026-02-12 18:42:46 +00:00
1.1 KiB
1.1 KiB
CVE-2021-47353
Description
In the Linux kernel, the following vulnerability has been resolved:udf: Fix NULL pointer dereference in udf_symlink functionIn function udf_symlink, epos.bh is assigned with the value returnedby udf_tgetblk. The function udf_tgetblk is defined in udf/misc.cand returns the value of sb_getblk function that could be NULL.Then, epos.bh is used without any check, causing a possibleNULL pointer dereference when sb_getblk fails.This fix adds a check to validate the value of epos.bh.
POC
Reference
Github
No PoCs found on GitHub currently.