Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added collection of Opera (Stable/GX) browser profile storage location for browser history #181

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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
RickGeex marked this conversation as resolved.
Show resolved Hide resolved
".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
Contributor

Choose a reason for hiding this comment

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

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

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