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 applicationsUpgrade Oracle:10
kernel-uek-debug-devel
to version 0:6.12.0-103.40.4.1.el10uek or higher.
This issue was patched in ELSA-2025-20551
.
Note: Versions mentioned in the description apply only to the upstream kernel-uek-debug-devel
package and not the kernel-uek-debug-devel
package as distributed by Oracle
.
See How to fix?
for Oracle:10
relevant fixed versions and status.
In the Linux kernel, the following vulnerability has been resolved:
comedi: Fail COMEDI_INSNLIST ioctl if n_insns is too large
The handling of the COMEDI_INSNLIST
ioctl allocates a kernel buffer to
hold the array of struct comedi_insn
, getting the length from the
n_insns
member of the struct comedi_insnlist
supplied by the user.
The allocation will fail with a WARNING and a stack dump if it is too
large.
Avoid that by failing with an -EINVAL
error if the supplied n_insns
value is unreasonable.
Define the limit on the n_insns
value in the MAX_INSNS
macro. Set
this to the same value as MAX_SAMPLES
(65536), which is the maximum
allowed sum of the values of the member n
in the array of struct comedi_insn
, and sensible comedi instructions will have an n
of at
least 1.