CVE-2025-13568

6.3 MEDIUM

📋 TL;DR

CVE-2025-13568 is a SQL injection vulnerability in itsourcecode COVID Tracking System 1.0 that allows remote attackers to execute arbitrary SQL commands via the ID parameter in the /admin/?page=people endpoint. This affects all deployments of this specific software version. Attackers can potentially access, modify, or delete database content.

💻 Affected Systems

Products:
  • itsourcecode COVID Tracking System
Versions: 1.0
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Affects the web application component; no specific OS dependencies.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete database compromise leading to data theft, data manipulation, authentication bypass, or full system takeover via SQL injection to RCE chaining.

🟠

Likely Case

Unauthorized data access, extraction of sensitive information (patient data, admin credentials), and potential privilege escalation.

🟢

If Mitigated

Limited impact with proper input validation, parameterized queries, and WAF protection blocking malicious SQL patterns.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploit details published on GitHub; SQL injection via ID parameter is straightforward for attackers with basic skills.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: https://itsourcecode.com/

Restart Required: No

Instructions:

No official patch available. Consider migrating to a supported alternative or implementing workarounds.

🔧 Temporary Workarounds

WAF Rule Implementation

all

Deploy web application firewall rules to block SQL injection patterns targeting the /admin/?page=people endpoint.

Input Validation Filter

all

Implement server-side input validation to sanitize the ID parameter, allowing only numeric values.

🧯 If You Can't Patch

  • Isolate the system from internet access and restrict to internal network only.
  • Implement strict network segmentation and monitor all traffic to the vulnerable endpoint.

🔍 How to Verify

Check if Vulnerable:

Test the /admin/?page=people endpoint with SQL injection payloads in the ID parameter (e.g., ID=1' OR '1'='1).

Check Version:

Check the software version in the application interface or configuration files.

Verify Fix Applied:

Verify that SQL injection attempts no longer succeed and that input validation is properly implemented.

📡 Detection & Monitoring

Log Indicators:

  • Unusual SQL error messages in application logs
  • Multiple requests to /admin/?page=people with suspicious ID parameters

Network Indicators:

  • HTTP requests containing SQL keywords (SELECT, UNION, etc.) in the ID parameter

SIEM Query:

source="web_logs" AND uri="/admin/?page=people" AND (query_string="*SELECT*" OR query_string="*UNION*" OR query_string="*OR*1*" OR query_string="*'*" OR query_string="*--*")

🔗 References

📤 Share & Export