All Projects → dockage → tor-privoxy

dockage / tor-privoxy

Licence: MIT License
Docker Tor proxy (http and shell) built on Alpine Linux

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to tor-privoxy

TorIpChanger
Python powered way to get a unique Tor IP
Stars: ✭ 42 (-17.65%)
Mutual labels:  tor, privoxy
torpool
Containerized pool of multiple Tor instances with load balancing and HTTP proxy.
Stars: ✭ 42 (-17.65%)
Mutual labels:  tor, privoxy
torchestrator
Spin up Tor containers and then proxy HTTP requests via these Tor instances
Stars: ✭ 32 (-37.25%)
Mutual labels:  tor, privoxy
scrapy plus
scrapy 常用爬网必备工具包
Stars: ✭ 18 (-64.71%)
Mutual labels:  tor
vDroid
official re-designed Android wallet 📳
Stars: ✭ 14 (-72.55%)
Mutual labels:  tor
tor-dht-poc
Anonymous DHT Accessible from Executable or Tor-Enabled Browser
Stars: ✭ 40 (-21.57%)
Mutual labels:  tor
tor-detect
Detect whether an IP address belongs to a Tor exit node.
Stars: ✭ 18 (-64.71%)
Mutual labels:  tor
BitChan
BitChan is a decentralized anonymous imageboard inspired by BitBoard and built on top of BitMessage with Tor and GnuPG.
Stars: ✭ 44 (-13.73%)
Mutual labels:  tor
TorScrapper
A Scraper made 100% in Python using BeautifulSoup and Tor. It can be used to scrape both normal and onion links. Happy Scraping :)
Stars: ✭ 24 (-52.94%)
Mutual labels:  tor
go-libp2p-tor-transport
🚧 WIP: tor transport for libp2p
Stars: ✭ 41 (-19.61%)
Mutual labels:  tor
meanOs
Mean Operating System - The first decentralized, artificially intelligent, MEAN.js stack, operating system. Mean OS is the only operating system hosted anonymous using a P2P network and a suite of non-standard in-browser delivery mechanisms. Mean OS proudly supports Brave and Tor, be free!
Stars: ✭ 62 (+21.57%)
Mutual labels:  tor
peeling-onions
A repository to store Deep Web (onion domain) crawler, scraper, and NLP tools for Tor network.
Stars: ✭ 18 (-64.71%)
Mutual labels:  tor
libtor
Bundle and run Tor inside your own project
Stars: ✭ 60 (+17.65%)
Mutual labels:  tor
dystopia
Anonymity on the Internet by Transparent way.
Stars: ✭ 97 (+90.2%)
Mutual labels:  tor
Zentalk-Web-Vue
Zentalk-Web Encrypted Chat
Stars: ✭ 16 (-68.63%)
Mutual labels:  tor
CyberSecurity-Box
Firewall-System based on OpenWRT or Pi-Hole with UnBound, TOR, optional Privoxy, opt. ntopng and opt. Configuration of the AVM FRITZ!Box with Presets for Security and Port-List. Please visit:
Stars: ✭ 20 (-60.78%)
Mutual labels:  tor
Attacks-on-Tor
Thirteen Years of Tor Attacks
Stars: ✭ 170 (+233.33%)
Mutual labels:  tor
sbws
Unofficial clone of gitweb.torproject.org. Report issues and open merge requests at: https://gitlab.torproject.org/tpo/network-health/sbws/
Stars: ✭ 15 (-70.59%)
Mutual labels:  tor
DunglasTorControlBundle
Integration of PHP TorControl library in Symfony
Stars: ✭ 13 (-74.51%)
Mutual labels:  tor
shh
Create Tor hidden services in Python.
Stars: ✭ 42 (-17.65%)
Mutual labels:  tor

tor-privoxy Docker Pulls Docker Stars MicroBadger Build Status Docker Automated build

This image combines Tor and Privoxy services to prepare proxy connection for http and shell.

Contributing

If you find this image useful here's how you can help:

  • Send a pull request with your awesome features and bug fixes
  • Help users resolve their issues.

Issues

Before reporting your issue please try updating Docker to the latest version and check if it resolves the issue. Refer to the Docker installation guide for instructions.

SELinux users should try disabling SELinux using the command setenforce 0 to see if it resolves the issue.

If the above recommendations do not help then report your issue along with the following information:

  • Output of the docker vers6 and docker info commands
  • The docker run command or docker-compose.yml used to start the image. Mask out the sensitive bits.
  • Please state if you are using Boot2Docker, VirtualBox, etc.

Getting started

Installation

Automated builds of the image are available on Dockerhub and is the recommended method of installation.

docker pull dockage/tor-privoxy

Alternatively you can build the image yourself.

docker build -t dockage/tor-privoxy github.com/dockage/tor-privoxy

Quick Start

The quickest way to get started is using docker-compose.

wget https://raw.githubusercontent.com/dockage/tor-privoxy/master/docker-compose.yml
docker-compose up

Alternately, you can manually launch the tor-privoxy container.

docker run --name='tor-privoxy' -d \
  -p 9050:9050 \
  -p 9051:9051 \
  -p 8118:8118 \
dockage/tor-privoxy:latest

The exposed ports are:

  • 9050: Tor proxy (SOCKS5)
  • 9051: Tor control port
  • 8118: Privoxy (HTTP Proxy)

Maintenance

Upgrading

To upgrade to newer releases:

  • Step 1: Download the updated Docker image:
docker pull dockage/tor-privoxy
  • Step 2: Stop the currently running image:
docker stop tor-privoxy
  • Step 3: Remove the stopped container
docker rm -v tor-privoxy
  • Step 4: Start the updated image
docker run --name tor-privoxy -d \
[OPTIONS] \
dockage/tor-privoxy:latest

Shell Access

For debugging and maintenance purposes you may want access the containers shell. If you are using Docker version 1.3.0 or higher you can access a running containers shell by starting bash using docker exec:

docker exec -it tor-privoxy sh
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].