Questions tagged [tor-browser-bundle]

The Tor Browser Bundle is a packaged Firefox web browser pre-configured to use the Tor network. All tools and programs needed to connect to Tor are included in the bundle.

The Tor Browser Bundle lets you use Tor on Windows, Mac OS X, or Linux without needing to install any software. It can run off a USB flash drive, comes with a pre-configured web browser (Firefox-based) to protect your anonymity, and is self-contained.

20 questions
25
votes
5 answers

Using Selenium WebDriver with Tor

Because Tor Browser Bundle is just a patched version of Firefox, it seems that it should be possible to use a FirefoxDriver with Tor Browser. This is what I've tried so far: String torPath = "C:\\Users\\My User\\Desktop\\Tor Browser\\Start Tor…
Joel Christophel
  • 2,604
  • 4
  • 30
  • 49
2
votes
1 answer

Can't use TorBrowser with Selenium ? (Python Linux)

I'd like to run TorBrowser through selenium. I've been able to use the tor network through selenium using the tor daemon and a firefox instance. I'd like to use TorBrowser to be able to run multiple instances using different tor exit relay. I know…
tom45
  • 31
  • 4
2
votes
1 answer

How to reproduce tor build using gitian?

Please refer me to the steps to reproduce a tor build using gitian. I have been trying to build the tor browser bundle using steps mentioned at the following link- https://trac.torproject.org/projects/tor/wiki/doc/TorBrowser/BuildingWithGitian But I…
lipak
  • 69
  • 6
1
vote
1 answer

How do I re-enable drag and drop (previously working) for Tor Browser 12?

Up until the latest update of the Tor Browser 12.0, I was able drag and drop images/links to my desktop. My system is Windows 11. With this release I get a red circle with a red diagonal line indicating it's disabled. My install of the Tor…
cs1
  • 38
  • 5
1
vote
1 answer

tor does not honor MaxCircuitDirtiness

I am having a strange behaviour when using tor, it does not take into account the MaxCircuitDirtiness I have set in the configuration at Browser\TorBrowser\Data\Tor\torrc... nor the default value that is supposed to be 10 minutes. I use…
1
vote
0 answers

Achieve site specific TOR exit nodes

Any one who's had enough experience using TOR (browser) and is persistent and adamant enough to continue to do so to regain a little of their privacy and anonymity on the internet knows that this could start becoming very challenging for many sites…
Umit Cakar
  • 13
  • 3
1
vote
1 answer

Can't get xpi to work in TorBrowser

I created a small little HelloWorld extension and was able to get it to work in Firefox 31 (which TorBrowser is based on). However I'm unable to get it to work in TorBrowser. Any idea why that might be and how I can fix? This is my main.js var…
A F
  • 7,424
  • 8
  • 40
  • 52
1
vote
1 answer

Add-on compatibility in TorBrowser

I have a FireFox add-on which installs successfully with latest Firefox ESR (currently 24.6.0), but returns this error when attempting to install on the latest Tor Browser Bundle. My Test WebDriver could not be installed because it is not…
arserbin3
  • 6,010
  • 8
  • 36
  • 52
0
votes
0 answers

I recently activated tor mode in my terminal. Now I have a running log of turning on/turning off tor mode above my name@name:~$

I recently activated tor mode in my terminal. Now I have a running log of turning on/turning off tor mode above my name@name:~$, and was wondering if there is a way to get rid of this? Example of terminal screen: Tor mode is activated. Every command…
Tanu
  • 1
  • 1
0
votes
1 answer

how to open tor browser in mac using python?

I'm trying to open tor browser using mac os in python, but always getting permission denied error, we checked the folder permission and it is there as read and write only def open_tor(): # careful about the / when you it's usually \ …
Sanjay
  • 75
  • 10
0
votes
0 answers

How to do shortcuts using selenium and python for tor browser?

I am trying to create a new identity (Command+Shift+U) in the tor browser controlled by python and selenium. Unfortunately, sendkeys does not work and I would prefer to use a headless browser and not use pyautogui. Any tips, advice, or other tips…
selsolh
  • 83
  • 4
0
votes
1 answer

error while opening tor browser using Python selenium firefoxdriver

i am trying to open tor browser using selenium python this is the code from selenium import webdriver from selenium.webdriver.firefox.firefox_profile import FirefoxProfile from selenium.webdriver.firefox.firefox_binary import FirefoxBinary import…
0
votes
0 answers

tbselenium tor browser unable to get url on ubuntu

I am trying to use Tor browser with selenium and python on ubuntu. Browser is opening but showing proxy error. Here is code I am trying: from time import sleep from tbselenium.tbdriver import TorBrowserDriver driver =…
V.Khakhil
  • 285
  • 5
  • 22
0
votes
1 answer

Python Selenium with Tor Browser (Ubuntu)

I try to open a Tor Browser using Selenium on Ubuntu 18. I have tried lots of examples but with no success. proxyIP = "127.0.0.1" proxyPort = "9050" profileTor = '/etc/tor/' # torrc binary =…
0
votes
1 answer

How to run the Tor Browser with Selenium?

I am trying to automate testing of the Tor Browser through Selenium, but as of yet I cannot get it to work. All of my attempts are some sort of variation of the following code: FirefoxProfile profile = new FirefoxProfile(new…
Gertjan Franken
  • 596
  • 1
  • 5
  • 24
1
2