Navigation: » Latest version
ShoulderSurfer
Introduction
ShoulderSurfer is an effort to create a tool that can extract data from an Exchange Database(currently targeting Exchange 2010).
Source Code
You can find the source code repository at the following git repository
- https://stash.devlan.net/scm/surf/shouldersurfer.git
Notes from injecting into store.exe and attempting to query Exchange via the JET API
- All function calls need to come from the ese.dll, and not esent.dll. The APIApplication Programming Interface appears the same, but exchange does not use esent.dll. Therefore all JET function calls need to be from ese.dll space. Thankfully, its already loaded into mem. :)
- store.exe seems to export a wonderful function EcGetJetInstanceForMDB() that takes a GUIDGlobally Unique Identifier and returns a valid JET instance handle that has already been initialized and setup for use. Appears there is no need to figure out all the right SystemParameters, etc. and inorder to create our own sessions from this instance.
- Use UuidFromString() to convert from String GUIDGlobally Unique Identifier to binary.
- However, this function isn't really need as once we are injected in, calling JetGetInstanceInfo() gives us everything we need.
Notes from RE'ing the Exchange 2010 EDB
- MSysObjects Table can be used to take a table name and get a tableid
- Use MAPITags.h and also PropTags.cs to look up column names. Its not 100% guaranteed for a column to have a matching property name in the tags, but most seem to.
- PropTags.cs was decompiled from Microsoft.Exchange.StoreProvider.dll
- MAPITags.h is from the Outlook 2010 developer resources
- Interesting content column ids
- N1013 - HTMLHypertext Markup Language Body (sometimes this is compressed -- but doesn't matter really because JetRetrieveColumn(...) calls appear to decompress/decode it for us)
- S1000 - Plain Text Body
- J1009 - RTFDocument format Compressed Body
- "DeliveredTo" Table -- Perhaps good xref for dates to messages
- T39 = Client Submit Time
- Q6764 = Message Header Fid (ex. 571700001BC5A0) -- seems like the first two bytes are little endian, the rest is not. Odd. Also seems to be a cooresponding table names like MsgHeader-1757-1BC5A0 and Body-1757-1BC5A0
- Q676e = LCID (unclear what this is)
- Te06 = Delivery Time (looks like it might be GMT)
- Q676f = Fid Table RowID (ex 571700001578C)
- Can jump from rows in DeliveredTo, using a value in Q6764, to MsgHeader-<*Q6764>, and then using the Fid Table RowId from DeliveredTo, isolate the row of the message header(ie. where MsgHeader-<Fid>.N67b0 = DeliveredTo.Q676f). The same works in Body-<Fid>.N67b0 User #73998 to get content (N1013 HTMLHypertext Markup Language Body content)
- Mailbox Table -- Can be used to get all the users that have mailboxes in the Database.
- Q6764 = User Fid? Mailbox id -- seems to be the first two bytes are treated as little endian, the rest are just bytes...
- S6773 = Full Name
- S66a0 = NTMicrosoft operating system Username (ie Domain\Userid) -- seems to be blank if they've never logged into mail.
- T66a2 = Last Login Time
- T66a3 = Last Logoff Time
- Folder Table -- Lists all of folders in a users account
- Q6748 = Folder ID
- Q6749 = Parent Folder ID (this appears to possibly be a parent folder ID based on looking at the values in the database dump)
- L3602 = Message count for the folder. The value seems to be one higher than the actually number of messages
- L3603 = Unread Message count. The value seems to be one higher than the actually number of messages
- S3001 = Folder name string
- Q66b3 = Size of data in the folder
- Body Table – Contains the email data for a user. There is a body table for each user
- S3001 = Possibly the name of the attachment on an email
- S3707 = Possibly the name of the attachment on an email
- S3703 = File extension of the attachment on an email
- S3704 = Shortened Attachment File name.
- N3701 = Binary attachment data. Maybe compressed and/or base64 encoded
- S370e = Content/Email type? - looks to specify weither an entry is in text/plain, message/rfc822, or application/octet-stream (attachments?) format.
- N67b3
- Message Header Table
- Q6748 = Folder ID field - folder that email is stored under
- N67b0 = Message Body ID - ID for the body of the email in the body table
e-Highlighter
Click to send permalink to address bar, or right-click to copy permalink.
Un-highlight all Un-highlight selectionu Highlight selectionh