Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
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 com.jayway.jsonpath:json-path
to version 2.9.0 or higher.
Affected versions of this package are vulnerable to Buffer Overflow via the deprecated Criteria.parse
or Criteria.where
methods. An attacker can disrupt the regular operation of the application by supplying a specially crafted input that triggers a stack overflow.
Exploiting this vulnerability requires insecure configurations on the server side, for example - handling requests in a one single thread.
import com.jayway.jsonpath.Criteria;
import org.junit.Test;
public class CriteriaFuzzerWhere1 {
// Stack overflow
@Test
public void whereFuzzerTest() {
try {
Criteria result = Criteria.where("[']',");
} catch (Exception e) {
}
}
}