whoogle-search

whoogle-search

开源隐私保护搜索引擎替代方案

Whoogle Search是一个开源搜索引擎,提供无广告和隐私保护的Google搜索结果。它不使用JavaScript、cookies或IP追踪,支持Tor和代理,可自定义主题,并有自动完成功能。项目易于部署,支持Docker和多个平台,是Google搜索的安全替代方案。用户可将其设为默认搜索引擎,体验无广告和无跟踪的搜索。

Whoogle Search搜索引擎隐私保护开源项目Google替代品Github

Whoogle Search

Latest Release License: MIT tests buildx codebeat badge Docker Pulls

<table> <tr> <td><a href="https://sr.ht/~benbusby/whoogle-search">SourceHut</a></td> <td><a href="https://github.com/benbusby/whoogle-search">GitHub</a></td> </tr> </table>

Get Google search results, but without any ads, JavaScript, AMP links, cookies, or IP address tracking. Easily deployable in one click as a Docker app, and customizable with a single config file. Quick and simple to implement as a primary search engine replacement on both desktop and mobile.

Contents

  1. Features
  2. Install/Deploy Options
    1. Heroku Quick Deploy
    2. Render.com
    3. Repl.it
    4. Fly.io
    5. Koyeb
    6. pipx
    7. pip
    8. Manual
    9. Docker
    10. Arch/AUR
    11. Helm/Kubernetes
  3. Environment Variables and Configuration
  4. Usage
  5. Extra Steps
    1. Set Primary Search Engine
    2. Custom Redirecting
    3. Custom Bangs
    4. Prevent Downtime (Heroku Only)
    5. Manual HTTPS Enforcement
    6. Using with Firefox Containers
    7. Reverse Proxying
      1. Nginx
  6. Contributing
  7. FAQ
  8. Public Instances
  9. Screenshots

Features

  • No ads or sponsored content
  • No JavaScript*
  • No cookies**
  • No tracking/linking of your personal IP address***
  • No AMP links
  • No URL tracking tags (i.e. utm=%s)
  • No referrer header
  • Tor and HTTP/SOCKS proxy support
  • Autocomplete/search suggestions
  • POST request search and suggestion queries (when possible)
  • View images at full res without site redirect (currently mobile only)
  • Light/Dark/System theme modes (with support for custom CSS theming)
  • Randomly generated User Agent
  • Easy to install/deploy
  • DDG-style bang (i.e. !<tag> <query>) searches
  • User-defined custom bangs
  • Optional location-based searching (i.e. results near <city>)
  • Optional NoJS mode to view search results in a separate window with JavaScript blocked

<sup>*No third party JavaScript. Whoogle can be used with JavaScript disabled, but if enabled, uses JavaScript for things like presenting search suggestions.</sup>

<sup>**No third party cookies. Whoogle uses server side cookies (sessions) to store non-sensitive configuration settings such as theme, language, etc. Just like with JavaScript, cookies can be disabled and not affect Whoogle's search functionality.</sup>

<sup>***If deployed to a remote server, or configured to send requests through a VPN, Tor, proxy, etc.</sup>

Install

There are a few different ways to begin using the app, depending on your preferences:


Heroku Quick Deploy

Deploy

Provides:

  • Easy Deployment of App
  • A HTTPS url (https://<your app name>.herokuapp.com)

Notes:

  • Requires a PAID Heroku Account.
  • Sometimes has issues with auto-redirecting to https. Make sure to navigate to the https version of your app before adding as a default search engine.

Render

Create an account on render.com and import the Whoogle repo with the following settings:

  • Runtime: Python 3
  • Build Command: pip install -r requirements.txt
  • Run Command: ./run

Repl.it

Run on Repl.it

Note: Requires a (free) Replit account

Provides:

  • Free deployment of app
  • Free HTTPS url (https://<app name>.<username>.repl.co)
    • Supports custom domains
  • Downtime after periods of inactivity (solution)

Fly.io

You will need a Fly.io account to deploy Whoogle. The free allowances are enough for personal use.

Install the CLI: https://fly.io/docs/hands-on/installing/

Deploy the app

flyctl auth login flyctl launch --image benbusby/whoogle-search:latest

The first deploy won't succeed because the default internal_port is wrong. To fix this, open the generated fly.toml file, set services.internal_port to 5000 and run flyctl launch again.

Your app is now available at https://<app-name>.fly.dev.


Koyeb

Use one of the following guides to install Whoogle on Koyeb:

  1. Using GitHub: https://www.koyeb.com/docs/quickstart/deploy-with-git
  2. Using Docker: https://www.koyeb.com/docs/quickstart/deploy-a-docker-application

pipx

Persistent install:

pipx install git+https://github.com/benbusby/whoogle-search.git

Sandboxed temporary instance:

pipx run --spec git+https://github.com/benbusby/whoogle-search.git whoogle-search


pip

pip install whoogle-search

$ whoogle-search --help usage: whoogle-search [-h] [--port <port number>] [--host <ip address>] [--debug] [--https-only] [--userpass <username:password>] [--proxyauth <username:password>] [--proxytype <socks4|socks5|http>] [--proxyloc <location:port>] Whoogle Search console runner optional arguments: -h, --help Show this help message and exit --port <port number> Specifies a port to run on (default 5000) --host <ip address> Specifies the host address to use (default 127.0.0.1) --debug Activates debug mode for the server (default False) --https-only Enforces HTTPS redirects for all requests --userpass <username:password> Sets a username/password basic auth combo (default None) --proxyauth <username:password> Sets a username/password for a HTTP/SOCKS proxy (default None) --proxytype <socks4|socks5|http> Sets a proxy type for all connections (default None) --proxyloc <location:port> Sets a proxy location for all connections (default None)

See the available environment variables for additional configuration.


Manual

Note: Content-Security-Policy headers can be sent by Whoogle if you set WHOOGLE_CSP.

Dependencies

  • Python3
  • libcurl4-openssl-dev and libssl-dev
    • macOS: brew install openssl curl-openssl
    • Ubuntu: sudo apt-get install -y libcurl4-openssl-dev libssl-dev
    • Arch: pacman -S curl openssl

Install

Clone the repo and run the following commands to start the app in a local-only environment:

git clone https://github.com/benbusby/whoogle-search.git cd whoogle-search python3 -m venv venv source venv/bin/activate pip install -r requirements.txt ./run

See the available environment variables for additional configuration.

systemd Configuration

After building the virtual environment, you can add something like the following to /lib/systemd/system/whoogle.service to set up a Whoogle Search systemd service:

[Unit] Description=Whoogle [Service] # Basic auth configuration, uncomment to enable #Environment=WHOOGLE_USER=<username> #Environment=WHOOGLE_PASS=<password> # Proxy configuration, uncomment to enable #Environment=WHOOGLE_PROXY_USER=<proxy username> #Environment=WHOOGLE_PROXY_PASS=<proxy password> #Environment=WHOOGLE_PROXY_TYPE=<proxy type (http|https|proxy4|proxy5) #Environment=WHOOGLE_PROXY_LOC=<proxy host/ip> # Site alternative configurations, uncomment to enable # Note: If not set, the feature will still be available # with default values. #Environment=WHOOGLE_ALT_TW=farside.link/nitter #Environment=WHOOGLE_ALT_YT=farside.link/invidious #Environment=WHOOGLE_ALT_RD=farside.link/libreddit #Environment=WHOOGLE_ALT_MD=farside.link/scribe #Environment=WHOOGLE_ALT_TL=farside.link/lingva #Environment=WHOOGLE_ALT_IMG=farside.link/rimgo #Environment=WHOOGLE_ALT_WIKI=farside.link/wikiless #Environment=WHOOGLE_ALT_IMDB=farside.link/libremdb #Environment=WHOOGLE_ALT_QUORA=farside.link/quetre # Load values from dotenv only #Environment=WHOOGLE_DOTENV=1 Type=simple User=<username> # If installed as a package, add: ExecStart=<python_install_dir>/python3 <whoogle_install_dir>/whoogle-search --host 127.0.0.1 --port 5000 # For example: # ExecStart=/usr/bin/python3 /home/my_username/.local/bin/whoogle-search --host 127.0.0.1 --port 5000 # Otherwise if running the app from source, add: ExecStart=<whoogle_repo_dir>/run # For example: # ExecStart=/var/www/whoogle-search/run WorkingDirectory=<whoogle_repo_dir> ExecReload=/bin/kill -HUP $MAINPID Restart=always RestartSec=3 SyslogIdentifier=whoogle [Install] WantedBy=multi-user.target

Then,

sudo systemctl daemon-reload
sudo systemctl enable whoogle
sudo systemctl start whoogle

Tor Configuration optional

If routing your request through Tor you will need to make the following adjustments. Due to the nature of interacting with Google through Tor we will need to be able to send signals to Tor and therefore authenticate with it.

There are two authentication methods, password and cookie. You will need to make changes to your torrc:

  • Cookie

    1. Uncomment or add the following lines in your torrc:

      • ControlPort 9051
      • CookieAuthentication 1
      • DataDirectoryGroupReadable 1
      • CookieAuthFileGroupReadable 1
    2. Make the tor auth cookie readable:

      • This is assuming that you are using a dedicated user to run whoogle. If you are using a different user replace whoogle with that user.

      1. chmod tor:whoogle /var/lib/tor
      2. chmod tor:whoogle /var/lib/tor/control_auth_cookie
    3. Restart the tor service:

      • systemctl restart tor
    4. Set the Tor environment variable to 1, WHOOGLE_CONFIG_TOR. Refer to the Environment Variables section for more details.

      • This may be added in the systemd unit file or env file WHOOGLE_CONFIG_TOR=1
  • Password

    1. Run this command:

      • tor --hash-password {Your Password Here}; put your password in place of {Your Password Here}.
      • Keep the output of this command, you will be placing it in your torrc.
      • Keep the password input of this command, you will be using it later.
    2. Uncomment or add the following lines in your torrc:

      • ControlPort 9051
      • HashedControlPassword {Place output here}; put the output of the previous command in place of {Place output here}.
    3. Now take the password from the first step and place it in the control.conf file within the whoogle working directory, ie. misc/tor/control.conf

      • If you want to place your password file in a different location set this location with the WHOOGLE_TOR_CONF environment variable. Refer to the Environment Variables section for more details.
    4. Heavily restrict access to control.conf to only be readable by the user running whoogle:

      • chmod 400 control.conf
    5. Finally set the Tor environment variable and use password variable to 1, WHOOGLE_CONFIG_TOR and WHOOGLE_TOR_USE_PASS. Refer to the Environment Variables section for more details.

      • These may be added to the systemd unit file or env file:
        • WHOOGLE_CONFIG_TOR=1
        • WHOOGLE_TOR_USE_PASS=1

Manual (Docker)

  1. Ensure the Docker daemon is running, and is accessible by your user account
  • To add user permissions, you can execute sudo usermod -aG docker yourusername
  • Running docker ps should return something besides an error. If you encounter an error saying the daemon isn't running, try sudo systemctl start docker (Linux) or ensure the docker tool is running (Windows/macOS).
  1. Clone and deploy the docker app using a method below:

Docker CLI

Through Docker Hub:

docker pull benbusby/whoogle-search docker run --publish 5000:5000 --detach --name whoogle-search benbusby/whoogle-search:latest

or with docker-compose:

git clone https://github.com/benbusby/whoogle-search.git cd whoogle-search docker-compose up

or by building yourself:

git clone https://github.com/benbusby/whoogle-search.git cd whoogle-search docker build --tag whoogle-search:1.0 . docker run --publish 5000:5000 --detach --name whoogle-search whoogle-search:1.0

Optionally, you can also enable some of the following environment variables to further customize your instance:

docker run --publish 5000:5000 --detach --name whoogle-search \ -e WHOOGLE_USER=username \ -e WHOOGLE_PASS=password \ -e WHOOGLE_PROXY_USER=username \ -e WHOOGLE_PROXY_PASS=password \ -e WHOOGLE_PROXY_TYPE=socks5 \ -e WHOOGLE_PROXY_LOC=ip \ whoogle-search:1.0

And kill with: docker rm --force whoogle-search

Using Heroku CLI

heroku login heroku container:login git clone https://github.com/benbusby/whoogle-search.git cd whoogle-search heroku create heroku container:push web heroku container:release web heroku open

This series of commands can take a while, but once you run it once, you shouldn't have to run it again. The final command, heroku open will launch a tab in your web browser, where you can test out Whoogle and even set it as your primary search engine. You may also edit environment variables from your app’s Settings tab in the Heroku Dashboard.


Arch Linux & Arch-based Distributions

There is an AUR package available, as well as a pre-built and daily updated package available at

编辑推荐精选

问小白

问小白

全能AI智能助手,随时解答生活与工作的多样问题

问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。

热门AI助手AI对话AI工具聊天机器人
Transly

Transly

实时语音翻译/同声传译工具

Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。

讯飞智文

讯飞智文

一键生成PPT和Word,让学习生活更轻松

讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。

AI办公办公工具AI工具讯飞智文AI在线生成PPTAI撰写助手多语种文档生成AI自动配图热门
讯飞星火

讯飞星火

深度推理能力全新升级,全面对标OpenAI o1

科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。

热门AI开发模型训练AI工具讯飞星火大模型智能问答内容创作多语种支持智慧生活
Spark-TTS

Spark-TTS

一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型

Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。

Trae

Trae

字节跳动发布的AI编程神器IDE

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

AI工具TraeAI IDE协作生产力转型热门
咔片PPT

咔片PPT

AI助力,做PPT更简单!

咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。

讯飞绘文

讯飞绘文

选题、配图、成文,一站式创作,让内容运营更高效

讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。

热门AI辅助写作AI工具讯飞绘文内容运营AI创作个性化文章多平台分发AI助手
材料星

材料星

专业的AI公文写作平台,公文写作神器

AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。

openai-agents-python

openai-agents-python

OpenAI Agents SDK,助力开发者便捷使用 OpenAI 相关功能。

openai-agents-python 是 OpenAI 推出的一款强大 Python SDK,它为开发者提供了与 OpenAI 模型交互的高效工具,支持工具调用、结果处理、追踪等功能,涵盖多种应用场景,如研究助手、财务研究等,能显著提升开发效率,让开发者更轻松地利用 OpenAI 的技术优势。

下拉加载更多