From e2b01dc6bae214500447b55e3aee0072f6ab072e Mon Sep 17 00:00:00 2001 From: LagradOst Date: Tue, 3 Oct 2023 22:23:24 +0000 Subject: [PATCH] Update patches/devtools-bypass.patch --- patches/devtools-bypass.patch | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/patches/devtools-bypass.patch b/patches/devtools-bypass.patch index 2fb4730..92c425a 100644 --- a/patches/devtools-bypass.patch +++ b/patches/devtools-bypass.patch @@ -1,20 +1,3 @@ -diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js -index fdd5468..b012c07 100644 ---- a/browser/app/profile/firefox.js -+++ b/browser/app/profile/firefox.js -@@ -2772,6 +2772,11 @@ pref("devtools.debugger.features.async-captured-stacks", true); - pref("devtools.debugger.features.async-live-stacks", false); - pref("devtools.debugger.hide-ignored-sources", false); - -+// Force detach the debugger to prevent detecting that the debugger is initialized. -+pref("devtools.debugger.force_detach", false); -+// Stops all logging to prevent detection of devtools by evaluating strings. -+pref("devtools.console.logging_disabled", false); -+ - // Disable autohide for DevTools popups and tooltips. - // This is currently not exposed by any UI to avoid making - // about:devtools-toolbox tabs unusable by mistake. - diff --git a/devtools/server/actors/thread.js b/devtools/server/actors/thread.js index d91f463..3c1ba5a 100644 --- a/devtools/server/actors/thread.js @@ -24,7 +7,7 @@ index d91f463..3c1ba5a 100644 // Note that the client avoids trying to call attach if already attached. // But just in case, avoid any possible duplicate call to attach. - if (this.alreadyAttached) { -+ let forceDetach = Services.prefs.getBoolPref("devtools.debugger.force_detach", false); ++ let forceDetach = Services.prefs.getBoolPref("librewolf.debugger.force_detach", false); + if (this.alreadyAttached || forceDetach) { return; } @@ -38,7 +21,7 @@ index 3e5d0bc..8260e2b 100644 */ onConsoleAPILogEvent(message) { - if (!this.handler) { -+ let disableConsole = Services.prefs.getBoolPref("devtools.console.logging_disabled", false); ++ let disableConsole = Services.prefs.getBoolPref("librewolf.console.logging_disabled", false); + if (!this.handler || disableConsole) { return; }