CVE-2016-20065
Deferred Deferred - Pending Action
SQL Injection in Product Catalog 8 WordPress Plugin

Publication date: 2026-06-09

Last updated on: 2026-06-09

Assigner: VulnCheck

Description
Product Catalog 8 1.2 plugin for WordPress contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the selectedCategory parameter. Attackers can submit POST requests to the admin-ajax.php endpoint with the UpdateCategoryList action to extract sensitive database information from WordPress tables.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-09
Last Modified
2026-06-09
Generated
2026-06-09
AI Q&A
2026-06-09
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 2 associated CPEs
Vendor Product Version / Range
evwill product_catalog_8 to 1.2.0 (exc)
evwill product_catalog_8 to 1.2.0 (inc)
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-89 The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Impact Analysis

This vulnerability can have serious impacts including unauthorized access to sensitive database information stored in WordPress tables.

Since the vulnerability allows execution of arbitrary SQL queries without authentication, attackers can extract confidential data, potentially leading to data breaches.

The high CVSS score (8.8) indicates a critical risk, meaning exploitation could compromise the confidentiality of your data and possibly affect the integrity of your database.

Executive Summary

The Product Catalog 8 version 1.2 plugin for WordPress contains a high-severity SQL injection vulnerability. This flaw allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the selectedCategory parameter.

Attackers exploit this vulnerability by sending specially crafted POST requests to the admin-ajax.php endpoint with the UpdateCategoryList action. This enables them to extract sensitive information from the WordPress database tables.

The vulnerability is due to improper input sanitization of the selectedCategory parameter, classified under CWE-89 for improper neutralization of SQL commands.

Detection Guidance

This vulnerability can be detected by monitoring for malicious POST requests sent to the admin-ajax.php endpoint with the UpdateCategoryList action, specifically those containing suspicious SQL injection payloads in the selectedCategory parameter.

A practical detection method is to capture and analyze HTTP POST traffic targeting admin-ajax.php and look for unusual or crafted SQL queries in the selectedCategory field.

  • Use network traffic analysis tools like tcpdump or Wireshark to filter POST requests to admin-ajax.php.
  • Example tcpdump command to capture relevant traffic: tcpdump -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' | grep 'POST /wp-admin/admin-ajax.php'
  • Use grep or similar tools on web server logs to find POST requests with the UpdateCategoryList action and inspect the selectedCategory parameter for suspicious SQL syntax, e.g., UNION SELECT.
Compliance Impact

The SQL injection vulnerability in the Product Catalog 8 1.2 plugin for WordPress allows unauthenticated attackers to extract sensitive database information from WordPress tables. This exposure of sensitive data can lead to non-compliance with data protection regulations such as GDPR and HIPAA, which require the protection of personal and sensitive information against unauthorized access.

Since attackers can execute arbitrary SQL queries and extract sensitive information, organizations using this vulnerable plugin may face risks related to data breaches, which are subject to strict reporting and remediation requirements under these regulations.

Mitigation Strategies

Immediate mitigation steps include disabling or removing the vulnerable Product Catalog 8 plugin version 1.2.0 or below from your WordPress installation.

Since the plugin was removed from the WordPress Plugin Directory and no vendor updates are available, it is recommended to uninstall the plugin entirely to eliminate the attack surface.

Additionally, monitor and restrict access to the admin-ajax.php endpoint, especially POST requests with the UpdateCategoryList action, to prevent exploitation.

Implement web application firewall (WAF) rules to detect and block SQL injection attempts targeting the selectedCategory parameter.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2016-20065. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart