Question: Why does the README say it's best practice to not use custom UA or headers? #37
-
Why is it best practice to do so? Wouldn't occasionally rotating this to mimic different machines be better? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Because Chrome (or more specifically Chromium) has a bug in which UserAgents do not get applied to WebWorkers. See (for example, i think there multiple but this one was the first one i found) Chromium Bug Tracker. If you apply a UserAgent, whether via a Command Line Flag or a CDP Command, it can cause a Leak if the Site Checks your Navigator UserAgent against a Webworker UserAgent. |
Beta Was this translation helpful? Give feedback.
Because Chrome (or more specifically Chromium) has a bug in which UserAgents do not get applied to WebWorkers. See (for example, i think there multiple but this one was the first one i found) Chromium Bug Tracker.
If you apply a UserAgent, whether via a Command Line Flag or a CDP Command, it can cause a Leak if the Site Checks your Navigator UserAgent against a Webworker UserAgent.
This doesnt mean that there are no cases in which you shouldnt change your UserAgent, it just means that you shouldnt if you want to be completely undetected.