Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2025-10046 — exploit SQL injection ELEX WooCommerce Google Shopping | Kitploit
Tools/GitHubGitHub/bytereaper77/cve-2025-10046
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration TestingDatabase SecurityArchived
GitHubbytereaper77/cve-2025-10046

CVE-2025-10046

exploit SQL injection ELEX WooCommerce Google Shopping

View Repository
661 year agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2025-10046 - ELEX WooCommerce Google Shopping

Author: Byte Reaper

Description

CVE-2025-10046 is a SQL injection vulnerability in the ELEX WooCommerce Google Shopping (Product Feed) plugin for WordPress, versions 1.4.3 and earlier. The issue resides in the includes/elex-manage-feed-ajax.php file, where the file_to_delete parameter is not properly sanitized before being used in SQL queries.

Attack vector: Authenticated (Administrator)

Impact: An attacker with administrator privileges could inject arbitrary SQL statements, potentially leading to database information disclosure or tampering.

Severity: High (Requires administrator privileges, but may compromise database integrity).

Requirements :

root@kitploit:~
Linux x86_64
GCC 

Code Logic (elex-manage-feed-ajax.php)

Logic Code

This image shows the code area in the elex-manage-feed-ajax.php file that is vulnerable to SQL injection. The sanitize_text_field() function is applied first to sanitize user input from suspicious HTML tags and ensure proper Unicode formatting, but this is not sufficient to prevent SQL injection. Next, a global object is used to access the table, and the code calls directly without using properly prepared statements or other validation methods. The SQL statement executes user input on the database, and since is not strictly validated, this allows SQL injection to be effective.

Download Tool
$wpdb
gpf_feeds
$wpdb->query
DELETE FROM $table_name WHERE feed_id= $id
file_to_delete

Build :

root@kitploit:~
gcc exploit.c argparse.c -o CVE-2025-10046 -lcurl
./CVE-2025-10046 -u http://127.0.0.1 -v -c [Cookie file admin]

References :

  • NVD : https://nvd.nist.gov/vuln/detail/CVE-2025-10046

License :

MIT