CVE-2026-9612
Received Received - Intake
Sensitive Information Exposure in WhatsOrder WooCommerce Plugin

Publication date: 2026-06-24

Last updated on: 2026-06-24

Assigner: Wordfence

Description
The WhatsOrder – Instant Checkout for WooCommerce plugin for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 1.0.1 via the yapacdev_generate_order_pdf. This makes it possible for unauthenticated attackers to extract sensitive customer PII and order details β€” including full name, email address, phone number, billing address, ordered items with quantities and prices, applied coupons, shipping method, and order total β€” from any customer's invoice by enumerating sequential order IDs. Invoice HTML files are written to the publicly accessible wp-content/uploads/whatsorder_invoices/ directory, which is created without an .htaccess deny rule or index.php guard, making every invoice directly downloadable over HTTP with no authentication check.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-24
Last Modified
2026-06-24
Generated
2026-06-24
AI Q&A
2026-06-24
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
yapacdev whatsorder to 1.0.1 (inc)
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-200 The product exposes sensitive information to an actor that is not explicitly authorized to have access to that information.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Executive Summary

The WhatsOrder – Instant Checkout for WooCommerce plugin for WordPress has a vulnerability in all versions up to and including 1.0.1. This vulnerability allows unauthenticated attackers to access sensitive customer information by exploiting the yapacdev_generate_order_pdf function.

Attackers can enumerate sequential order IDs to download invoice HTML files containing personal and order details such as full name, email address, phone number, billing address, ordered items with quantities and prices, applied coupons, shipping method, and order total.

These invoice files are stored in a publicly accessible directory (wp-content/uploads/whatsorder_invoices/) without any access restrictions like .htaccess deny rules or index.php guards, making them directly downloadable over HTTP without authentication.

Impact Analysis

This vulnerability can lead to unauthorized disclosure of sensitive customer personally identifiable information (PII) and order details.

  • Exposure of full names, email addresses, phone numbers, and billing addresses.
  • Disclosure of order details including items ordered, quantities, prices, applied coupons, shipping methods, and order totals.

Such exposure can result in privacy violations, identity theft risks, and loss of customer trust.

Detection Guidance

This vulnerability can be detected by checking if the publicly accessible directory wp-content/uploads/whatsorder_invoices/ exists and contains invoice HTML files that can be accessed without authentication.

You can attempt to enumerate sequential order IDs by accessing URLs like http://yourdomain.com/wp-content/uploads/whatsorder_invoices/{order_id}.html to see if invoice files are downloadable.

A simple command to test this could be using curl or wget to try to download invoice files by iterating over order IDs.

  • curl -I http://yourdomain.com/wp-content/uploads/whatsorder_invoices/1.html
  • curl -I http://yourdomain.com/wp-content/uploads/whatsorder_invoices/2.html
  • for i in {1..100}; do curl -I http://yourdomain.com/wp-content/uploads/whatsorder_invoices/$i.html; done
Mitigation Strategies

Immediate mitigation steps include restricting public access to the wp-content/uploads/whatsorder_invoices/ directory by adding an .htaccess deny rule or placing an index.php guard to prevent direct HTTP access to invoice files.

Additionally, updating the WhatsOrder plugin to a version later than 1.0.1, if available, or disabling the plugin until a patch is released will help prevent exploitation.

Reviewing and limiting the exposure of sensitive customer information in publicly accessible locations is critical.

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