CVE-2025-1464
📋 TL;DR
This critical SQL injection vulnerability in Baiyi Cloud Asset Management System allows remote attackers to execute arbitrary SQL commands via the project_id parameter in /wuser/admin.house.collect.php. This could lead to data theft, modification, or deletion. All systems running affected versions are vulnerable.
💻 Affected Systems
- Baiyi Cloud Asset Management System
⚠️ 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.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- Consider updating to the latest version as a precaution
⚠️ Risk & Real-World Impact
Worst Case
Complete database compromise including sensitive data exfiltration, administrative account takeover, and potential system destruction
Likely Case
Unauthorized data access and manipulation of asset management records
If Mitigated
Limited impact with proper input validation and database permissions
🎯 Exploit Status
Exploit details are publicly available on GitHub, making this easily exploitable
🛠️ 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
Input Validation Filter
allImplement strict input validation for project_id parameter to allow only expected data types
WAF Rule Implementation
allDeploy web application firewall rules to block SQL injection patterns targeting the vulnerable endpoint
🧯 If You Can't Patch
- Isolate the system from internet access and restrict to internal network only
- Implement network segmentation and strict access controls to limit who can reach the vulnerable endpoint
🔍 How to Verify
Check if Vulnerable:
Check if /wuser/admin.house.collect.php exists and accepts project_id parameter. Test with SQL injection payloads in controlled environment.
Check Version:
Check system version in admin panel or configuration files
Verify Fix Applied:
Test the endpoint with SQL injection payloads to ensure they are properly rejected or sanitized
📡 Detection & Monitoring
Log Indicators:
- Unusual SQL queries in database logs
- Multiple failed login attempts following SQL injection patterns
- Requests to /wuser/admin.house.collect.php with suspicious project_id values
Network Indicators:
- Unusual outbound database connections from web server
- SQL error messages in HTTP responses
SIEM Query:
source="web_logs" AND uri="/wuser/admin.house.collect.php" AND (query_string CONTAINS "project_id" AND (query_string CONTAINS "' OR" OR query_string CONTAINS "--" OR query_string CONTAINS "UNION"))