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-48908 — CVE-2026-48908 — PoC exploit for unauthenticated RCE in SP Page Builder (Joomla) via arbitrary file upload. Multi‑threaded, case‑bypass, shell verification. For authorized security testing only. | Kitploit
Tools/GitHubGitHub/jenderal92/cve-2026-48908
Payload GenerationVulnerability AnalysisExploitationShellcodeWeb Application ExploitationPenetration TestingRed Teaming
GitHubjenderal92/cve-2026-48908

CVE-2026-48908

CVE-2026-48908 — PoC exploit for unauthenticated RCE in SP Page Builder (Joomla) via arbitrary file upload. Multi‑threaded, case‑bypass, shell verification. For authorized security testing only.

View Repository
21 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-48908 — SP Page Builder (Joomla) Unauthenticated RCE Exploit

Critical (CVSS v4: 10.0) — Proof-of-concept exploit for unauthenticated remote code execution in SP Page Builder (com_sppagebuilder) for Joomla.


📋 Vulnerability Overview

AttributeValue
CVE IDCVE-2026-48908
SeverityCritical
CVSS v4 Score10.0
WeaknessCWE-284 (Improper Access Control) → Unauthenticated File Upload
ComponentSP Page Builder (com_sppagebuilder) for Joomla
Affected Versions1.0.0 – 6.6.1
Fixed Version6.6.2
Privileges RequiredNone (pre‑authentication)
User InteractionNone
Attack VectorNetwork
ImpactFull system compromise (RCE)

🔍 Description

SP Page Builder exposes the controller task asset.uploadCustomIcon to handle uploading a custom icon‑font package:

root@kitploit:~

index.php?option=com_sppagebuilder&task=asset.uploadCustomIcon

In vulnerable versions, this task is reachable without authentication and without a valid CSRF token. It accepts a ZIP archive (multipart field custom_icon) and extracts its contents into a publicly accessible directory under the web root:

root@kitploit:~

/media/com_sppagebuilder/assets/iconfont/<name>/

Because the endpoint is accessible pre‑authentication and the extracted files land in a browsable location, an attacker can upload arbitrary files and execute PHP code by requesting them over HTTP.

Code Execution Technique

This exploit defeats common server‑side filename filters using:

  1. Case‑sensitive blocklist bypass – The filter rejects lower‑case .php, .phtml, .phar, etc., but does not normalise case, so .PHP and other mixed‑case variants are accepted.
  2. Valid icon‑font structure – The exploit packages a valid selection.json, style.css, and fonts/<name>.ttf so the upload is accepted.
  3. Shell placement – A PHP web shell is written to fonts/shxt.{ext} within the extracted archive.

📦 Features

  • Multi‑threaded scanning and exploitation (configurable thread count)
  • Automatic URL fixing – appends the required endpoint path automatically
  • Dual extension support – attempts .php and .PHP variants
  • Shell verification – checks that the uploaded shell is accessible and functional
  • Result logging – saves successful shell URLs to result.txt
  • Progress tracking – displays real‑time status and statistics

🚀 Usage

Requirements

  • Python 2.7
  • requests library

Installation

root@kitploit:~
git clone https://github.com/Jenderal92/CVE-2026-48908
cd CVE-2026-48908
pip install requests

Basic Usage

root@kitploit:~
python2 CVE-2026-48908.py list.txt

With Custom Thread Count

root@kitploit:~
python2 CVE-2026-48908.py list.txt 20

Input File Format

list.txt should contain one target URL per line:

root@kitploit:~
https://example.com
http://target-site.com/joomla
https://192.168.1.100/joomla

Output

· Successful shell URLs are appended to result.txt · Each line contains the full URL to the uploaded PHP shell


⚙️ How It Works

  1. URL Fixing – Automatically appends index.php?option=com_sppagebuilder&task=asset.uploadCustomIcon if not already present.
  2. ZIP Construction – Creates a valid icon‑font ZIP archive containing the PHP shell at fonts/shxt.{ext}.
  3. Upload – Sends the ZIP via multipart POST to the vulnerable endpoint.
  4. Verification – Checks if the shell is accessible and returns the expected output (presence of "Upload").
  5. Logging – Saves successful shell URLs to result.txt.

Shell Payload

The embedded shell provides:

· Server environment information (php_uname()) · File upload interface for uploading additional files · Success / failure feedback


🛡️ Mitigation

· Upgrade SP Page Builder to version 6.6.2 or newer. · Audit upload directories for unauthorised files: · /media/com_sppagebuilder/assets/iconfont/ · Remove any unexpected PHP files found in those directories. · Review server logs for suspicious POST requests to asset.uploadCustomIcon. · Deploy a Web Application Firewall (WAF) to block such requests.


⚠️ Disclaimer

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

Unauthorised access to computer systems is illegal. The authors assume no responsibility for any misuse or damage caused by this tool. Only use this on systems you own or have explicit written permission to test.

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


📚 References

· Censys Advisory · NVD Entry · JoomShaper Security Announcement


📄 License

This project is for educational and research purposes only. Use at your own risk.

Download Tool