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.

2233+ Articles
157+ 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. CVE-2026-12713: Critical SQL Injection in WPCargo Track & Trace Plugin
CVE-2026-12713: Critical SQL Injection in WPCargo Track & Trace Plugin

Critical Security Alert

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

SECURITYCRITICALCVE-2026-12713

CVE-2026-12713: Critical SQL Injection in WPCargo Track & Trace Plugin

An unauthenticated SQL injection vulnerability (CVSS 9.1) in the WPCargo Track & Trace WordPress plugin before version 8.0.4 allows attackers to read and manipulate database contents without any credentials.

Dylan H.

Security Team

August 6, 2026
4 min read

Affected Products

  • WPCargo Track & Trace Plugin < 8.0.4

Executive Summary

A critical unauthenticated SQL injection vulnerability (CVE-2026-12713) has been disclosed in the WPCargo Track & Trace plugin for WordPress. Discovered and published via NIST NVD, the flaw exists in a code path separate from the previously patched CVE-2024-44004, meaning sites that updated for the prior advisory remain vulnerable until they apply version 8.0.4.

CVSS Score: 9.1 (Critical)

With no authentication required, a remote attacker can craft malicious requests to read, modify, or exfiltrate data from the underlying WordPress database. Shipping and logistics operators relying on this plugin for order tracking are at particular risk.


Vulnerability Overview

AttributeValue
CVE IDCVE-2026-12713
CVSS Score9.1 (Critical)
TypeUnauthenticated SQL Injection
Attack VectorNetwork (no authentication required)
Privileges RequiredNone
User InteractionNone
ScopeDatabase read / write
Prior Related CVECVE-2024-44004 (separate code path)

Affected Versions

PluginAffected VersionsFixed Version
WPCargo Track & Trace< 8.0.48.0.4

Important: Sites that patched CVE-2024-44004 are still vulnerable — this flaw is in a distinct code path not addressed by that fix.


Technical Details

The vulnerability stems from insufficient sanitization and escaping of a user-supplied parameter before it is interpolated into a SQL query. Because the affected endpoint requires no authentication, an attacker can send a crafted HTTP request directly to the vulnerable parameter without needing any WordPress account.

Attack Flow:
1. Attacker identifies WordPress site running WPCargo Track & Trace < 8.0.4
2. Attacker crafts HTTP request targeting the unsanitized parameter
3. Malicious SQL payload injected into the live database query
4. Attacker enumerates: database schema, user credentials, order data
5. Depending on DB permissions — data modification or exfiltration proceeds

Potential Impact

ImpactDescription
Data ExfiltrationFull read access to WordPress database contents
Credential Theftwp_users table — hashed passwords, email addresses
Order ManipulationTamper with shipment tracking records
Account TakeoverPassword hash cracking → admin access
PersistenceInject malicious content or backdoor accounts

Immediate Remediation

Step 1: Update to 8.0.4

# Via WP-CLI
wp plugin update wpcargo
 
# Verify installed version
wp plugin get wpcargo --field=version

Or update through WordPress admin: Plugins > Installed Plugins > WPCargo Track & Trace > Update Now.

Step 2: Verify Both CVEs Are Patched

# Confirm version is 8.0.4 or later
wp plugin list --name=wpcargo --fields=name,version,status

Version 8.0.4 addresses both CVE-2024-44004 and CVE-2026-12713. Sites on any earlier version are exposed to at least one of these injection paths.

Step 3: Check for Exploitation Evidence

# Review recent access logs for suspicious GET/POST patterns to WPCargo endpoints
grep -i "wpcargo\|track" /var/log/nginx/access.log | grep -E "UNION|SELECT|FROM|information_schema" | tail -50
 
# Audit recent admin account changes
wp user list --role=administrator --fields=ID,user_login,user_registered,user_email

Step 4: Rotate Credentials If Compromise Is Suspected

# Generate new WordPress security keys
wp config shuffle-salts
 
# Reset admin password
wp user update 1 --user_pass="$(openssl rand -base64 32)"

Detection Indicators

IndicatorDescription
Unexpected UNION SELECT in URL parametersActive SQLi exploitation attempt
Unusual outbound traffic from web serverData exfiltration post-exploitation
New administrator accountsPost-exploitation persistence
Modified tracking recordsDatabase tampering via SQL injection
Error log entries referencing WPCargoFailed injection attempts or plugin errors

Workaround (If Immediate Patching Is Blocked)

If you cannot update immediately:

  1. Deactivate the WPCargo plugin until patching is possible
  2. Block external access to WPCargo tracking endpoints at your WAF or Nginx level
  3. Enable query logging to monitor for injection patterns
  4. Deploy a WAF rule targeting SQL keywords in WPCargo-related request paths

Post-Remediation Checklist

  • Plugin updated to version 8.0.4 or later
  • wp core verify-checksums — WordPress core integrity confirmed
  • Access logs reviewed for historical exploitation
  • No unauthorized administrator accounts present
  • Database credentials rotated (if compromise suspected)
  • WordPress security keys regenerated
  • WAF or Wordfence/Sucuri deployed for ongoing monitoring

References

  • NIST NVD — CVE-2026-12713
  • NIST NVD — CVE-2024-44004 (related prior advisory)

Related Reading

  • Critical RCE in WPvivid Backup Plugin Threatens 900,000+
  • WordPress Plugin Vulnerability (CVSS 10.0) Under Active Exploitation
  • CVE-2026-3589: WooCommerce CSRF Flaw Allows Unauthenticated Admin Takeover
#CVE#WordPress#SQL Injection#WPCargo#NVD#Unauthenticated#Web Security

Related Articles

CVE-2026-12877: Critical SQL Injection in WordPress Project Management Plugin

An unauthenticated SQL injection flaw with a CVSS score of 9.1 affects the Project Management, Bug and Issue Tracking Plugin for WordPress before version...

3 min read

CVE-2026-16152: SQL Injection in SourceCodester Class and Exam Timetabling System

A remotely exploitable SQL injection vulnerability has been disclosed in SourceCodester Class and Exam Timetabling System 1.0. The flaw in /edit_rooma.php...

2 min read

CVE-2026-16154: SQL Injection in SourceCodester Timetabling Room Management

A second SQL injection vulnerability in SourceCodester Class and Exam Timetabling System 1.0 has been disclosed, this time affecting the /edit_room1.php...

2 min read
Back to all Security Alerts