CVE-2024-51992

4.1 MEDIUM

📋 TL;DR

This vulnerability in Orchid Platform exposes dangerous methods in the Screen class through asynchronous modal functionality, allowing attackers to call arbitrary methods. Affected users are those running Orchid Platform versions 8 through 14.42.x for Laravel back-office applications. Exploitation could lead to database brute forcing, credential validation checks, and server IP disclosure.

💻 Affected Systems

Products:
  • Orchid Platform
Versions: 8 through 14.42.x
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Affects Laravel applications using Orchid Platform for back-office/admin panels. The vulnerability is present in default configurations.

⚠️ 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

Attackers could brute force database tables to extract sensitive data, validate user credentials to identify valid accounts, and discover the server's real IP address for further targeting.

🟠

Likely Case

Unauthorized access to application methods leading to information disclosure about database structure and server configuration, potentially enabling credential validation attacks.

🟢

If Mitigated

With proper middleware validation, only approved methods and parameters would be accessible, preventing exploitation while maintaining functionality.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

The advisory describes the attack vector clearly, making exploitation straightforward for attackers familiar with the platform.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 14.43.0

Vendor Advisory: https://github.com/orchidsoftware/platform/security/advisories/GHSA-cm46-gqf4-mv4f

Restart Required: Yes

Instructions:

1. Update composer.json to require orchid/platform: ^14.43.0. 2. Run composer update orchid/platform. 3. Clear Laravel cache: php artisan cache:clear. 4. Restart your web server/application.

🔧 Temporary Workarounds

Middleware Validation

all

Implement middleware to intercept and validate requests to asynchronous modal endpoints, allowing only approved methods and parameters.

🧯 If You Can't Patch

  • Implement strict middleware validation for all asynchronous modal endpoints
  • Restrict access to affected endpoints using network controls or WAF rules

🔍 How to Verify

Check if Vulnerable:

Check your composer.lock file for orchid/platform version between 8.0.0 and 14.42.x

Check Version:

composer show orchid/platform | grep versions

Verify Fix Applied:

Verify composer.lock shows orchid/platform version 14.43.0 or higher

📡 Detection & Monitoring

Log Indicators:

  • Unusual requests to asynchronous modal endpoints
  • Requests with unexpected method parameters
  • Increased error logs from Screen class methods

Network Indicators:

  • HTTP requests to /async-modal endpoints with unusual parameters
  • Patterns of requests attempting to call various Screen methods

SIEM Query:

web_access_logs WHERE uri_path LIKE '%async-modal%' AND (http_method NOT IN ('GET','POST') OR parameter_count > expected_threshold)

🔗 References

📤 Share & Export