Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion analyzer/windows/modules/packages/chrome.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ class Chrome(Package):
"""Chrome analysis package."""

PATHS = [
("LOCALAPPDATA", "Google", "Chrome", "Application", "chrome.exe"),
("ProgramFiles", "Google", "Chrome", "Application", "chrome.exe"),
("LOCALAPPDATA", "Chromium", "Application", "chrome.exe"),
]
summary = "Opens the URL in Google Chrome."
description = """Uses 'chrome.exe --disable-features=RendererCodeIntegrity "<url>"' to open the supplied url."""
Expand Down
2 changes: 1 addition & 1 deletion analyzer/windows/modules/packages/chromium.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Chromium(Package):

PATHS = [
("LOCALAPPDATA", "Chromium", "Application", "chrome.exe"),
("ProgramFiles", "Google", "Chrome", "Application", "chrome.exe"),
("ProgramFiles", "Chromium", "Application", "chrome.exe"),
]
summary = "Opens the URL in Chromium."
description = """Uses 'chrome.exe --disable-features=RendererCodeIntegrity "<url>"' to open the supplied url."""
Expand Down
3 changes: 2 additions & 1 deletion analyzer/windows/modules/packages/chromium_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ class ChromiumExt(Package):
"""Chromium extension analysis package."""

PATHS = [
("LOCALAPPDATA", "Chromium", "chrome.exe"),
("LOCALAPPDATA", "Chromium", "Application", "chrome.exe"),
("ProgramFiles", "Chromium", "Application", "chrome.exe"),
]
summary = "Opens the URL in Chromium with loaded extension."
description = """Runs Chromium preloaded with a custom extensios."""
Expand Down
2 changes: 2 additions & 0 deletions analyzer/windows/modules/packages/crx.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ class CRX(Package):
"""CRX extensions analysis package."""

PATHS = [
("LOCALAPPDATA", "Google", "Chrome", "Application", "chrome.exe"),
("ProgramFiles", "Google", "Chrome", "Application", "chrome.exe"),
("LOCALAPPDATA", "Chromium", "Application", "chrome.exe"),
("ProgramFiles", "Chromium", "Application", "chrome.exe"),
]
summary = "Load the crx sample in Google Chrome as extension."
description = "Uses 'chrome.exe --load-extension=<extracted_path> \
Expand Down
Loading