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 GitPython to version 3.1.59 or higher.
GitPython is a python library used to interact with Git repositories
Affected versions of this package are vulnerable to External Control of File Name or Path through the Submodule._config_parser() path in git/objects/submodule/base.py. An attacker can disclose the first line of a readable local file by supplying a malicious .gitmodules file with an [include] directive and triggering normal submodule enumeration, such as repo.submodules. The parser used for .gitmodules inherits include merging, so it follows attacker-controlled include paths during read-only processing. If the included target is not valid git-config, parsing fails with an exception that can expose the file’s contents through the error message, breaking tools that inspect untrusted repositories.
Workarounds
repo.submodules / Submodule.iter_items() / Submodule.config() until the library is upgraded, so attacker-controlled .gitmodules files cannot trigger include parsing against local files.