0

As part of my efforts to thwart fingerprinting, I used Google Bard to tell me how to randomize my HTTP accept headers with Requestly. However, when I go to https://amiunique.org to check my accept header, it doesn't change. What am I doing wrong and what should I be doing?

Screenshot of Requestly

Here is the override value: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7

Destroy666
  • 12,350

1 Answers1

0

You can add a random number in the Header value using predefined rq_rand(num_digits) function.

Here is the source code on Github - https://github.com/requestly/requestly/blob/master/browser-extension/mv2/src/modules/PreDefinedFunctions.js#L13

If this works for you, you can try something like this

Request Header - Accept

Value (Add rq_rand(4) as suffix in the header value)

text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,/;q=0.8,application/signed-exchange;v=b3;q=0.7;rq_rand(4)