CVE-2025-11032

7.3 HIGH

📋 TL;DR

This vulnerability allows remote attackers to execute SQL injection attacks against kidaze CourseSelectionSystem by manipulating the CPU parameter in /Profilers/PriProfile/COUNT3s6.php. The flaw affects all versions up to commit 42cd892b40a18d50bd4ed1905fa89f939173a464, potentially exposing database contents to unauthorized access.

💻 Affected Systems

Products:
  • kidaze CourseSelectionSystem
Versions: All versions up to commit 42cd892b40a18d50bd4ed1905fa89f939173a464
Operating Systems: Any OS running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Affects systems with the vulnerable file accessible via web server. Rolling release system means specific version numbers are not tracked.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete database compromise including sensitive user data, credentials, and potential system takeover via subsequent attacks.

🟠

Likely Case

Data exfiltration from database tables, including user information and system data.

🟢

If Mitigated

Limited impact with proper input validation and database permissions restricting damage scope.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploit code is publicly available and remote exploitation is confirmed. SQL injection typically requires minimal technical skill.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: None found

Restart Required: No

Instructions:

Update to latest version from repository. Review commit history after 42cd892b40a18d50bd4ed1905fa89f939173a464 for security fixes.

🔧 Temporary Workarounds

Input Validation Filter

all

Add input validation to sanitize CPU parameter before processing

Modify /Profilers/PriProfile/COUNT3s6.php to validate CPU parameter using prepared statements or parameterized queries

Access Restriction

all

Restrict access to vulnerable endpoint

Add authentication requirement or IP restriction to /Profilers/PriProfile/COUNT3s6.php

🧯 If You Can't Patch

  • Implement web application firewall (WAF) with SQL injection rules
  • Restrict database user permissions to minimum required

🔍 How to Verify

Check if Vulnerable:

Check if /Profilers/PriProfile/COUNT3s6.php exists and accepts CPU parameter without proper sanitization

Check Version:

Check git commit hash: git log --oneline -1

Verify Fix Applied:

Test SQL injection attempts against the CPU parameter to confirm they are blocked

📡 Detection & Monitoring

Log Indicators:

  • Unusual SQL queries in database logs
  • Multiple requests to COUNT3s6.php with SQL-like parameters

Network Indicators:

  • HTTP requests to /Profilers/PriProfile/COUNT3s6.php containing SQL keywords in parameters

SIEM Query:

source="web_logs" AND uri="/Profilers/PriProfile/COUNT3s6.php" AND (param="CPU" AND value CONTAINS "UNION" OR value CONTAINS "SELECT" OR value CONTAINS "--")

🔗 References

📤 Share & Export