mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-11 05:22:04 -08:00
Add leak warning for block_images 0.4.11 #170
This commit is contained in:
parent
b6f001ca07
commit
0dabcb726d
3 changed files with 5 additions and 1 deletions
|
|
@ -588,6 +588,7 @@ def launch_options(
|
||||||
|
|
||||||
# Set Firefox user preferences
|
# Set Firefox user preferences
|
||||||
if block_images:
|
if block_images:
|
||||||
|
LeakWarning.warn('block_images', i_know_what_im_doing)
|
||||||
firefox_user_prefs['permissions.default.image'] = 2
|
firefox_user_prefs['permissions.default.image'] = 2
|
||||||
if block_webrtc:
|
if block_webrtc:
|
||||||
firefox_user_prefs['media.peerconnection.enabled'] = False
|
firefox_user_prefs['media.peerconnection.enabled'] = False
|
||||||
|
|
|
||||||
|
|
@ -40,6 +40,9 @@ no_region: >-
|
||||||
block_webgl: >-
|
block_webgl: >-
|
||||||
Disabling WebGL is not recommended. Many WAFs will check if WebGL is enabled.
|
Disabling WebGL is not recommended. Many WAFs will check if WebGL is enabled.
|
||||||
|
|
||||||
|
block_images: >-
|
||||||
|
Blocking image requests has been reported to cause detection issues on major WAFs.
|
||||||
|
|
||||||
custom_fonts_only: >-
|
custom_fonts_only: >-
|
||||||
Disabling OS-specific fonts while spoofing your OS will make your browser fingerprint inconsistent.
|
Disabling OS-specific fonts while spoofing your OS will make your browser fingerprint inconsistent.
|
||||||
WAFs can detect this mismatch between your claimed OS and available system fonts.
|
WAFs can detect this mismatch between your claimed OS and available system fonts.
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "camoufox"
|
name = "camoufox"
|
||||||
version = "0.4.10"
|
version = "0.4.11"
|
||||||
description = "Wrapper around Playwright to help launch Camoufox"
|
description = "Wrapper around Playwright to help launch Camoufox"
|
||||||
authors = ["daijro <daijro.dev@gmail.com>"]
|
authors = ["daijro <daijro.dev@gmail.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue