CVE-2025-15169

4.7 MEDIUM

📋 TL;DR

This vulnerability allows remote attackers to execute SQL injection attacks against BiggiDroid Simple PHP CMS 1.0 by manipulating the ID parameter in the /admin/editsite.php file. Attackers can potentially access, modify, or delete database content. Anyone using this specific CMS version is affected.

💻 Affected Systems

Products:
  • BiggiDroid Simple PHP CMS
Versions: 1.0
Operating Systems: Any OS running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires the /admin/editsite.php file to be accessible.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete database compromise leading to data theft, data manipulation, or complete system takeover if database privileges allow.

🟠

Likely Case

Unauthorized data access, potential privilege escalation, or data corruption.

🟢

If Mitigated

Limited impact if proper input validation and parameterized queries are implemented.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploit details are publicly available, making attacks easier to execute.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: None

Restart Required: No

Instructions:

No official patch available. Consider migrating to a supported CMS or implementing custom fixes.

🔧 Temporary Workarounds

Input Validation and Sanitization

all

Add input validation to sanitize the ID parameter before processing.

Modify /admin/editsite.php to validate ID as integer using intval() or similar functions.

Web Application Firewall (WAF)

all

Deploy a WAF to block SQL injection attempts.

Configure WAF rules to detect and block SQL injection patterns targeting the ID parameter.

🧯 If You Can't Patch

  • Restrict access to /admin/ directory using IP whitelisting or authentication.
  • Disable or remove the /admin/editsite.php file if not needed.

🔍 How to Verify

Check if Vulnerable:

Check if the file /admin/editsite.php exists and accepts ID parameter without validation.

Check Version:

Check CMS version in configuration files or admin panel.

Verify Fix Applied:

Test the ID parameter with SQL injection payloads to ensure they are blocked or sanitized.

📡 Detection & Monitoring

Log Indicators:

  • Unusual SQL queries in database logs
  • Multiple failed login attempts or parameter manipulation in web server logs

Network Indicators:

  • HTTP requests to /admin/editsite.php with suspicious ID parameters containing SQL keywords

SIEM Query:

source="web_server" AND uri="/admin/editsite.php" AND (param="ID" AND value CONTAINS "UNION" OR "SELECT" OR "OR 1=1")

🔗 References

📤 Share & Export