From b07203ddbc3cea54b790617964f22876b3be12d8 Mon Sep 17 00:00:00 2001 From: Thorin-Oakenpants Date: Sat, 27 Nov 2021 05:51:03 +0000 Subject: [PATCH] Destroyed 4.2.4 Header Editor (markdown) --- 4.2.4-Header-Editor.md | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 4.2.4-Header-Editor.md diff --git a/4.2.4-Header-Editor.md b/4.2.4-Header-Editor.md deleted file mode 100644 index c107718..0000000 --- a/4.2.4-Header-Editor.md +++ /dev/null @@ -1,25 +0,0 @@ -[Header Editor](https://addons.mozilla.org/firefox/addon/header-editor/) | [GitHub](https://github.com/FirefoxBar/HeaderEditor) - -Header Editor is an extension that allows you to modify the request header and response header, cancel a request and redirect a request. - -:exclamation: pay attention, header names are case sensitive - -:small_orange_diamond: remove all ETag's - * ⭐ This is pointless if sites are already isolated: e.g. you use - - FF85+, which uses [network partitioning](https://blog.mozilla.org/security/2021/01/26/supercookie-protections/) - - First Party Isolation (FPI) - - Temporary Containers in a hardened mode - * Note: No browser is designed to hide repeat visits within a session, not even Tor Browser (that's what New Identity is for) - - You would need to sanitize fully in session, and that still leaves your IP address, among other vectors - * Test: https://httpbin.org/ - -``` - Name: remove all ETag's - Type: modify the Response header -Execute type: Custom function -``` - -Code: -```js -for (const a in val) if (val[a].name.toLowerCase() === 'etag') val[a].value = ''; -```