Skip to content

Commit 09b424c

Browse files
authored
Merge pull request #378 from tclahr/new_artifacts
artif: new google drive artifact
2 parents 33256f6 + 81fc4bc commit 09b424c

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file.
1111

1212
### Artifacts
1313

14+
- `files/applications/google_drive.yaml`: Added collection of Google Drive metadata databases and log files [macos].
1415
- `files/browsers/cache.yaml`: Added collection of browser cache data. This artifact is resource-intensive and time-consuming, so it is disabled by default in all profiles [freebsd, linux, macos].
1516
- `files/logs/advanced_log_search.yaml`: `file_type: [f]` was removed to also collect symlinks. ([#355](https://github.com/tclahr/uac/issues/355))
1617
- `files/logs/apache.yaml`: `file_type: [f]` was removed to also collect symlinks. ([#355](https://github.com/tclahr/uac/issues/355))
@@ -58,10 +59,6 @@ All notable changes to this project will be documented in this file.
5859
- Fixed a bug where sftp ssh options were not being set correctly. ([#366](https://github.com/tclahr/uac/issues/366))
5960
- Fixed a bug where the bodyfile artifact was returning corrupted file names when `statx` was being used with `xargs -0`. ([#369](https://github.com/tclahr/uac/issues/369)) (by [halpomeranz](https://github.com/halpomeranz))
6061

61-
### Profiles
62-
6362
### Command Line Option Changes
6463

6564
- `--sftp-ssh-options` is now `--sftp-ssh-option`: This allows setting SSH options as key=value pairs. Can be used multiple times to set multiple options. ([#366](https://github.com/tclahr/uac/issues/366))
66-
67-
### New Artifact Properties
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
version: 1.0
2+
artifacts:
3+
# References:
4+
# https://forensafe.com/blogs/windows_google_drive.html
5+
-
6+
description: Collect the database that contains information about all of the devices that have been partially or completely backed to Google Drive or any device that has been connected to the computer while Google Drive App was running. The database also stores information about the root (folders) synced to the cloud using Google Drive desktop app.
7+
supported_os: [macos]
8+
collector: file
9+
path: /%user_home%/Library/"Application Support"/Google/DriveFS/root_preference_sqlite.db*
10+
exclude_nologin_users: true
11+
-
12+
description: Collect the database that contains information about all of the items (root folders, sub-folders, or files) synced to the cloud using Google Drive desktop app.
13+
supported_os: [macos]
14+
collector: file
15+
path: /%user_home%/Library/"Application Support"/Google/DriveFS/*/mirror_sqlite.db*
16+
exclude_nologin_users: true
17+
-
18+
description: Collect the databases that contain information about the items stored in the cloud using Google Drive, deleted items, as well as information related to the user’s account.
19+
supported_os: [macos]
20+
collector: file
21+
path: /%user_home%/Library/"Application Support"/Google/DriveFS/*/metadata_sqlite_db* /Library/Application\ Support/Google/DriveFS/*/mirror_metadata_sqlite.db*
22+
exclude_nologin_users: true
23+
-
24+
description: Collect Google Drive logs.
25+
supported_os: [macos]
26+
collector: file
27+
path: /%user_home%/Library/"Application Support"/Google/DriveFS/Logs
28+
exclude_nologin_users: true

0 commit comments

Comments
 (0)