
Cloud Vulnerability DB
A community-led vulnerabilities database
When passing a non-existing folder to the actix_files::Files::new() method causes the actix server to expose unexpected files.
The actix-files library exposes a Files struct that configures an actix service to serve the files in a folder as static assets. Below you can find the signature of the Files::new method:
pub fn new<T: Into<PathBuf>>(mount_path: &str, serve_from: T) -> FilesWhen the mount_path you pass to Files doesn't exist, it defaults to an empty path (Path::new()). When the service receives a HTTP request, it joins the request information with the empty path and calls canonicalize. Rust resolves this path as relative and returns any file that matches it.
This behavior causes the library to expose unexpected files when the folder is not present.
There is a working PoC on https://github.com/Angelmmiguel/actix-files-vuln, although the next steps can be followed to reproduce the issue
Clone the https://github.com/actix/examples repository.
Change your directory to the basics/static-files folder.
Edit the src/main.rs file and change the line 13 to mount a non-existing folder:
- .service(Files::new("/images", "static/images/").show_files_listing())
+ .service(Files::new("/images", "static/missing/").show_files_listing())Run the project with cargo run.
Access the http://localhost:8080/images/Cargo.toml URL.
This is an exposure of information vulnerability. It affects anyone using the actix-files::Files library that mounts a non-existing folder for any reason.
Source: NVD
Free Vulnerability Assessment
Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses.
Get a personalized demo
"Best User Experience I have ever seen, provides full visibility to cloud workloads."
"Wiz provides a single pane of glass to see what is going on in our cloud environments."
"We know that if Wiz identifies something as critical, it actually is."