Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions acquire/acquire.py
Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,7 @@ class EDR(Module):

@register_module("--history")
class History(Module):
DESC = "browser history from IE, Edge, Firefox, and Chrome"
DESC = "browser history from IE, Edge, Firefox, Chrome, Brave and Opera (Stable and GX)"
DIR_COMBINATIONS = namedtuple("DirCombinations", ["root_dirs", "dir_extensions", "history_files"])
COMMON_DIR_COMBINATIONS = [
DIR_COMBINATIONS(
Expand All @@ -1084,7 +1084,7 @@ class History(Module):
".config/chromium",
# Chrome - RHEL/Ubuntu - DNF
".config/google-chrome",
# Edge - RHEL/Ubuntu - DNF/apt
# Edge - RHEL/Ubuntu - DNF/apt
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Edge - RHEL/Ubuntu - DNF/apt
# Edge - RHEL/Ubuntu - DNF/apt

".config/microsoft-edge",
# Chrome - RHEL/Ubuntu - Flatpak
".var/app/com.google.Chrome/config/google-chrome",
Expand All @@ -1111,6 +1111,16 @@ class History(Module):
".config/BraveSoftware",
# Brave - MacOS
"Library/Application Support/BraveSoftware",
# Opera - Windows (Stable)
"AppData/Roaming/Opera Software/Opera Stable/Default",
"AppData/Local/Opera Software/Opera Stable/Default",
# Opera - Windows (GX)
"AppData/Roaming/Opera Software/Opera GX Stable",
"AppData/Local/Opera Software/Opera GX Stable",
# Opera - MacOS (Stable)
"Library/Application Support/com.operasoftware.Opera/Default",
# Opera - MacOS (GX)
"Library/Application Support/com.operasoftware.OperaGX",
Copy link
Member

@Horofic Horofic Jul 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you add some of the paths here to collect Opera browser artefacts for Linux based systems? This comment also applies to fox-it/dissect.target#744.

],
["*", "Snapshots/*/*"],
[
Expand Down