CVE-2025-60051

8.2 HIGH

📋 TL;DR

This vulnerability allows attackers to include local files on the server through PHP's include/require statements in the Rare Radio WordPress theme. Attackers can potentially read sensitive files or execute arbitrary code. All WordPress sites using Rare Radio theme version 1.0.15.1 or earlier are affected.

💻 Affected Systems

Products:
  • AncoraThemes Rare Radio WordPress Theme
Versions: All versions up to and including 1.0.15.1
Operating Systems: Any OS running PHP and WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Rare Radio theme active; PHP configuration with allow_url_include disabled does not prevent local file inclusion

⚠️ 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 server compromise, data theft, and website defacement

🟠

Likely Case

Sensitive file disclosure (configuration files, database credentials) and limited code execution

🟢

If Mitigated

File read attempts logged but blocked by proper file permissions and input validation

🌐 Internet-Facing: HIGH - WordPress themes are typically internet-facing and accessible to unauthenticated users
🏢 Internal Only: MEDIUM - Internal systems could still be vulnerable to authenticated attacks or insider threats

🎯 Exploit Status

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

Simple path traversal or file inclusion payloads can exploit this; exploit code is publicly available

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.0.15.1

Vendor Advisory: https://patchstack.com/database/Wordpress/Theme/rareradio/vulnerability/wordpress-rare-radio-theme-1-0-15-1-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel
2. Navigate to Appearance > Themes
3. Check for Rare Radio theme updates
4. Update to latest version
5. If no update available, replace with alternative theme

🔧 Temporary Workarounds

Disable vulnerable theme

all

Switch to default WordPress theme to immediately remove vulnerability

wp theme activate twentytwentyfour
wp theme delete rareradio

Restrict PHP file operations

linux

Modify PHP configuration to restrict file inclusion

echo 'php_admin_value open_basedir /var/www/html' >> .htaccess

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict file permissions and implement strict input validation in theme files

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Appearance > Themes for Rare Radio version 1.0.15.1 or earlier

Check Version:

wp theme list --field=version --name=rareradio

Verify Fix Applied:

Verify theme version is greater than 1.0.15.1 in WordPress admin or via wp-cli: wp theme list --field=version --name=rareradio

📡 Detection & Monitoring

Log Indicators:

  • Unusual file paths in PHP error logs
  • Multiple 404 errors for non-existent theme files
  • Requests containing '../' or file inclusion patterns

Network Indicators:

  • HTTP requests with file path parameters to theme files
  • Unusual file extensions in URL parameters

SIEM Query:

source="web_logs" AND (url="*../*" OR url="*php://*" OR url="*include=*" OR url="*require=*") AND url="*rareradio*"

🔗 References

📤 Share & Export