CVE-2023-49742

9.9 CRITICAL

📋 TL;DR

This vulnerability in the Support Genix WordPress plugin allows attackers to upload arbitrary files without proper authorization. It affects all WordPress sites running Support Genix versions up to 1.2.3, potentially leading to remote code execution.

💻 Affected Systems

Products:
  • Support Genix WordPress Plugin
Versions: n/a through 1.2.3
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Affects WordPress installations with the Support Genix plugin enabled.

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

Remote code execution leading to complete system compromise, data theft, and website defacement.

🟠

Likely Case

Malicious file upload leading to backdoor installation, malware distribution, or credential theft.

🟢

If Mitigated

Limited impact with proper file upload restrictions and web application firewalls in place.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires sending crafted HTTP requests to vulnerable endpoints.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.2.4 or later

Vendor Advisory: https://patchstack.com/database/vulnerability/support-genix-lite/wordpress-support-genix-plugin-1-2-3-broken-access-control-lead-to-arbitrary-file-upload-vulnerability

Restart Required: No

Instructions:

1. Log into WordPress admin panel
2. Navigate to Plugins > Installed Plugins
3. Find Support Genix plugin
4. Click 'Update Now' if available
5. If no update available, deactivate and delete the plugin
6. Install version 1.2.4 or later from WordPress repository

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the Support Genix plugin until patched

wp plugin deactivate support-genix-lite

Restrict File Uploads

linux

Configure web server to block file uploads to vulnerable endpoints

# Add to .htaccess for Apache:
<FilesMatch "\.(php|phtml|php3|php4|php5|php7|phps|php8|inc|pl|py|jsp|asp|aspx|sh|cgi|exe)$">
    Order Allow,Deny
    Deny from all
</FilesMatch>

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file upload attempts
  • Disable the Support Genix plugin entirely and use alternative solutions

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Support Genix version. If version is 1.2.3 or earlier, you are vulnerable.

Check Version:

wp plugin get support-genix-lite --field=version

Verify Fix Applied:

Verify plugin version is 1.2.4 or later in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • POST requests to /wp-content/plugins/support-genix-lite/ endpoints with file uploads
  • Unusual file uploads to plugin directories
  • PHP/executable files in upload directories

Network Indicators:

  • HTTP POST requests with file uploads to Support Genix endpoints
  • Unusual outbound connections from web server

SIEM Query:

source="web_logs" AND (uri_path="/wp-content/plugins/support-genix-lite/" AND http_method="POST" AND content_type="multipart/form-data")

🔗 References

📤 Share & Export