CVE-2024-13829

5.3 MEDIUM

📋 TL;DR

The Tripetto WordPress plugin has a vulnerability that allows unauthenticated attackers to access files uploaded through forms, including potentially sensitive documents. All WordPress sites using Tripetto versions up to 8.0.8 are affected. This exposes any files users have uploaded through Tripetto forms to public access.

💻 Affected Systems

Products:
  • Tripetto WordPress Plugin
Versions: All versions up to and including 8.0.8
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations with Tripetto plugin enabled are vulnerable by default.

⚠️ 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 download sensitive files containing personal data, financial information, or credentials uploaded by users through forms, leading to data breaches and regulatory violations.

🟠

Likely Case

Attackers systematically scan for vulnerable sites and download all accessible uploaded files, potentially collecting personal information, documents, and other sensitive data.

🟢

If Mitigated

With proper file upload restrictions and sensitive data handling policies, impact is limited to non-sensitive files only.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

The vulnerability is simple to exploit via direct URL access to the attachments.php file with appropriate parameters.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 8.0.9

Vendor Advisory: https://plugins.trac.wordpress.org/changeset/3231968/

Restart Required: No

Instructions:

1. Log into WordPress admin panel
2. Navigate to Plugins → Installed Plugins
3. Find Tripetto plugin
4. Click 'Update Now' if available
5. Or download version 8.0.9+ from WordPress repository
6. Deactivate old version and upload new version
7. Reactivate plugin

🔧 Temporary Workarounds

Disable Tripetto Plugin

all

Temporarily disable the Tripetto plugin until patched

wp plugin deactivate tripetto

Block attachments.php Access

all

Add web server rule to block direct access to vulnerable file

# Apache: Add to .htaccess
<Files "attachments.php">
    Order Allow,Deny
    Deny from all
</Files>
# Nginx: Add to server block
location ~* /attachments\.php$ {
    deny all;
}

🧯 If You Can't Patch

  • Disable Tripetto plugin immediately
  • Implement web application firewall rules to block access to attachments.php

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Tripetto version. If version is 8.0.8 or lower, you are vulnerable.

Check Version:

wp plugin get tripetto --field=version

Verify Fix Applied:

After updating, verify Tripetto version shows 8.0.9 or higher in WordPress plugins list.

📡 Detection & Monitoring

Log Indicators:

  • Multiple 200 OK responses to attachments.php requests
  • Unusual file download patterns from Tripetto directories

Network Indicators:

  • HTTP GET requests to /wp-content/plugins/tripetto/lib/attachments.php with file parameters

SIEM Query:

url:*/attachments.php AND (response_code:200 OR bytes_out>100000)

🔗 References

📤 Share & Export