We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Audiocontext Fingerprint Protection
From the results of "https://coveryourtracks.eff.org/", there is a "Audiocontext Fingerprint" option that can be used to fingerprint users/browsers.
Safari has implemented some measures to protect from Audio Fingerprinting ("https://fingerprint.com/blog/bypassing-safari-17-audio-fingerprinting-protection/").
It would be wonderful if this could be implemented and added as an Ungoogled-Chromium feature/switch/flag option.
On the linked fingerprint.com blog, this is the audio fingerprinting protection code implemented in Safari:
void applyNoise(float* values, size_t numberOfElementsToProcess, float magnitude) { WeakRandom generator; for (size_t i = 0; i < numberOfElementsToProcess; ++i) values[i] *= 1 + magnitude * (2 * generator.get() - 1); }
The description says this:
No response
The text was updated successfully, but these errors were encountered:
By any chance, have you checked whether the solution in Safary works correctly?
Sorry, something went wrong.
No branches or pull requests
Description
Audiocontext Fingerprint Protection
Who's implementing?
The problem
From the results of "https://coveryourtracks.eff.org/", there is a "Audiocontext Fingerprint" option that can be used to fingerprint users/browsers.
Safari has implemented some measures to protect from Audio Fingerprinting ("https://fingerprint.com/blog/bypassing-safari-17-audio-fingerprinting-protection/").
It would be wonderful if this could be implemented and added as an Ungoogled-Chromium feature/switch/flag option.
Possible solutions
On the linked fingerprint.com blog, this is the audio fingerprinting protection code implemented in Safari:
The description says this:
Alternatives
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: