CVE-2026-1036

5.3 MEDIUM

📋 TL;DR

This vulnerability in the Photo Gallery by 10WordPress plugin allows unauthenticated attackers to delete arbitrary image comments due to missing capability checks. Only users of the Pro version with comments functionality enabled are affected, but all versions up to 1.8.36 are vulnerable.

💻 Affected Systems

Products:
  • Photo Gallery by 10Web – Mobile-Friendly Image Gallery WordPress plugin
Versions: All versions up to and including 1.8.36
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects Pro version users who have enabled comments functionality. Free version is not affected.

⚠️ 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 delete all image comments, disrupting user engagement and potentially removing important feedback or moderation content.

🟠

Likely Case

Spammers or malicious actors delete legitimate comments to disrupt gallery functionality or remove evidence of previous malicious activity.

🟢

If Mitigated

Minimal impact if comments are not critical to operations or if proper backups exist.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

Simple HTTP request manipulation can trigger the vulnerability without authentication.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.8.37 or later

Vendor Advisory: https://wordpress.org/plugins/photo-gallery/#developers

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Photo Gallery by 10Web'. 4. Click 'Update Now' if available. 5. If no update appears, download version 1.8.37+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable Comments

all

Temporarily disable comments functionality in the plugin settings

Deactivate Plugin

all

Deactivate the plugin until patched

🧯 If You Can't Patch

  • Implement web application firewall rules to block unauthorized DELETE requests to gallery endpoints
  • Restrict access to the WordPress admin area using IP whitelisting

🔍 How to Verify

Check if Vulnerable:

Check plugin version in WordPress admin under Plugins > Installed Plugins. If version is 1.8.36 or lower and Pro version with comments enabled, system is vulnerable.

Check Version:

wp plugin get photo-gallery --field=version (if WP-CLI installed)

Verify Fix Applied:

Confirm plugin version is 1.8.37 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual DELETE requests to /wp-admin/admin-ajax.php with action=bwg_delete_comment
  • Multiple comment deletions from unauthenticated IPs

Network Indicators:

  • HTTP POST requests to admin-ajax.php with delete_comment parameters from external IPs

SIEM Query:

source="wordpress.log" AND "bwg_delete_comment" AND status=200 AND NOT user_agent="WordPress/*"

🔗 References

📤 Share & Export