CVE-2025-13484

2.4 LOW

📋 TL;DR

This vulnerability allows attackers to inject malicious scripts into the Campcodes Complete Online Beauty Parlor Management System 1.0 via the Name parameter in the customer-list.php admin page. When exploited, it enables cross-site scripting attacks that could steal admin session cookies or deface pages. Only systems running this specific software version are affected.

💻 Affected Systems

Products:
  • Campcodes Complete Online Beauty Parlor Management System
Versions: 1.0
Operating Systems: Any OS running PHP web server
Default Config Vulnerable: ⚠️ Yes
Notes: Requires admin access to /admin/customer-list.php page

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Admin session hijacking leading to complete system compromise, data theft, or malware distribution to users

🟠

Likely Case

Session cookie theft allowing unauthorized admin access, or defacement of customer pages

🟢

If Mitigated

Limited to reflected XSS impact with proper input validation and output encoding

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploit requires admin access to the vulnerable page, but attack can be initiated remotely once access is obtained

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: https://www.campcodes.com/

Restart Required: No

Instructions:

No official patch available. Consider implementing input validation and output encoding as workaround.

🔧 Temporary Workarounds

Input Validation Filter

all

Add server-side validation to sanitize Name parameter input

Modify /admin/customer-list.php to include: htmlspecialchars($_GET['Name'], ENT_QUOTES, 'UTF-8')

Content Security Policy

all

Implement CSP headers to restrict script execution

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'"
Add to PHP: header("Content-Security-Policy: default-src 'self'");

🧯 If You Can't Patch

  • Restrict admin panel access to trusted IP addresses only
  • Implement web application firewall with XSS filtering rules

🔍 How to Verify

Check if Vulnerable:

Test by accessing /admin/customer-list.php?Name=<script>alert('XSS')</script> and check if script executes

Check Version:

Check software version in admin panel or readme files

Verify Fix Applied:

Retest with same payload after implementing fixes - script should not execute

📡 Detection & Monitoring

Log Indicators:

  • Unusual GET requests to /admin/customer-list.php with script tags in parameters
  • Multiple failed admin login attempts followed by XSS payloads

Network Indicators:

  • HTTP requests containing <script> tags in URL parameters
  • Unusual outbound connections from admin panel

SIEM Query:

source="web_logs" AND uri="/admin/customer-list.php" AND (query CONTAINS "<script>" OR query CONTAINS "javascript:")

🔗 References

📤 Share & Export