Access

From Just Solve the File Format Problem
(Difference between revisions)
Jump to: navigation, search
(Additional link to developer resource and Access 2000 versions)
(LOC update)
(20 intermediate revisions by 6 users not shown)
Line 2: Line 2:
 
| formattype=electronic
 
| formattype=electronic
 
| subcat=Databases
 
| subcat=Databases
| extensions={{ext|mdb}}
+
| extensions={{ext|mdb}}, {{ext|mde}}, {{ext|accdb}}, {{ext|accde}}
| pronom={{PRONOM|x-fmt/66}}<br/>{{PRONOM|x-fmt/238}}<br/>{{PRONOM|x-fmt/239}} <br/>{{PRONOM|x-fmt/240}}<br/>{{PRONOM|x-fmt/241}}
+
| pronom={{PRONOM|x-fmt/66}}, {{PRONOM|x-fmt/238}}, {{PRONOM|x-fmt/239}}, {{PRONOM|x-fmt/240}}, {{PRONOM|x-fmt/241}}, {{PRONOM|x-fmt/275}}
 +
|locfdd={{LoCFDD|fdd000462}}, {{LoCFDD|fdd000463}}
 
| released=1992
 
| released=1992
 
}}
 
}}
  
'''Access''' released by '''Microsoft''' also known as '''Jet DB''' is a standalone database that forms part of the Microsoft Office Suite of productivity tools. It was first released in 1992.  
+
'''Access''' released by '''Microsoft''' also known as '''Jet DB''' is a standalone database that forms part of the [[Microsoft Office]] Suite of productivity tools. It was first released in 1992.  
  
 
Access databases are composed of multiple page types. The length of these pages depends on the version of the Jet Database employed by the specific version of Microsoft Access. The first page of Access 95/97 and Access 2000/2003 databases is always a '''Database Definition Page'''.
 
Access databases are composed of multiple page types. The length of these pages depends on the version of the Jet Database employed by the specific version of Microsoft Access. The first page of Access 95/97 and Access 2000/2003 databases is always a '''Database Definition Page'''.
Line 18: Line 19:
  
 
Microsoft Access 2000/2003 utilizes the Jet 4 database engine. The page size of the Jet4 database engine is '''4096''' bytes.
 
Microsoft Access 2000/2003 utilizes the Jet 4 database engine. The page size of the Jet4 database engine is '''4096''' bytes.
 +
 +
== Microsoft Access 2007 - Jet ACE Database ==
 +
 +
Microsoft Access 2007+ utilizes the Jet ACE (Access database engine).<ref>https://en.wikipedia.org/wiki/Microsoft_Jet_Database_Engine</ref>
 +
 +
== Additional Formats ==
 +
Microsoft Access has additional formats and extensions.<ref>https://en.wikipedia.org/wiki/Microsoft_Access#File_extensions</ref> One being the MDE format which is a "special extension of the standard Microsoft Access MDB format, and is used to distribute an application."<ref>https://www.loc.gov/preservation/digital/formats/fdd/fdd000462.shtml#notes</ref> An MDE is a compiled read-only format used to distribute databases which cannot be edited. MDE format was replaced with the ACCDE format with Access 2007.
  
 
== Internal structure of the format ==
 
== Internal structure of the format ==
Line 23: Line 31:
 
The Jet DB version can be found in the file header by reading the 4 byte little-endian integer at offset 0x13. Jet3 databases have a value of 0. Jet 4 databases have a value of 1.
 
The Jet DB version can be found in the file header by reading the 4 byte little-endian integer at offset 0x13. Jet3 databases have a value of 0. Jet 4 databases have a value of 1.
  
The version and build number of Access, used to create the file is located variable in the file structure. It will be located within a 'Page Index' page type, under one of the memo fields stored within that page type.  
+
The version and build number of Microsoft Access used to create the file is stored in the format. These two values are stored within a [http://jabakobob.net/mdb/data-page.html LVAL Data Page] and deeper into that structure a [http://jabakobob.net/mdb/lvprop.html LvProp column] - part of the MSysObjects table. It is possible to extract this information from here alone, the complete MSysObject table definition is always the second page of the database (zero-based index).
 +
 
 +
The block of data at offset 0x18 running for 126 bytes (Jet 3) and 128+ bytes (Jet 4) represents [[RC4]] encrypted data. It is thought this uses the key: '''0x6b39dac7'''.
 +
 
 +
== Database Password ==
 +
 
 +
'''Note:''' ''The information under this section should only be used by owners and custodians of databases where the password has been misplaced or lost and not for any illegal or illegitimate premises.''
 +
<br/><br/>
 +
Among other techniques Jet Databases employ a simple database password. The password field is '''0x42''' bytes into the file. Jet 3 database password fields are '''20 bytes''' in length, Jet 4 are '''40 bytes''' in length.
 +
<br/><br/>
 +
'''Jet 3 Password'''
 +
 
 +
[[Exclusive Or|XOR-ing]] the byte string running from 0x42 to 0x56 in a non-password protected database with that of a password protected database will reveal the password in plain text.
 +
 
 +
Studying the Maxsoft tool under [http://fileformats.archiveteam.org/wiki/Access#Password_Tools Password Tools] will help users to understand how Access databases are protected.
 +
<br/><br/>
 +
'''Jet 4 Password'''
 +
 
 +
The Jet 4 password can be revealed similarly by [[Exclusive Or|XOR-ing]] the byte string running from 0x42 to 0x68. If after the XOR operation if you haven't an ASCII character, that is, you have a value greater than 0xFF you need to XOR that value again with a further key value (byte) at offset 0x54.  
  
The block of data at offset 0x18 running for 126 bytes (Jet 3) and 128+ bytes (Jet 4) represents RC4 encrypted data. It is thought this uses the key: '''0x6b39dac7'''.
+
Studying the Maxsoft tool under [http://fileformats.archiveteam.org/wiki/Access#Password_Tools Password Tools] will help users to understand how Access databases are protected.
  
 
== Jet DB and Access Build Numbers ==
 
== Jet DB and Access Build Numbers ==
Line 38: Line 64:
 
     Access 2000                      Jet 4.0            Jet 4.0
 
     Access 2000                      Jet 4.0            Jet 4.0
 
     Access 2002                      Jet 4.0            Jet 4.0
 
     Access 2002                      Jet 4.0            Jet 4.0
 +
    Access 2007                      ACE 12
 +
    Access 2010                      ACE 14
 +
    Access 2013                      ACE 15
 +
    Access 2016                      ACE 16
  
The controller used to read and write the format by Access versions did change. The version of Access and its build number can help us to understand the version of the DLL used to interact with the format. The version and build number is embedded in the MDB objects (as described as part of its internal structure above) so can be easily extracted. Build numbers and DLL versions are described below ([http://support.microsoft.com/kb/248710 KB Article 248710] and [http://support.microsoft.com/kb/255275 KB Article 255275]):
+
The controller used to read and write the format by Access versions did change. The version of Access and its build number can help us to understand the version of the DLL used to interact with the format. The version and build number is embedded in the MDB objects (as described as part of its internal structure above) so can be easily extracted. Build numbers and DLL versions are described below ([http://support.microsoft.com/kb/248710 KB Article 248710] and [http://support.microsoft.com/kb/255275 KB Article 255275] and [http://support.microsoft.com/kb/291331 KB Article 291331]):
  
 
     Version          File Version    Patches
 
     Version          File Version    Patches
Line 50: Line 80:
 
     Access 2000      9.0.3821        SR-1
 
     Access 2000      9.0.3821        SR-1
 
     Access 2000      9.0.4402        SR-1
 
     Access 2000      9.0.4402        SR-1
     Access 2000      9.0.6926        SP-3  
+
     Access 2000      9.0.6926        SP-3
 +
    Access 2002      10.0.2627.1
 +
    Access 2002      10.0.3409.0    SP-1
 +
    Access 2002      10.0.4302.0    SP-2
 +
    Access 2002      10.0.6501.0    SP-3
  
 
Access Version linked with MSJet35.dll ([http://support.microsoft.com/kb/248710 KB Article 248710]):
 
Access Version linked with MSJet35.dll ([http://support.microsoft.com/kb/248710 KB Article 248710]):
Line 60: Line 94:
 
     Access 97 SR-2 and Jet35Upd.exe (3rd rel)    3.51.2026.0
 
     Access 97 SR-2 and Jet35Upd.exe (3rd rel)    3.51.2026.0
  
The following table [http://support.microsoft.com/kb/178880 KB Article 178880] describes backward compatibility between Jet DB engines and MDB version:
+
The following table from [http://web.archive.org/web/20111115230803/http://support.microsoft.com/kb/178880 KB Article 178880] describes backward compatibility between Jet DB engines and MDB version:
  
 
   ----------------------------------------------
 
   ----------------------------------------------
Line 72: Line 106:
 
   3.0            N    N    N    N    Y    Y
 
   3.0            N    N    N    N    Y    Y
  
'''Note:''' See the [http://support.microsoft.com/kb/178880 KB Article] for information on all DLL updates.
+
'''Note:''' See the [http://web.archive.org/web/20111115230803/http://support.microsoft.com/kb/178880 KB Article] for information on all DLL updates.
  
 
== Specifications ==
 
== Specifications ==
Line 89: Line 123:
  
 
* [https://isda.ncsa.uiuc.edu/NARA/CSR/php/search/formats.php?&cInput=mdb&srg=1&cName=default_extension&fid=866&fd=1&asc=1&num1=1 Conversion Software Registry: Sample Access Databases]
 
* [https://isda.ncsa.uiuc.edu/NARA/CSR/php/search/formats.php?&cInput=mdb&srg=1&cName=default_extension&fid=866&fd=1&asc=1&num1=1 Conversion Software Registry: Sample Access Databases]
 +
 +
== General Tools ==
 +
 +
* [https://github.com/brianb/mdbtools Brian Bruns GutHub.com mdbtools]
 +
* [https://github.com/exponential-decay/MDBValidator MDBValidator: Tool to read and output the statistics of a Microsoft Access Database]
 +
 +
== Password Tools ==
 +
 +
* [http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=73390&lngWId=1 Planet Source Code - Access Database Password Viewer]
 +
* [http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=72736&lngWId=1 Planet Source Code - Maxsoft Access Password Viewer]
  
 
== References ==
 
== References ==
Line 95: Line 139:
 
* [https://github.com/brianb/mdbtools/blob/master/HACKING Reverse engineered documentation used by mdbtools on GitHub]
 
* [https://github.com/brianb/mdbtools/blob/master/HACKING Reverse engineered documentation used by mdbtools on GitHub]
 
* [http://jabakobob.net/mdb/first-page.html Database definition and encryption key documentation]
 
* [http://jabakobob.net/mdb/first-page.html Database definition and encryption key documentation]
 +
* [http://www.everythingaccess.com/tutorials.asp?ID=Jet-MDB-security---under-the-hood EverythingAccess.com Jet MDB Security - Under The Hood]
 +
<references/>
  
 
== See Also ==  
 
== See Also ==  
Line 100: Line 146:
 
* [[Wikipedia:Microsoft_Jet_Database_Engine]]
 
* [[Wikipedia:Microsoft_Jet_Database_Engine]]
 
* [http://allenbrowne.com/ser-53.html Developer resource discussing DLL versions and sample code to retrieve Access version]
 
* [http://allenbrowne.com/ser-53.html Developer resource discussing DLL versions and sample code to retrieve Access version]
 +
* [http://www.techadre.com/content/microsoft-office-version-numbers-xp-2003-2007-2010 Site collating version and build numbers from XP through to 2010]
 +
* [http://en.wikibooks.org/wiki/JET_Database/Manipulation_tools Wikibooks Jet Database/Manipulation tools]
 +
* [http://webcheatsheet.com/SQL/access_specification.php WebCheatSheet.com Microsoft Access Specifications and Limitations]
 +
* [http://www.pcwelt.de/ratgeber/Geknackt-Microsoft-Money-99-504470.html PC Welt Germany discussing vulnerabilities in Microsoft Money 99 which is built on Jet DB 3.0]
 +
* [http://tutorialsto.com/view/printview-3771.html MDB Password View Tutorial]
 +
* [https://groups.google.com/forum/#!topic/pronom/_fz-eP0ge9o PRONOM Google Group Discussion about the distinction between Access versions in the PRONOM registry]
 +
* [http://www.textfiles.com/programming/FORMATS/q88173.txt ODBC Setup for Access and SQL Server]
 +
* [https://medium.com/young-coder/microsoft-access-the-zombie-database-software-that-wont-die-5b09e389c166 Microsoft Access: The Database Software That Won’t Die]
 +
 +
[[Category:Microsoft]]

Revision as of 20:15, 2 July 2020

File Format
Name Access
Ontology
Extension(s) .mdb, .mde, .accdb, .accde
LoCFDD fdd000462, fdd000463
PRONOM x-fmt/66, x-fmt/238, x-fmt/239, x-fmt/240, x-fmt/241, x-fmt/275
Released 1992

Access released by Microsoft also known as Jet DB is a standalone database that forms part of the Microsoft Office Suite of productivity tools. It was first released in 1992.

Access databases are composed of multiple page types. The length of these pages depends on the version of the Jet Database employed by the specific version of Microsoft Access. The first page of Access 95/97 and Access 2000/2003 databases is always a Database Definition Page.

Contents

Microsoft Access 95/97 - Jet 3 Database

Microsoft Access 95/97 utilizes the Jet3 database engine. The page size of the Jet3 database engine is 2048 bytes.

Microsoft Access 2000/2002 - Jet 4 Database

Microsoft Access 2000/2003 utilizes the Jet 4 database engine. The page size of the Jet4 database engine is 4096 bytes.

Microsoft Access 2007 - Jet ACE Database

Microsoft Access 2007+ utilizes the Jet ACE (Access database engine).[1]

Additional Formats

Microsoft Access has additional formats and extensions.[2] One being the MDE format which is a "special extension of the standard Microsoft Access MDB format, and is used to distribute an application."[3] An MDE is a compiled read-only format used to distribute databases which cannot be edited. MDE format was replaced with the ACCDE format with Access 2007.

Internal structure of the format

The Jet DB version can be found in the file header by reading the 4 byte little-endian integer at offset 0x13. Jet3 databases have a value of 0. Jet 4 databases have a value of 1.

The version and build number of Microsoft Access used to create the file is stored in the format. These two values are stored within a LVAL Data Page and deeper into that structure a LvProp column - part of the MSysObjects table. It is possible to extract this information from here alone, the complete MSysObject table definition is always the second page of the database (zero-based index).

The block of data at offset 0x18 running for 126 bytes (Jet 3) and 128+ bytes (Jet 4) represents RC4 encrypted data. It is thought this uses the key: 0x6b39dac7.

Database Password

Note: The information under this section should only be used by owners and custodians of databases where the password has been misplaced or lost and not for any illegal or illegitimate premises.

Among other techniques Jet Databases employ a simple database password. The password field is 0x42 bytes into the file. Jet 3 database password fields are 20 bytes in length, Jet 4 are 40 bytes in length.

Jet 3 Password

XOR-ing the byte string running from 0x42 to 0x56 in a non-password protected database with that of a password protected database will reveal the password in plain text.

Studying the Maxsoft tool under Password Tools will help users to understand how Access databases are protected.

Jet 4 Password

The Jet 4 password can be revealed similarly by XOR-ing the byte string running from 0x42 to 0x68. If after the XOR operation if you haven't an ASCII character, that is, you have a value greater than 0xFF you need to XOR that value again with a further key value (byte) at offset 0x54.

Studying the Maxsoft tool under Password Tools will help users to understand how Access databases are protected.

Jet DB and Access Build Numbers

The following table shows that the version of the Jet Database format remained fairly consistent between versions of Access:

  Client Application          Jet Engine Used    Recommended Jet DB Format
  -------------------------   ---------------    -------------------------
   Access 2.0                       Jet 2.0             Jet 2.0
   Access 95                        Jet 3.0             Jet 3.0
   Access 97                        Jet 3.5             Jet 3.0
   Access 2000                      Jet 4.0             Jet 4.0
   Access 2002                      Jet 4.0             Jet 4.0
   Access 2007                      ACE 12
   Access 2010                      ACE 14
   Access 2013                      ACE 15
   Access 2016                      ACE 16

The controller used to read and write the format by Access versions did change. The version of Access and its build number can help us to understand the version of the DLL used to interact with the format. The version and build number is embedded in the MDB objects (as described as part of its internal structure above) so can be easily extracted. Build numbers and DLL versions are described below (KB Article 248710 and KB Article 255275 and KB Article 291331):

   Version          File Version     Patches
   --------------   ------------     -------
   Access 95         7.0             Unknown
   Access 97         8.0.3512        n/a          
   Access 97 SR-1    8.0.4122        n/a
   Access 97 SR-2    8.0.5903        SR-1
   Access 2000       9.0.2720
   Access 2000       9.0.3821        SR-1
   Access 2000       9.0.4402        SR-1
   Access 2000       9.0.6926        SP-3
   Access 2002       10.0.2627.1
   Access 2002       10.0.3409.0     SP-1	
   Access 2002       10.0.4302.0     SP-2	 
   Access 2002       10.0.6501.0     SP-3

Access Version linked with MSJet35.dll (KB Article 248710):

   Version                                      DLL Version
   -------                                      -----------
   Access 97                                    3.50.3428.0
   Access 97 SR-1                               3.50.3907.5
   Access 97 SR-2 and Jet35Upd.exe (3rd rel)    3.51.2026.0

The following table from KB Article 178880 describes backward compatibility between Jet DB engines and MDB version:

  ----------------------------------------------
  Jet Version   1.0   1.1   2.0   2.5   3.0  3.5
  ----------------------------------------------
  MDB Version
  -----------
  1.0            Y     Y     Y     Y     Y    Y
  1.1            N     Y     Y     Y     Y    Y
  2.0            N     N     Y     Y     Y    Y
  3.0            N     N     N     N     Y    Y

Note: See the KB Article for information on all DLL updates.

Specifications

A formal specification from Microsoft has not been made available. The following links are attempts by third parties to reverse engineer and document the format:

Sample Files

General Tools

Password Tools

References

  1. https://en.wikipedia.org/wiki/Microsoft_Jet_Database_Engine
  2. https://en.wikipedia.org/wiki/Microsoft_Access#File_extensions
  3. https://www.loc.gov/preservation/digital/formats/fdd/fdd000462.shtml#notes

See Also

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox