CVE-2025-13567
📋 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
- itsourcecode COVID Tracking System
📦 What is this software?
Covid Tracking System by Angeljudesuarez
⚠️ 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.
🎯 Exploit Status
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
allImplement 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)
allDeploy 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*")