Cloud Artifacts
Dropbox
Configuration
Windows XP
Windows Vista and later
Mac OS X
Linux
Configuration files are mostly encrypted
host.dbx/ host.db
host.dbx and host.db is not encrypted and can be accessed, it contains the local folder name used to sync the account. The folder name is encoded in Base64
filecache.dbx and filecache.db
Filecache.dbx located in the folder
Windows Protection Folder
Registry value
User’s password
The decrypted filecache.db contains:
Server path
Local file name
Local creation time
Local modified time
Local size
Installation
Four files created during installation
We can obtain from the registry
Install Location
Installed version
File Created
Executable and libraries are stored in
Uninstall
During the uninstall process the client config folder is removed
The registry key NTUSER\Software\Dropbox is preserved (but without values)
The prefetch files are not deleted
Local copy of the file is not deleted
Google Drive
Google Drive client is installed inside the Program Files folder
Client configuration is stored in the user profile, so we have different profiles for each user
The default folder used for syncing files. By default, the folder is empty
Installation
During the installation different keys and values are created inside the registry
From the registry we can obtain:
Installed version
User folder
Four files are created during client installation:
Configuration
Configuration files are saved inside the installation folder in the user profile
Google provides a Mac OS X and Windows and desktop client.
snapshot.db
The snapshot.db is a SQLITE3 DB containing information about local and cloud entry
Cloud_entry table
File name
Created (UNIX Timestamp)
Modified (UNIX Timestamp)
URL
Checksum (MD5 hash)
Size
Shared
Local_entry
File name
Modified (UNIX Timestamp)
Checksum (MD5 hash)
Size
After file deletion the file information is removed from the cloud_entry and the local_entry table
sync_config.db
The sync_config.db is a SQLITE3 DB containing profile configuration
Client version installed
Local Sync Root Path
User Email
sync_config.log
The Sync_log.log is a log file containing information about the client sync session
Inside the file we can find information about
Sync sessions
File created
File saved
File deleted
We can use a keyword search with the strings:
RawEvent(CREATE
RawEvent(DELETE
RawEvent(MODIFY
Last updated