CVE-2025-14051

6.3 MEDIUM

📋 TL;DR

This vulnerability in youlaitech youlai-mall allows attackers to manipulate dynamically-identified variables through the getById/updateAddress/deleteAddress functions, potentially leading to unauthorized data access or modification. The flaw affects youlai-mall versions 1.0.0 and 2.0.0, and can be exploited remotely without authentication.

💻 Affected Systems

Products:
  • youlaitech youlai-mall
Versions: 1.0.0, 2.0.0
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Affects the /mall-ums/app-api/v1/addresses/ endpoint functions getById, updateAddress, and deleteAddress.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete compromise of user address data including unauthorized viewing, modification, or deletion of sensitive personal information across all users.

🟠

Likely Case

Unauthorized access to or manipulation of user address data, potentially enabling data theft or account takeover.

🟢

If Mitigated

Limited impact if proper input validation and access controls are implemented, restricting exploitation attempts.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploit details have been published and may be actively used. The vulnerability can be exploited remotely without authentication.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: None available

Restart Required: No

Instructions:

No official patch available. Vendor did not respond to disclosure. Consider workarounds or alternative solutions.

🔧 Temporary Workarounds

API Endpoint Restriction

all

Restrict access to the vulnerable /mall-ums/app-api/v1/addresses/ endpoint using web application firewall rules or network access controls.

# Example nginx location block restriction
location /mall-ums/app-api/v1/addresses/ {
    deny all;
    return 403;
}

Input Validation Enhancement

all

Implement strict input validation and parameter binding for the affected getById, updateAddress, and deleteAddress functions.

# Example validation logic
# Ensure ID parameters are properly validated and bound
# Implement proper access control checks before processing requests

🧯 If You Can't Patch

  • Implement network segmentation to isolate the vulnerable application from sensitive systems
  • Deploy a web application firewall with rules to detect and block exploitation attempts

🔍 How to Verify

Check if Vulnerable:

Check if youlai-mall version is 1.0.0 or 2.0.0 and the /mall-ums/app-api/v1/addresses/ endpoint is accessible.

Check Version:

Check application configuration files or deployment manifests for version information.

Verify Fix Applied:

Test the affected endpoints with crafted requests to ensure proper input validation and access controls are in place.

📡 Detection & Monitoring

Log Indicators:

  • Unusual patterns of requests to /mall-ums/app-api/v1/addresses/ endpoint
  • Multiple failed or unusual parameter manipulation attempts

Network Indicators:

  • Abnormal traffic patterns to the addresses API endpoint
  • Requests with manipulated parameter values

SIEM Query:

source="web_logs" AND uri="/mall-ums/app-api/v1/addresses/*" AND (status=200 OR status=400) AND parameter_count>normal_baseline

🔗 References

📤 Share & Export