Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Latest commit

 

History

History
91 lines (72 loc) · 4.74 KB

tor.md

File metadata and controls

91 lines (72 loc) · 4.74 KB

WARNING: none of the OpenBazaar or IPFS code has been audited at this point and very well may leak your IP. Do NOT trust it to remain private until it has passed a security audit.

Using OpenBazaar over Tor

OpenBazaar can be configured to run over the Tor network using either the Tor-only or dual-stack modes.

Tor-only

In Tor-only mode the daemon will only make outgoing network connections using the SOCKS5 proxy. It will also automatically configure itself as a Tor hidden service and accept incoming network connections on a .onion address. All bitcoin related networking connections or external API queries will also use Tor.

In this mode you will be able to connect to both Tor and clearnet nodes, communicate with them in real time and browse their stores. However, clearnet nodes will not be able to make outgoing connections to your node and may not be able to see your store. The lone exception here would be if someone running a dual-stack node visits your store, then your store data would be cached and seeded by that node ― making it visible to clearnet nodes.

Dual-stack

Dual-stack mode allows you to listen simultaneously on both Tor (via an onion address just like above) and also the clearnet. The reason you might want to run in this configuration is to allow you to browse stores behind Tor without preventing clearnet nodes from viewing your store. You will also serve as a bridge between Tor and the clearnet as noted above.

WARNING: Dual-stack mode is NOT private! Your IP will be visible on the network.

Configuring Tor

Tor can be configured via the config file or a runtime option. You must have Tor running (either the Tor daemon or browser-bundle) on the same machine to use OpenBazaar over Tor.

Via config file

Edit the config file found in the openbazaar2.0 data directory to the following for Tor-only mode:

"Addresses": {
    "Swarm": [
      "/onion/erhkddypoy6qml6h:4003"
    ]
  },

Or the following for dual-stack mode:

"Addresses": {
    "Swarm": [
      "/onion/erhkddypoy6qml6h:4003",
      "/ip4/0.0.0.0/tcp/4001",
      "/ip6/::/tcp/4001"
    ]
  },

In both cases substituting the onion address above for your onion address found as the prefix of the .onion_key file in the same data directory.

Via runtime option

For Tor-only mode run openbazaar-go with the --tor flag. Example:

./openbazaar-go start --tor

For dual-stack mode use the --dualstack flag. Example:

./openbazaar-go start --dualstack

The runtime option will override the swarm address configuration in the config file and use default ports.

Advanced Tor configuration

If you changed the tor control port in your torrc file or you require authentication you can set both the control port and your tor control password in the openbazaar-go config file:

"Tor-config": {
    "Password": "yourpassword", 
    "TorControl": "127.0.0.1:9000"
},

Aternatively you can pass the tor control password in as a start up option:

./openbazaar-go start --torpassword yourpassword

Configuring the client

The openbazaar-desktop client must also be configured to run over Tor as some html tags, such as IMG, are allowed in the profile and store data and will trigger the client to make outgoing network calls.

To set tor in the reference client select Manage Servers from the menu then check Use Tor and make sure the socks5 proxy url is correct.

Important Privacy Considerations

All nodes in OpenBazaar are identified by a peer ID such as QmNgBZN7z1CfMLbwyEwnGoixjbSaBcP9fS5ecMzZwCq3Ku. Other nodes in the network will associate your peer ID with your network addresses (whether IPv4, IPv6, or onion). If you run openbazaar-go in the clear even once, you must assume someone has recorded the mapping between your peer ID and your IP address. Therefore using a given peer ID in the clear, then switching to Tor-only mode will almost certainly blow your privacy.

Therefore if you wish to run in Tor-only mode, it is highly recommended that you use a fresh peer ID which has never been used on the network and has not had a chance to get associated with your actual IP address. To get a new peer ID you can just delete your data folder and restart openbazaar-go. It will create a new peer ID on start up.

Finally, as noted in the bitcoind doc the default SPV wallet has known privacy issues which may allow attackers to associate your bitcoin transactions with your OpenBazaar peer ID. For those looking to maximize privacy it's recommended you switch out the default wallet for bitcoind. See the bitcoind doc for instructions.