Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

2587+ Articles
161+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. Security
  3. Total Processing Card Payments for WooCommerce: Unauthenticated SSRF Enables Payment Verification Forgery
Total Processing Card Payments for WooCommerce: Unauthenticated SSRF Enables Payment Verification Forgery

Critical Security Alert

This vulnerability is actively being exploited. Immediate action is recommended.

SECURITYCRITICALCVE-2026-16947

Total Processing Card Payments for WooCommerce: Unauthenticated SSRF Enables Payment Verification Forgery

CVE-2026-16947 (CVSS 9.1) lets attackers redirect payment verification requests and forge success responses on WooCommerce stores.

Dylan H.

Security Team

August 29, 2026
5 min read

Affected Products

  • Total processing card payments for WooCommerce plugin through 7.3

Executive Summary

CVE-2026-16947 affects the Total processing card payments for WooCommerce plugin (versions through 7.3) and carries a CVSS score of 9.1. The plugin builds a server-side payment-verification request using a user-supplied path that is never validated, and it does not check that the response it receives actually came from the expected payment gateway. That combination lets an unauthenticated attacker redirect the verification request to a server they control and return a forged "success" response — potentially allowing orders to be marked as paid without a legitimate transaction, and exposing the store's outbound verification request (which may carry gateway credentials) to an attacker-controlled endpoint.

CVSS Score: 9.1 (Critical)

There is no patched version available as of this advisory.


Vulnerability Overview

AttributeValue
CVE IDCVE-2026-16947
CVSS Score9.1 (Critical)
TypeServer-Side Request Forgery (SSRF)
Attack VectorNetwork
Privileges RequiredNone
User InteractionNone
Root CauseUnvalidated user-supplied path used in server-side verification request; response authenticity not checked

Affected Versions

ProductAffected VersionsRecommendation
Total processing card payments for WooCommerceAll versions through 7.3No fix available — disable the plugin or restrict outbound requests until patched

Technical Details

The plugin's checkout flow performs a server-side call to verify that a card payment was actually approved by the payment gateway before marking a WooCommerce order as paid. Two separate flaws combine to break that trust boundary:

  1. Unvalidated destination path. The path used to build the outbound verification request is taken from user-controllable input without being checked against an allowlist of legitimate gateway endpoints — the classic ingredient for SSRF.
  2. No response authenticity check. After the request is sent, the plugin does not verify that the response actually originated from the real payment gateway (e.g. no signature or shared-secret validation) — it simply trusts whatever comes back.

Chained together, an attacker can point the verification request at a server they control and return a fabricated "payment approved" response, all without needing an account on the store. Because the request is issued from the store's own server, this also exposes the request's headers and payload — potentially including gateway API keys or merchant identifiers — to whatever endpoint the attacker directs it toward, in addition to any internal-network reconnaissance an SSRF vector on a hosting server normally enables.

Attack Vector

1. Attacker submits a checkout request that manipulates the verification path
2. Store server builds a payment-verification call using the attacker-supplied path
3. Request is sent to the attacker-controlled destination instead of the real gateway
4. Attacker's server returns a forged "approved" response
5. Plugin accepts the response without checking its authenticity
6. Order is marked as paid without an actual successful transaction

Impact of Successful Exploitation

ImpactDescription
Payment FraudOrders can be marked "paid" without a genuine transaction, resulting in direct financial loss
Credential/Data ExposureOutbound verification requests directed to attacker infrastructure may leak gateway credentials or request metadata
Internal Network ProbingSSRF from the store's server can be used to probe internal services reachable from the hosting environment
No Authentication NeededExploitation requires no account and no user interaction from store staff

Immediate Remediation

Step 1: Check Exposure

wp plugin list --status=active | grep -i "totalprocessing\|total-processing\|total processing"

Step 2: Mitigate Until Patched

Because no fixed version currently exists:

  1. Deactivate the plugin if the store cannot tolerate forged-payment risk, and process card payments through an alternative verified gateway integration in the meantime.
  2. Audit recent orders marked as paid for ones lacking a corresponding legitimate transaction in the actual payment gateway's dashboard.
  3. Restrict outbound server requests at the hosting/firewall level to an allowlist of known payment-gateway hostnames if the plugin must remain active temporarily.

If Immediate Removal Is Not Possible

  1. Monitor order status changes against the payment gateway's own transaction records for mismatches.
  2. Flag and manually verify any order marked "paid" without a matching gateway transaction ID before fulfillment.
  3. Rotate any gateway API credentials that may have been exposed via forged verification traffic.

Detection Indicators

IndicatorDescription
Orders marked paid with no matching transaction in the gateway dashboardDirect sign of exploitation
Outbound verification requests to unfamiliar hostnames in server logsEvidence of SSRF redirection
Spikes in checkout attempts with malformed or unusual path parametersPossible exploitation attempts in progress

Post-Remediation Steps

  1. Reconcile all "paid" orders against actual gateway transaction records since the plugin was installed.
  2. Rotate payment gateway credentials if exposure to attacker-controlled infrastructure cannot be ruled out.
  3. Restrict outbound requests from the store server to only the payment gateway's known endpoints.
  4. Track NVD/WPScan for a patched release before re-enabling full functionality.

References

  • NVD — CVE-2026-16947
  • WPScan Vulnerability Database — Total processing card payments for WooCommerce ≤ 7.3 Unauthenticated SSRF
#WordPress#WooCommerce#CVE-2026-16947#SSRF#Payment Security

Related Articles

Funnel Builder WordPress Plugin Bug Exploited to Steal

A critical vulnerability in the Funnel Builder plugin for WordPress is being actively exploited to inject malicious JavaScript into WooCommerce checkout...

6 min read

CVE-2026-14182: WooCommerce Email Verification Bypass Allows Account Takeover

A CVSS 9.8 type juggling flaw in Customer Email Verification for WooCommerce lets unauthenticated attackers take over any customer account.

5 min read

CVE-2026-78003: Critical SSRF via Path Traversal in Mailgun for WordPress Plugin

A critical SSRF vulnerability (CVSS 9.8) in Mailgun for WordPress ≤ 2.2.0 lets unauthenticated attackers make server-side requests via path traversal.

4 min read
Back to all Security Alerts