The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsLearn about NULL Pointer Dereference vulnerabilities in an interactive lesson.
Start learningA fix was pushed into the master branch but not yet published.
Affected versions of this package are vulnerable to NULL Pointer Dereference through modRMRequired() and decode() in arch/X86/X86DisassemblerDecoder.c. An attacker can crash any application using a reduced X86 Capstone build by supplying crafted x86/x86-64 input containing a 3DNow! opcode sequence such as 0F 0F <modrm> <imm8>. When those opcodes reach the decode path, the unsupported opcode type is left unhandled, and the disassembler dereferences a null decision table, terminating the process during disassembly.
Notes
-DCAPSTONE_X86_REDUCE, where the 3DNow! opcode map is not handled in the vulnerable modRMRequired() and decode() paths.0F 0F <modrm> <imm8> 3DNow! escape sequence; normal x86/x86-64 code paths that do not reach that opcode family are not part of this issue.Workarounds
-DCAPSTONE_X86_REDUCE when disassembling untrusted x86/x86-64 input, or disable the reduced X86 build in your deployment; this avoids the THREEDNOW_MAP path that leads to the NULL dereference and process crash.