CVE-2025-13567

6.3 MEDIUM

📋 TL;DR

CVE-2025-13567 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=establishment 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 interface component accessible via HTTP/HTTPS.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete database compromise including data theft, data manipulation, authentication bypass, and potential remote code execution if database functions allow it.

🟠

Likely Case

Unauthorized data access and extraction of sensitive information from the COVID tracking database.

🟢

If Mitigated

Limited impact with proper input validation and database permissions restricting damage to non-critical data.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploit details are publicly available on GitHub, making this easily exploitable by attackers with basic SQL injection knowledge.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: https://itsourcecode.com/

Restart Required: No

Instructions:

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

🔧 Temporary Workarounds

Input Validation Filter

all

Implement server-side input validation to sanitize the ID parameter before processing.

Implement parameterized queries or prepared statements in the PHP code handling the /admin/?page=establishment endpoint.

Web Application Firewall (WAF)

all

Deploy a WAF with SQL injection protection rules to block malicious requests.

Configure WAF rules to detect and block SQL injection patterns in URL parameters.

🧯 If You Can't Patch

  • Isolate the system from the internet and restrict access to authorized internal users only.
  • Implement network segmentation and monitor all traffic to the vulnerable endpoint for suspicious patterns.

🔍 How to Verify

Check if Vulnerable:

Test the /admin/?page=establishment 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 payloads no longer execute and return appropriate error messages or are blocked.

📡 Detection & Monitoring

Log Indicators:

  • Unusual SQL error messages in web server logs
  • Multiple requests to /admin/?page=establishment with suspicious ID parameters

Network Indicators:

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

SIEM Query:

source="web_server.log" AND uri="/admin/?page=establishment" AND (id="*'*" OR id="*SELECT*" OR id="*UNION*")

🔗 References

📤 Share & Export