fix(DynamicFetcher): Improve stealth mode

This commit is contained in:
Karim shoair
2025-09-07 03:13:51 +03:00
parent 31c14b3997
commit 72e26c23e8
+3 -6
View File
@@ -16,9 +16,9 @@ HARMFUL_DEFAULT_ARGS = (
# This will be ignored to avoid detection more and possibly avoid the popup crashing bug abuse: https://issues.chromium.org/issues/340836884 # This will be ignored to avoid detection more and possibly avoid the popup crashing bug abuse: https://issues.chromium.org/issues/340836884
"--enable-automation", "--enable-automation",
"--disable-popup-blocking", "--disable-popup-blocking",
# '--disable-component-update', "--disable-component-update",
# '--disable-default-apps', "--disable-default-apps",
# '--disable-extensions', "--disable-extensions",
) )
DEFAULT_FLAGS = ( DEFAULT_FLAGS = (
@@ -50,7 +50,6 @@ DEFAULT_STEALTH_FLAGS = (
"--accept-lang=en-US", "--accept-lang=en-US",
"--use-mock-keychain", "--use-mock-keychain",
"--disable-translate", "--disable-translate",
"--disable-extensions",
"--disable-voice-input", "--disable-voice-input",
"--window-position=0,0", "--window-position=0,0",
"--disable-wake-on-wifi", "--disable-wake-on-wifi",
@@ -59,7 +58,6 @@ DEFAULT_STEALTH_FLAGS = (
"--enable-web-bluetooth", "--enable-web-bluetooth",
"--disable-hang-monitor", "--disable-hang-monitor",
"--disable-cloud-import", "--disable-cloud-import",
"--disable-default-apps",
"--disable-print-preview", "--disable-print-preview",
"--disable-dev-shm-usage", "--disable-dev-shm-usage",
# '--disable-popup-blocking', # '--disable-popup-blocking',
@@ -72,7 +70,6 @@ DEFAULT_STEALTH_FLAGS = (
"--force-color-profile=srgb", "--force-color-profile=srgb",
"--font-render-hinting=none", "--font-render-hinting=none",
"--aggressive-cache-discard", "--aggressive-cache-discard",
"--disable-component-update",
"--disable-cookie-encryption", "--disable-cookie-encryption",
"--disable-domain-reliability", "--disable-domain-reliability",
"--disable-threaded-animation", "--disable-threaded-animation",