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-56290 — CVE-2026-56290 - Mass Exploit for Joomla Com_pagebuilderck component (Unrestricted File Upload → RCE). Multi-threaded, automatic CSRF bypass, PHP shell uploader. | Kitploit
Tools/GitHubGitHub/jenderal92/cve-2026-56290
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingCommand and ControlLearning & EducationRed Teaming
GitHubjenderal92/cve-2026-56290

CVE-2026-56290

CVE-2026-56290 - Mass Exploit for Joomla Com_pagebuilderck component (Unrestricted File Upload → RCE). Multi-threaded, automatic CSRF bypass, PHP shell uploader.

View Repository
31 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-56290 - Com_pagebuilderck Mass Exploit

⚠️ Disclaimer

This tool is for educational and authorized security testing purposes only.

  • Unauthorized access to computer systems is illegal
  • Use this tool only on systems you own or have explicit permission to test
  • The author is not responsible for any misuse or damage caused by this tool
  • By using this tool, you agree to comply with all applicable laws and regulations

More Disclaimer You Can see the disclaimer on the cover of Jenderal92. You can check it HERE !!!

📋 Description

CVE-2026-56290 is a mass exploitation tool targeting the Com_pagebuilderck Joomla component. This vulnerability allows remote attackers to upload arbitrary PHP files via an unrestricted file upload mechanism, leading to Remote Code Execution (RCE).

🔍 Vulnerability Details

AttributeValue
CVE IDCVE-2026-56290
ComponentCom_pagebuilderck
PlatformJoomla! CMS
TypeUnrestricted File Upload (RCE)
CVSS Score9.8 (Critical)

🎯 How It Works

  1. Token Extraction: Fetches CSRF token from the target page
  2. File Upload: Uploads PHP shell to /media/com_pagebuilderck/gfonts/
  3. Shell Confirmation: Verifies successful upload by checking shell output
  4. Result Storage: Saves vulnerable URLs to reslt.txt

📦 Requirements

System Requirements

root@kitploit:~
Python 2.7
pip (Python package installer)

Python Dependencies

root@kitploit:~
pip install requests colorama

🔧 Installation

  1. Clone the Repository
root@kitploit:~
git clone https://github.com/Jenderal92/CVE-2026-56290.git
cd CVE-2026-56290
  1. Install Dependencies
root@kitploit:~
pip install -r requirements.txt

📖 Usage

Basic Usage

root@kitploit:~
python CVE-2026-56290.py targets.txt

Input File Format

Create a targets.txt file with one URL per line:

root@kitploit:~
https://example1.com
http://example2.com/joomla
https://example3.com:8080
# Comments are ignored

Output

· Console Output: Real-time progress and results · reslt.txt: Contains all vulnerable shell URLs

Example Run

root@kitploit:~
$ python CVE-2026-56290.py targets.txt

[+] CVE-2026-56290 - Com_pagebuilderck Mass Exploit
[+] Threads: 15
[+] Timeout: 10s
[+] Output file: reslt.txt

[+] Loaded 100 targets from file
[*] Starting pool with 15 processes...

[1] Queueing: https://example1.com
[2] Queueing: https://example2.com
...
[1] ✓✓✓ VULNERABLE: https://example1.com/media/com_pagebuilderck/gfonts/shell_abc123.php

⚙️ Configuration

You can modify these variables in the script:

root@kitploit:~
THREADS = 15           # Number of concurrent workers
TIMEOUT = 10           # Request timeout in seconds
USER_AGENT = "..."     # Custom User-Agent string
OUTPUT_FILE = "reslt.txt"  # Output filename

🛡️ Security Considerations

For System Administrators

If you're running a Joomla site with Com_pagebuilderck:

  1. Update immediately to the latest patched version
  2. Remove the component if no longer needed
  3. Monitor /media/com_pagebuilderck/gfonts/ for suspicious files
  4. Implement WAF rules to block PHP uploads
  5. Review server logs for exploitation attempts

Indicators of Compromise (IoC)

Look for these signs of exploitation:

root@kitploit:~
# Suspicious files in
/media/com_pagebuilderck/gfonts/*.php
/media/com_pagebuilderck/gfonts/*.phtml
/media/com_pagebuilderck/gfonts/*.phar

# Suspicious requests
/index.php?option=com_pagebuilderck&task=browse.ajaxAddPicture&[token]=1

Detection Commands

root@kitploit:~
# Find suspicious PHP files in the media directory
find /path/to/joomla/media/com_pagebuilderck/gfonts/ -name "*.php" -type f

# Check for recent modifications
find /path/to/joomla/media/com_pagebuilderck/gfonts/ -type f -mtime -7

# Look for suspicious file names (random strings)
ls -la /path/to/joomla/media/com_pagebuilderck/gfonts/ | grep -E '[a-z0-9]{8,}\.(php|phtml|phar)'

⚠️ Legal Notice

This software is provided "AS IS", without warranty of any kind. The author is not responsible for any illegal or unethical use of this tool. Always obtain proper authorization before testing any system.

🙏 Acknowledgments

· Security researchers who discovered and reported CVE-2026-56290 · Joomla community for maintaining the CMS

Remember: With great power comes great responsibility. Use this tool ethically and legally.

Download Tool