CVE-2025-57928

5.3 MEDIUM

📋 TL;DR

This Cross-Site Scripting (XSS) vulnerability in the AWP Classifieds WordPress plugin allows attackers to inject malicious scripts into web pages. It affects all WordPress sites using AWP Classifieds versions up to 4.3.5, potentially compromising user sessions and data.

💻 Affected Systems

Products:
  • Strategy11 Team AWP Classifieds WordPress Plugin
Versions: All versions up to and including 4.3.5
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with AWP Classifieds plugin active. No special configuration needed.

⚠️ 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 could steal administrator credentials, deface websites, redirect users to malicious sites, or perform actions on behalf of authenticated users.

🟠

Likely Case

Session hijacking, cookie theft, or displaying malicious content to users who visit compromised pages.

🟢

If Mitigated

Limited to content injection on specific pages with minimal user interaction required for exploitation.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: MEDIUM

Exploitation requires finding vulnerable input fields and crafting appropriate payloads. No public exploit code available.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version 4.3.6 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/another-wordpress-classifieds-plugin/vulnerability/wordpress-awp-classifieds-plugin-4-3-5-content-injection-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'AWP Classifieds' and click 'Update Now'. 4. Verify version is 4.3.6 or higher.

🔧 Temporary Workarounds

Disable Plugin

WordPress

Temporarily disable the AWP Classifieds plugin until patched

wp plugin deactivate another-wordpress-classifieds-plugin

Content Security Policy

all

Implement CSP headers to restrict script execution

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Add to wp-config.php: header("Content-Security-Policy: default-src 'self'; script-src 'self'");

🧯 If You Can't Patch

  • Implement Web Application Firewall (WAF) rules to block XSS payloads
  • Disable user input fields or implement strict input validation on all forms

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > AWP Classifieds version number

Check Version:

wp plugin get another-wordpress-classifieds-plugin --field=version

Verify Fix Applied:

Verify plugin version is 4.3.6 or higher in WordPress admin

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests with script tags or JavaScript in parameters
  • Multiple failed XSS attempts in web server logs

Network Indicators:

  • HTTP requests containing <script>, javascript:, or encoded payloads in URL parameters

SIEM Query:

source="web_logs" AND ("<script>" OR "javascript:" OR "%3Cscript%3E") AND uri_path="/wp-content/plugins/another-wordpress-classifieds-plugin/"

🔗 References

📤 Share & Export