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-2025-63406-PoC — Small PoC to automate exploitation of CVE-2025-63406. | Kitploit
Tools/GitHubGitHub/nxvh1337/cve-2025-63406-poc
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingCommand and Control
GitHubnxvh1337/cve-2025-63406-poc

CVE-2025-63406-PoC

Small PoC to automate exploitation of CVE-2025-63406.

View Repository
49 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-2025-63406 PoC

Installation

root@kitploit:~
# Install dependencies
pip install -r requirements.txt

# Or use a virtual environment
python3 -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
pip install -r requirements.txt

Usage

root@kitploit:~
python3 CVE-2025-63406.py -u <URL> -n <USERNAME> -p <PASSWORD> -c <COMMAND>

Arguments

  • -u, --url: Base URL of the GroupOffice instance (e.g., http://localhost:9090)
  • -n, --username: Username for authentication
  • -p, --password: Password for authentication
  • -c, --command: System command to execute (e.g., whoami, id, ls -la)

Examples

root@kitploit:~
# Execute whoami command
python3 CVE-2025-63406.py -u http://localhost:9090 -n admin -p password -c whoami

# Execute id command
python3 CVE-2025-63406.py -u http://target.com:9090 -n admin -p password -c id

# List files in current directory
python3 CVE-2025-63406.py -u http://target.com:9090 -n admin -p password -c "ls -la"

# Get system information
python3 CVE-2025-63406.py -u http://target.com:9090 -n admin -p password -c "uname -a"

PoC in usage with id command PoC in usage with "uname -a" command

Disclaimer

⚠️ This tool is for authorized testing only. Unauthorized access to computer systems is illegal.

Download Tool