Microsoft Access 2010 VBA Datatype denial of service

CVSS Meta Temp Score
CVSS is a standardized scoring system to determine possibilities of attacks. The Temp Score considers temporal factors like disclosure, exploit and countermeasures. The unique Meta Score calculates the average score of different sources to provide a normalized scoring system.
Current Exploit Price (≈)
Our analysts are monitoring exploit markets and are in contact with vulnerability brokers. The range indicates the observed or calculated exploit price to be seen on exploit markets. A good indicator to understand the monetary effort required for and the popularity of an attack.
CTI Interest Score
Our Cyber Threat Intelligence team is monitoring different web sites, mailing lists, exploit markets and social media networks. The CTI Interest Score identifies the interest of attackers and the security community for this specific vulnerability in real-time. A high score indicates an elevated risk to be targeted for this vulnerability.
4.9$0-$5k0.00

A vulnerability was found in Microsoft Access 2010 (Database Software). It has been declared as problematic. This vulnerability affects an unknown function of the component VBA. The manipulation with the input value NULL leads to a denial of service vulnerability. The CWE definition for the vulnerability is CWE-404. The product does not release or incorrectly releases a resource before it is made available for re-use. As an impact it is known to affect availability.

The bug was discovered 07/04/2014. The weakness was released 04/21/2015 by Marc Ruef with scip AG as sID 66976 as confirmed entry (scip VulDB). The advisory is shared for download at scip.ch. The public release happened without coordination with the vendor. The exploitation appears to be difficult. The attack can be initiated remotely. No form of authentication is required for a successful exploitation. Technical details and also a public exploit are known. The MITRE ATT&CK project declares the attack technique as T1499. Assigning the datatype NULL to a string variable may cause the application to crash.

A public exploit has been developed by Marc Ruef in VBA and been published immediately after the advisory. It is possible to download the exploit at scip.ch. It is declared as proof-of-concept. The code used by the exploit is:

Public Sub NullExploit()
    Dim cn As New ADODB.Connection
    Dim rs As New ADODB.Recordset
    Dim sResult As String
    
    cn.Open "vuldb"
    rs.Open "SELECT * FROM tbl_vulnerabilities WHERE id='66976'", cn
    
    With rs
        If Not .EOF And Not .BOF Then
            sResult = .Fields("source_cve") 'will cause DoS
        End If
    End With

    MsgBox sResult

    rs.Close
    Set rs = Nothing
    cn.Close
    Set cn = Nothing
End Sub

The best possible mitigation is suggested to be Workaround. A possible mitigation has been published immediately after the disclosure of the vulnerability. The vulnerability will be addressed with the following lines of code:

sResult = CVar(.Fields("source_cve"))

Productinfo

Type

Vendor

Name

Version

License

CPE 2.3info

CPE 2.2info

CVSSv4info

VulDB CVSS-B Score: 🔍
VulDB CVSS-BT Score: 🔍
VulDB Vector: 🔍
VulDB Reliability: 🔍

CVSSv3info

VulDB Meta Base Score: 5.3
VulDB Meta Temp Score: 4.9

VulDB Base Score: 5.3
VulDB Temp Score: 4.9
VulDB Vector: 🔍
VulDB Reliability: 🔍

CVSSv2info

AVACAuCIA
💳💳💳💳💳💳
💳💳💳💳💳💳
💳💳💳💳💳💳
VectorComplexityAuthenticationConfidentialityIntegrityAvailability
unlockunlockunlockunlockunlockunlock
unlockunlockunlockunlockunlockunlock
unlockunlockunlockunlockunlockunlock

VulDB Base Score: 🔍
VulDB Temp Score: 🔍
VulDB Reliability: 🔍

Exploitinginfo

Class: Denial of service
CWE: CWE-404
ATT&CK: T1499

Local: No
Remote: Yes

Availability: 🔍
Access: Public
Status: Proof-of-Concept
Author: Marc Ruef
Programming Language: 🔍
Download: 🔍
Price Prediction: 🔍
Current Price Estimation: 🔍

0-Dayunlockunlockunlockunlock
Todayunlockunlockunlockunlock

Threat Intelligenceinfo

Interest: 🔍
Active Actors: 🔍
Active APT Groups: 🔍

Countermeasuresinfo

Recommended: Workaround
Status: 🔍

Reaction Time: 🔍
0-Day Time: 🔍
Exposure Time: 🔍
Exploit Delay Time: 🔍

Timelineinfo

07/04/2014 🔍
07/04/2014 +0 days 🔍
07/04/2014 +0 days 🔍
07/05/2014 +1 days 🔍
04/21/2015 +290 days 🔍
04/21/2015 +0 days 🔍
04/21/2015 +0 days 🔍
10/08/2018 +1266 days 🔍

Sourcesinfo

Vendor: microsoft.com

Advisory: sID 66976
Researcher: Marc Ruef
Organization: scip AG
Status: Confirmed
scip Labs: https://www.scip.ch/en/?labs.20161013

Entryinfo

Created: 07/04/2014 12:00
Updated: 10/08/2018 15:09
Changes: 07/04/2014 12:00 (63), 10/08/2018 15:09 (2)
Complete: 🔍

Discussion

No comments yet. Languages: en.

Please log in to comment.

Do you want to use VulDB in your project?

Use the official API to access entries easily!