CVE-2024-43409

6.5 MEDIUM

📋 TL;DR

Ghost CMS versions 4.46.0 through 5.89.4 have improper authentication on certain member action endpoints, allowing attackers to perform member-only actions and access member information without proper credentials. This affects all Ghost installations running vulnerable versions, particularly those with member functionality enabled.

💻 Affected Systems

Products:
  • Ghost CMS
Versions: v4.46.0 through v5.89.4
Operating Systems: All platforms running Node.js
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects installations with member functionality enabled. Self-hosted Ghost instances are vulnerable; Ghost(Pro) managed hosting is automatically patched.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could access sensitive member data (emails, profiles, subscription info), modify member accounts, or perform unauthorized actions that should require member authentication.

🟠

Likely Case

Unauthorized access to member information and ability to perform basic member actions without authentication.

🟢

If Mitigated

With proper network segmentation and access controls, impact limited to member data exposure rather than administrative compromise.

🌐 Internet-Facing: HIGH - Ghost CMS instances are typically internet-facing content management systems, making them directly accessible to attackers.
🏢 Internal Only: MEDIUM - Internal instances still vulnerable but attack surface reduced compared to internet-facing deployments.

🎯 Exploit Status

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

The vulnerability involves improper authentication checks, making exploitation straightforward once vulnerable endpoints are identified.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: v5.89.5

Vendor Advisory: https://github.com/TryGhost/Ghost/security/advisories/GHSA-78x2-cwp9-5j42

Restart Required: Yes

Instructions:

1. Backup your Ghost installation and database. 2. Update Ghost using npm: 'npm install ghost@5.89.5'. 3. Restart the Ghost service: 'ghost restart'. 4. Verify the update with 'ghost version'.

🔧 Temporary Workarounds

Disable Member Functionality

all

Temporarily disable member features to prevent exploitation while planning upgrade

Edit config.production.json and set "members": false

Web Application Firewall Rules

all

Block access to member-specific endpoints at the WAF/load balancer level

Add WAF rules to block /members/* and /api/members/* endpoints

🧯 If You Can't Patch

  • Implement strict network access controls to limit Ghost instance exposure
  • Enable detailed logging and monitoring for unauthorized access to member endpoints

🔍 How to Verify

Check if Vulnerable:

Check Ghost version with 'ghost version' or in package.json. If version is between 4.46.0 and 5.89.4 inclusive, you are vulnerable.

Check Version:

ghost version

Verify Fix Applied:

After updating, verify version is 5.89.5 or higher with 'ghost version'. Test member authentication functionality works correctly.

📡 Detection & Monitoring

Log Indicators:

  • Unauthenticated requests to member endpoints returning 200 OK
  • Member actions from unexpected IP addresses or without session tokens

Network Indicators:

  • HTTP requests to /members/* or /api/members/* endpoints without authentication headers

SIEM Query:

source="ghost" AND (uri_path="/members/*" OR uri_path="/api/members/*") AND http_status=200 AND NOT (auth_token EXISTS)

🔗 References

📤 Share & Export