This repository has been archived on 2024-07-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
etckeeper/tor/torsocks.conf
T
root 8d303d2bbe committing changes in /etc made by "apt install torbrowser-launcher"
Packages with configuration changes:
+tor 0.4.5.10-1~deb11u1 amd64
+torbrowser-launcher 0.3.5-2 amd64
+torsocks 2.3.0-3 amd64

Package changes:
+libdouble-conversion3 3.1.5-6.1 amd64
+libmd4c0 0.4.7-2 amd64
+libpcre2-16-0 10.36-2 amd64
+libqt5core5a 5.15.2+dfsg-9 amd64
+libqt5dbus5 5.15.2+dfsg-9 amd64
+libqt5designer5 5.15.2-5 amd64
+libqt5gui5 5.15.2+dfsg-9 amd64
+libqt5help5 5.15.2-5 amd64
+libqt5network5 5.15.2+dfsg-9 amd64
+libqt5printsupport5 5.15.2+dfsg-9 amd64
+libqt5sql5 5.15.2+dfsg-9 amd64
+libqt5sql5-sqlite 5.15.2+dfsg-9 amd64
+libqt5svg5 5.15.2-3 amd64
+libqt5test5 5.15.2+dfsg-9 amd64
+libqt5widgets5 5.15.2+dfsg-9 amd64
+libqt5xml5 5.15.2+dfsg-9 amd64
+libxcb-icccm4 0.4.1-1.1 amd64
+libxcb-image0 0.4.0-1+b3 amd64
+libxcb-keysyms1 0.4.0-1+b2 amd64
+libxcb-render-util0 0.3.9-1+b1 amd64
+libxcb-xinerama0 1.14-3 amd64
+libxcb-xinput0 1.14-3 amd64
+libxcb-xkb1 1.14-3 amd64
+libxkbcommon-x11-0 1.0.3-2 amd64
+python3-packaging 20.9-2 all
+python3-pyparsing 2.4.7-1 all
+python3-pyqt5 5.15.2+dfsg-3 amd64
+python3-pyqt5.sip 12.8.1-1+b2 amd64
+python3-socks 1.7.1+dfsg-1 all
+qt5-gtk-platformtheme 5.15.2+dfsg-9 amd64
+qttranslations5-l10n 5.15.2-2 all
+tor 0.4.5.10-1~deb11u1 amd64
+tor-geoipdb 0.4.5.10-1~deb11u1 all
+torbrowser-launcher 0.3.5-2 amd64
+torsocks 2.3.0-3 amd64
2022-05-16 14:38:36 +02:00

45 lines
2.0 KiB
Plaintext

# This is the configuration for libtorsocks (transparent socks) for use
# with tor, which is providing a socks server on port 9050 by default.
#
# Lines beginning with # and blank lines are ignored
# Much more documentation than provided in these comments can be found in
#
# torsocks.conf(5), torsocks(1) and torsocks(8) manpages.
# Default Tor address and port. By default, Tor will listen on localhost for
# any SOCKS connection and relay the traffic on the Tor network.
TorAddress 127.0.0.1
TorPort 9050
# Tor hidden sites do not have real IP addresses. This specifies what range of
# IP addresses will be handed to the application as "cookies" for .onion names.
# Of course, you should pick a block of addresses which you aren't going to
# ever need to actually connect to. This is similar to the MapAddress feature
# of the main tor daemon.
OnionAddrRange 127.42.42.0/24
# SOCKS5 Username and Password. This is used to isolate the torsocks connection
# circuit from other streams in Tor. Use with option IsolateSOCKSAuth (on by
# default) in tor(1). TORSOCKS_USERNAME and TORSOCKS_PASSWORD environment
# variable overrides these options.
#SOCKS5Username <username>
#SOCKS5Password <password>
# Set Torsocks to accept inbound connections. If set to 1, listen() and
# accept() will be allowed to be used with non localhost address. (Default: 0)
#AllowInbound 1
# Set Torsocks to allow outbound connections to the loopback interface.
# If set to 1, connect() will be allowed to be used to the loopback interface
# bypassing Tor. If set to 2, in addition to TCP connect(), UDP operations to
# the loopback interface will also be allowed, bypassing Tor. This option
# should not be used by most users. (Default: 0)
#AllowOutboundLocalhost 1
# Set Torsocks to use an automatically generated SOCKS5 username/password based
# on the process ID and current time, that makes the connections to Tor use a
# different circuit from other existing streams in Tor on a per-process basis.
# If set, the SOCKS5Username and SOCKS5Password options must not be set.
# (Default: 0)
#IsolatePID 1