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 Information Disclosure vulnerabilities in an interactive lesson.
Start learningUpgrade io.netty:netty-transport
to version 4.1.59.Final or higher.
Affected versions of this package are vulnerable to Information Disclosure via the AbstractDiskHttpData
method, and on Unix-like systems.
When netty
's multipart decoders are used, local information disclosure can occur via the local system temporary directory if temporary storing uploads on the disk are enabled.
On unix-like systems, the temporary directory is shared between all users. As such, writing to this directory using API's that do not explicitly set the file/directory permissions can lead to information disclosure.
The method File.createTempFile
on unix-like systems creates a random file, but, by default will create this file with the permissions -rw-r--r--
. Sensitive information is written to this file in AbstractDiskHttpData
, and other local users can read it.