CVE-2025-10614

4.3 MEDIUM

📋 TL;DR

A cross-site scripting (XSS) vulnerability in itsourcecode E-Logbook with Health Monitoring System for COVID-19 1.0 allows attackers to inject malicious scripts via the profile_id parameter in /print_reports_prev.php. This affects organizations using this specific COVID-19 health monitoring software, potentially compromising user sessions and data integrity.

💻 Affected Systems

Products:
  • itsourcecode E-Logbook with Health Monitoring System for COVID-19
Versions: 1.0
Operating Systems: Any OS running the web application
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects the specific COVID-19 health monitoring version; other itsourcecode products may not be vulnerable.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could steal session cookies, redirect users to malicious sites, perform actions on behalf of authenticated users, or deface the application.

🟠

Likely Case

Session hijacking leading to unauthorized access to health monitoring data, or credential theft from legitimate users.

🟢

If Mitigated

Limited impact if input validation and output encoding are properly implemented, though some functionality disruption may occur.

🌐 Internet-Facing: HIGH - The vulnerability is remotely exploitable and the exploit has been publicly disclosed.
🏢 Internal Only: MEDIUM - Internal attackers could still exploit this to escalate privileges or move laterally within the network.

🎯 Exploit Status

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

Exploit details are publicly available on GitHub, making it easier for attackers to weaponize. The attack requires manipulation of the profile_id parameter.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Not specified by vendor

Vendor Advisory: Not available

Restart Required: No

Instructions:

1. Check vendor website for updates. 2. Apply any available patches. 3. If no patch exists, implement input validation and output encoding in /print_reports_prev.php.

🔧 Temporary Workarounds

Input Validation and Sanitization

all

Implement server-side validation to ensure profile_id contains only expected characters (e.g., numbers) and sanitize output.

Modify /print_reports_prev.php to validate profile_id parameter using regex: /^[0-9]+$/
Use htmlspecialchars() or equivalent when outputting profile_id

Web Application Firewall (WAF) Rules

all

Deploy WAF rules to block XSS payloads targeting the profile_id parameter.

Configure WAF to detect and block scripts in profile_id parameter
Set up rules for common XSS patterns

🧯 If You Can't Patch

  • Implement Content Security Policy (CSP) headers to restrict script execution
  • Disable or restrict access to /print_reports_prev.php if not essential

🔍 How to Verify

Check if Vulnerable:

Test by injecting a simple XSS payload like <script>alert('XSS')</script> into the profile_id parameter of /print_reports_prev.php and check if it executes.

Check Version:

Check application version in admin panel or configuration files; typically found in about.php or config.php.

Verify Fix Applied:

After implementing fixes, retest with XSS payloads to ensure they are properly sanitized and do not execute.

📡 Detection & Monitoring

Log Indicators:

  • Unusual requests to /print_reports_prev.php with script tags or JavaScript in parameters
  • Multiple failed login attempts following XSS payload submissions

Network Indicators:

  • HTTP requests containing <script> tags or JavaScript in profile_id parameter
  • Unexpected redirects from the application

SIEM Query:

source="web_logs" AND uri="/print_reports_prev.php" AND (param="profile_id" AND value MATCHES "<script>|javascript:")

🔗 References

📤 Share & Export