CVE-2025-14189

7.3 HIGH

📋 TL;DR

This CVE describes a SQL injection vulnerability in Chanjet CRM through version 20251121. Attackers can exploit the gblOrgID parameter in /tools/jxf_dump_table_demo.php to execute arbitrary SQL commands. The vulnerability is remotely exploitable and affects all systems running vulnerable versions of Chanjet CRM.

💻 Affected Systems

Products:
  • Chanjet CRM
Versions: Up to and including 20251121
Operating Systems: All platforms running Chanjet CRM
Default Config Vulnerable: ⚠️ Yes
Notes: The vulnerable file /tools/jxf_dump_table_demo.php appears to be part of the CRM's toolset. All installations with this file accessible are vulnerable.

⚠️ Manual Verification Required

This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.

Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).

🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete database compromise including data theft, data manipulation, and potential remote code execution via database functions.

🟠

Likely Case

Unauthorized data access, data exfiltration, and potential privilege escalation within the CRM system.

🟢

If Mitigated

Limited impact with proper input validation, parameterized queries, and network segmentation in place.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

The exploit is publicly available and requires minimal technical skill to execute. The vulnerability is in a demo/tool file which may be accessible without authentication.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: None available

Restart Required: No

Instructions:

No official patch available. Vendor has not responded to disclosure. Consider workarounds or alternative CRM solutions.

🔧 Temporary Workarounds

Remove vulnerable file

linux

Delete or rename the vulnerable PHP file to prevent exploitation

rm /path/to/webroot/tools/jxf_dump_table_demo.php
mv /path/to/webroot/tools/jxf_dump_table_demo.php /path/to/webroot/tools/jxf_dump_table_demo.php.disabled

Block access to tools directory

all

Configure web server to deny access to the /tools/ directory

# Apache: Add 'Deny from all' to .htaccess in tools directory
# Nginx: location ~ ^/tools/ { deny all; }

🧯 If You Can't Patch

  • Implement WAF rules to block SQL injection patterns targeting the vulnerable endpoint
  • Restrict network access to the CRM system using firewall rules and network segmentation

🔍 How to Verify

Check if Vulnerable:

Check if file exists: ls -la /path/to/webroot/tools/jxf_dump_table_demo.php

Check Version:

Check CRM version in admin panel or configuration files

Verify Fix Applied:

Verify file is removed or inaccessible: curl -I http://your-server/tools/jxf_dump_table_demo.php should return 404 or 403

📡 Detection & Monitoring

Log Indicators:

  • HTTP requests to /tools/jxf_dump_table_demo.php with SQL injection patterns in parameters
  • Unusual database queries from web application user

Network Indicators:

  • HTTP requests containing SQL keywords (UNION, SELECT, INSERT) targeting the vulnerable endpoint

SIEM Query:

web.url:*jxf_dump_table_demo.php* AND (web.param:*UNION* OR web.param:*SELECT* OR web.param:*INSERT*)

🔗 References

📤 Share & Export