Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 1.28 KB

Anonymous browsers.md

File metadata and controls

42 lines (26 loc) · 1.28 KB
title created modified
Anonymous browsers
2024-05-27T02:55:33.180Z
2024-06-14T02:30:56.403Z

Anonymous browsers

hysteria protocol is currently uncensored and undetected.


There are three kinds of anonymous browsers.

  • Container based, remote desktop connected browsers
docker pull linuxserver/firefox

# valina base image, without Unicode support
docker run -d --name firefox_browser --rm --expose 3000:3000 linuxserver/firefox

# configure `/System/Library/Fonts` to be available in Docker.app first then run this command
docker run -v /System/Library/Fonts:/usr/share/fonts:ro --name firefox_browser -d --rm -p 3000:3000 linuxserver/firefox

# Ubuntu and other Linux
docker run -v /usr/share/fonts:/usr/share/fonts:ro --name firefox_browser -d --rm -p 3000:3000 linuxserver/firefox

# official Unicode support
docker run -e DOCKER_MODS=linuxserver/mods:universal-package-install -e INSTALL_PACKAGES=font-noto-cjk -e LC_ALL=zh_CN.UTF-8 --name firefox_browser -d --rm -p 3000:3000 linuxserver/firefox
  • Container based, browser-in-browser emulation

https://github.com/titaniumnetwork-dev/Ultraviolet-App/wiki/Deploy-via-terminal

https://github.com/BrowserBox/BrowserBox

https://browse.cloudtabs.net/signupless_session

  • Builtin anonymous browser like Tor browser