CVE-2023-47826

6.5 MEDIUM

📋 TL;DR

This CVE describes a missing authorization vulnerability in the NicheAddons Restaurant & Cafe Addon for Elementor WordPress plugin. It allows attackers to bypass access controls and potentially perform unauthorized actions. All WordPress sites using affected versions of this plugin are vulnerable.

💻 Affected Systems

Products:
  • NicheAddons Restaurant & Cafe Addon for Elementor
Versions: n/a through 1.5.3
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with this specific Elementor addon plugin installed and activated.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could modify restaurant menus, change pricing, alter reservations, or potentially inject malicious content into the website.

🟠

Likely Case

Unauthorized users could modify restaurant content, change operational details, or deface parts of the website.

🟢

If Mitigated

With proper access controls and authentication checks, only authorized administrators could modify restaurant content.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Missing authorization vulnerabilities typically require minimal technical skill to exploit once the attack vector is identified.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.5.4 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/restaurant-cafe-addon-for-elementor/vulnerability/wordpress-restaurant-cafe-addon-for-elementor-plugin-1-5-3-broken-access-control-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel
2. Navigate to Plugins → Installed Plugins
3. Find 'Restaurant & Cafe Addon for Elementor'
4. Click 'Update Now' if update is available
5. Alternatively, download version 1.5.4+ from WordPress repository and manually update

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate restaurant-cafe-addon-for-elementor

Restrict Access

linux

Implement IP whitelisting for WordPress admin area

# Add to .htaccess for Apache:
Order Deny,Allow
Deny from all
Allow from 192.168.1.0/24
Allow from 10.0.0.0/8

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block unauthorized access to plugin endpoints
  • Enable detailed logging and monitoring for unauthorized access attempts to restaurant/cafe functionality

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for 'Restaurant & Cafe Addon for Elementor' version

Check Version:

wp plugin get restaurant-cafe-addon-for-elementor --field=version

Verify Fix Applied:

Verify plugin version is 1.5.4 or higher in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized POST requests to /wp-admin/admin-ajax.php with restaurant/cafe related actions
  • Multiple failed authentication attempts followed by successful restaurant content modifications

Network Indicators:

  • Unusual traffic patterns to restaurant/cafe specific endpoints from unauthenticated users

SIEM Query:

source="wordpress.log" AND ("restaurant" OR "cafe" OR "menu" OR "reservation") AND status=200 AND user="unauthenticated"

🔗 References

📤 Share & Export