CVE-2025-32152

7.5 HIGH

📋 TL;DR

This vulnerability allows attackers to include local files on the server through improper filename control in PHP include/require statements. It affects WordPress sites using the Slider a SlidersPack plugin versions up to 2.3, potentially leading to sensitive information disclosure or code execution.

💻 Affected Systems

Products:
  • Slider a SlidersPack WordPress plugin
Versions: n/a through 2.3
Operating Systems: Any OS running WordPress with PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with vulnerable plugin version. PHP configuration (allow_url_include) may affect exploitability.

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

Full server compromise through local file inclusion leading to remote code execution, sensitive file disclosure (like wp-config.php), and complete site takeover.

🟠

Likely Case

Sensitive configuration file disclosure (database credentials, API keys), limited file read access, and potential privilege escalation.

🟢

If Mitigated

Limited impact if file permissions are restrictive and web server runs with minimal privileges, though information disclosure remains possible.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Simple HTTP requests can trigger the vulnerability. Public exploit details available on security research sites.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.4 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/sliderspack-all-in-one-image-sliders/vulnerability/wordpress-slider-a-sliderspack-plugin-2-3-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Slider a SlidersPack' and update to version 2.4+. 4. If update not available, deactivate and delete the plugin.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily deactivate the Slider a SlidersPack plugin until patched version is available

wp plugin deactivate sliderspack-all-in-one-image-sliders

Restrict PHP file inclusion

linux

Configure PHP to disable dangerous functions and restrict file inclusion paths

php_admin_value open_basedir "/var/www/html:/tmp"
php_admin_value allow_url_include Off

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict file permissions and implement least privilege for web server user

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for Slider a SlidersPack version 2.3 or earlier

Check Version:

wp plugin get sliderspack-all-in-one-image-sliders --field=version

Verify Fix Applied:

Verify plugin version is 2.4+ in WordPress admin panel and test file inclusion attempts return errors instead of file contents

📡 Detection & Monitoring

Log Indicators:

  • Unusual file paths in PHP error logs
  • Multiple requests to plugin files with file parameter variations
  • HTTP 200 responses for sensitive file requests

Network Indicators:

  • HTTP requests containing '..' or absolute paths in parameters
  • Requests to wp-content/plugins/sliderspack-all-in-one-image-sliders/ with file parameters

SIEM Query:

source="web_logs" AND (uri_path="*sliderspack*" AND (query="*file=*" OR query="*include=*" OR query="*require=*"))

🔗 References

📤 Share & Export