mirror of
https://github.com/arkenfox/user.js.git
synced 2024-11-24 11:31:38 +01:00
Destroyed 4.2.4 Header Editor (markdown)
parent
8128942208
commit
b07203ddbc
@ -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 = '';
|
|
||||||
```
|
|
Loading…
Reference in New Issue
Block a user