Skip to content

Instantly share code, notes, and snippets.

@UlisesGascon
Created August 13, 2019 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UlisesGascon/3ebb9bde0c135f464fbb525a9f20e20c to your computer and use it in GitHub Desktop.
Save UlisesGascon/3ebb9bde0c135f464fbb525a9f20e20c to your computer and use it in GitHub Desktop.
Montar un docker con TOR en local

Montar/lanzar un docker con TOR en local

  1. Tenemos que tener instalado Docker
  2. ℹ️ Usaremos esta imagen: osminogin/tor-simple
  3. Nos traemos la imagen: docker pull osminogin/tor-simple
  4. Analicemos el contenido del Docker
  5. Lanzamos el Docker: docker run -p 127.0.0.1:9050:9050 --name tor osminogin/tor-simple
  6. Verificamos la conexión
curl  https://check.torproject.org #Inseguro
curl https://ipinfo.io/ip # Ip pública de salida
 
curl --socks5-hostname localhost:9050 https://check.torproject.org #Torificado
curl --socks5-hostname localhost:9050 https://ipinfo.io/ip # Ip de tu node de salida
# Verificar en: https://metrics.torproject.org/rs.html#search/{{IP}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment