From 132706ad96ebf23fb8f54fe428ba3ea034424e96 Mon Sep 17 00:00:00 2001 From: Fernando Urbano Date: Fri, 27 Sep 2024 18:49:59 +0900 Subject: [PATCH] auxiliary.conf.default -> browser_monitor -> browsermonitor (#2331) --- .../auxiliary/{browser_monitor.py => browsermonitor.py} | 0 conf/default/auxiliary.conf.default | 2 +- tests/test_analysis_manager.py | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename analyzer/windows/modules/auxiliary/{browser_monitor.py => browsermonitor.py} (100%) diff --git a/analyzer/windows/modules/auxiliary/browser_monitor.py b/analyzer/windows/modules/auxiliary/browsermonitor.py similarity index 100% rename from analyzer/windows/modules/auxiliary/browser_monitor.py rename to analyzer/windows/modules/auxiliary/browsermonitor.py diff --git a/conf/default/auxiliary.conf.default b/conf/default/auxiliary.conf.default index b954ed412dd..4f6029ba9b6 100644 --- a/conf/default/auxiliary.conf.default +++ b/conf/default/auxiliary.conf.default @@ -43,7 +43,7 @@ windows_static_route = no tracee_linux = no sslkeylogfile = no # Requires setting up browser extension, check extra/browser_extension -browser_monitor = no +browsermonitor = no [AzSniffer] # Enable or disable the use of Azure Network Watcher packet capture feature, disable standard sniffer if this is in use to not create concurrent .pcap files diff --git a/tests/test_analysis_manager.py b/tests/test_analysis_manager.py index 1518221318c..064d7173d00 100644 --- a/tests/test_analysis_manager.py +++ b/tests/test_analysis_manager.py @@ -310,7 +310,7 @@ def test_build_options( assert opts == { "amsi": False, "browser": True, - "browser_monitor": False, + "browsermonitor": False, "category": "file", "clock": datetime.datetime(2099, 1, 1, 9, 1, 1), "curtain": False, @@ -371,7 +371,7 @@ def test_build_options_pe( assert opts == { "amsi": False, "browser": True, - "browser_monitor": False, + "browsermonitor": False, "category": "file", "clock": datetime.datetime(2099, 1, 1, 9, 1, 1), "curtain": False,