Tor is an open-source application used for internet anonymity and anti-censorship.
0
votes
0answers
6 views
eclipse ide svn network connection using tor
I am working on a project where we use a remote subversion server. The server uses the port 9090. I can access the server from my home PC. However, when I am in school, I don't have access probably ...
1
vote
0answers
9 views
Python - sockispy with mechanize (without monkeypatching)
I want to know if there is a way to get mechanize.Browser to use a socks proxy (tor) without having to do this.
import socks, socket
socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "127.0.0.1", port)
...
1
vote
1answer
27 views
Use htaccess to redirect list of tor exit node IPs to a page
Edit: Cron was fine, I had forgotten to turn RewriteEngine On, leaving this here in case anyone else wants to do the same as I couldn't find a guide anywhere.
It's been a while since I've used Apache ...
0
votes
0answers
12 views
Trying to run Virtualbox through TOR middlebox
i REALLY need some help before my laptop goes through the wall.
I want to run a virtual machine through tor middlebox. I want the entire VM`s connection to go through the tor network. (Im wanting to ...
0
votes
1answer
18 views
Make 2 HTTP-requests in a session through Tor with the same exit-node
I would like to use the library requests to make two HTTP-requests within a session.
However I don't know whether the IP adresses will be the same for both HTTP-requests (within that session).
Can ...
2
votes
2answers
96 views
Get new Ip in python
I'm currently trying to get a new ip via python.
I found this script on stackoverflow:
import urllib2
from TorCtl import TorCtl
proxy_support = urllib2.ProxyHandler({"http" : "127.0.0.1:8118"})
...
2
votes
1answer
88 views
Can the twisted web client make requests through a SOCKS proxy?
I'm writing a python program that uses twisted.web.client.Agent to make https requests. I'd like to optionally make these requests through Tor, which I should be able to do if I set my socks5 proxy to ...
0
votes
1answer
46 views
How to stop Java from preresolving my host while browsing via Proxy ( Tor )?
I am currently developing a java application that is using a tor proxy running on localhost to fetch a script that is displaying the requesters ip.
I would like the work to be done mostly by the tor ...
0
votes
1answer
34 views
Multithread proxy change but once
Let say I have a code like this:
def func1(a,b,c):
try:
p = pycurl.Curl()
p.setopt(pycurl.PROXY, "127.0.0.1")
p.setopt(pycurl.PROXYPORT, 9050)
...
0
votes
0answers
55 views
Using Apache to mirror a Tor Hidden Service on the public Internet
I have been fooling around with using apache as a reverse/CGI proxy to forward a tor hidden service to the public Internet. Similar to what the tor2web project does.
It looks like ProxyPass is my ...
2
votes
2answers
70 views
How to check if Tor is running within PHP?
I'm using Tor with PHP, for now, everything is working properly. But, when I try to start Tor from php it'll sometimes throw an error becuase Tor is currently running, so i've been wondering if there ...
1
vote
1answer
58 views
How to use TOR with Python3 urllib.request.urlopen()?
I would like to use TOR with Python3 urllib.request.urlopen() but all examples I found use Python2.
https://code.google.com/p/socksipy-branch/
I came across socksipy but I can't get it to work with ...
0
votes
0answers
46 views
How to use Tor on WebBrowsers?
I'm trying to use tor on my webbrowser to provide proxy.. I dont mean I want to use WebResponse or any other sockets. I just want to tor as proxy of webbrowser. and I dont want to change registry ...
6
votes
1answer
208 views
Why might Perl allow for http websites using TOR but not https?
I am having difficulty using perl to visit a website via TOR if it is an https site but not if it is an http site.
#!/usr/bin/perl
use strict;
use WWW::Mechanize;
use LWP::Protocol::socks;
use ...
0
votes
0answers
75 views
Vidalia and Tor: Controlling when the identity changes
I'm performing some latency measurements over the Tor network. TO avoid congesting the relays, each run of my test lasts about 15 to 20 minutes, consuming an average bandwidth of 2 kbps.
Because of ...
0
votes
1answer
53 views
How to use HtmlUnit with Tor?
I want to use HtmlUnit with Tor. But I can't connect to Tor with HtmlUnit (I have Tor Browser Bundle running). I read on the TOR documentation that I can use Tor with other aplications by a socks ...
2
votes
0answers
102 views
Trouble authenticating Tor with python
Probably doing something very silly here, but I'm having some trouble authenticating automatically through Tor.
I'm using 32 bit ubuntu 12.04 with obfuscated bridges.
This should be all the relevant ...
4
votes
1answer
255 views
How can I connect to a Tor hidden service using curl in php?
I'm trying to connect to a tor hidden service using the following php:
$url = 'http://jhiwjjlqpyawmpjx.onion/'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, ...
0
votes
0answers
45 views
Bazaar CVS (bzr) with proxy (socks using tor)
I (on ubuntu) need to use bzr behind institute's proxy which restricts bzr to connect.So, is there anyway to connect it through socks proxy obtained by tor(vidalia) as i am not able to successfully ...
0
votes
0answers
160 views
Open tor browser with selenium
Is it possible to make selenium use the TOR browser? Does anyone have any code they could copy-paste?
1
vote
1answer
50 views
using tor with urllib python
I am trying to use TOR with Urllib as given in Changing tor identity inside python script:. However I am not able to understand where shall I find the configuration files.
can anyone give a easier ...
0
votes
0answers
44 views
Drupal 7 ajax urls spammed by tor: How to block them?
Since 2 days, I'm getting 15 calls per seconds from TOR proxies on page: POST /fr/file/ajax/field_user_cv/und/0/form-vSpx1-pXq9g8u1ejgYm
I dont know what to do. My bandwidh exploded (10gb per day, ...
0
votes
0answers
193 views
Java: Tor HTTP Request using Silvertunnel Netlib
I'm trying to make an anonymized HTTP-request from within a Java application over the Tor network using Silvertunnel Netlib (https://silvertunnel.org/doc/netlib.html). I'm using the example code, ...
1
vote
2answers
176 views
TOR network on port 80 or 443 - TOR on shared server
I want to screen scrape using PHP cURL from a shared server (only ports 80 and 443 are open) from behind the TOR network. I try the code below and get "Access Denied" error from my server because port ...
1
vote
1answer
188 views
Connecting to .onion network with python
I want make python to get into .onion sites from console, below example can use tor in python but when i try to connect to .onion sites it gives error such as "Name or service not known", how do i ...
0
votes
0answers
87 views
Tor with Python: Actively Refusing Connection
I'm trying to interface with Tor using Python, but it keeps refusing my connection. Here is my code:
from TorCtl import TorCtl
conn = TorCtl.connect(controlAddr="127.0.0.1", controlPort=9051, ...
2
votes
0answers
182 views
Make two linear cURL requests over TOR with same IP
Before response my question - be awared that's not related to the following subjects:
cURL: two seperate requests, same session
select outgoing ip for curl request
PHP Multiple Curl Requests
I'm ...
-1
votes
1answer
374 views
How can I route all my internet traffic via tor network? [closed]
I suppose it is possible to to route all inbound and outbound internet traffic via tor network. I can I do it in my linux machine ?
1
vote
1answer
288 views
Connection to TOR Java
I was looking at the silvertunnel library but struggling to build a successful connection. The problem I'm having is that the connection takes over 10 minutes to give output. I was looking through one ...
0
votes
0answers
55 views
Ruby on rails Socksify issue
Im using a rake task to perform massive update, but i need to change my ip address constantly and im using Tor for that.
Now, Tor doesn't flows all my ruby command prompt traffic so im using Ruby ...
0
votes
0answers
119 views
How to configure Tor so that Adobe Flash Player can work on Tor?
How to configure Tor so that Adobe Flash Player can work on Tor? My goal is to use Vidalia's capability, which allows one to utilize false IPs & preserve anonymity on the Internet.
4
votes
1answer
130 views
Securing a connection using TOR
Are there any possible tutorials or libaries that could be used to secure a connection through using TOR? I've looked for some example usage but my research didn't yield any solid results. I came ...
1
vote
1answer
678 views
using tor as a SOCKS5 proxy with python urllib2 or mechanize
My goal is to use python's mechanize with a tor SOCKS proxy.
I am not using a GUI with the following Ubuntu version:
Description: Ubuntu 12.04.1 LTS
Release: 12.04
...
0
votes
0answers
199 views
Multiple TOR processes
I am brand new to TOR and I feel like multiple TORs should be considered. The multiple tors I mentioned here are not only multiple instances, but also using different proxy ports for each, like what ...
0
votes
1answer
415 views
using polipo and tor with python mechanize browser reveals ip on one site and not another
I have minimal knowledge of networking. I have discovered a paradox and need advice on how to approach the solution.
Experiment 1: A mechanize browser with a tor/polipo http proxy in a python script ...
0
votes
0answers
202 views
Unable to run AlchemyAPI examples
I installed AlchemyApi on my system and also obtained the Api key. But when I run the examples as mentioned in the README.txt file, I get the following errors:-
AlchemyAPI_Java-0.8/testdir$java -jar ...
2
votes
1answer
168 views
Haskell SOCKS5 Refusing to Connect
I have been working on this problem for weeks but just can't seem to get it...
I've been trying to write a Haskell program that connects to a socks5 proxy (namely tor), so that way I can access onion ...
1
vote
0answers
101 views
em-http-request unexpected result when using tor as proxy
I've created a gist which shows exactly what happens.
https://gist.github.com/4418148
I've tested a version which used ruby's 'net/http' library and 'socksify/http' and it worked perfect but if the ...
1
vote
1answer
164 views
Proxy servers resolve requests to themselves
I am trying to make some HTTP request using a HTTP proxy server over Tor. So far, I have experimented with Privoxy, Tinyproxy and Polipo. But whenever I make a request through any of these proxy ...
3
votes
2answers
322 views
Connection refused using urllib2 and Tor in python
I am pretty new to python. I am trying to write a pretty simple web scraper for a project I am working on. In the process I am trying to use Tor to change my IP address so I don't get disconnected ...
0
votes
1answer
188 views
Include Vidalia/Tor into another Program
I want to make a small webbrowser for anonymous and secure webbrowsing and I want to use Vidalia/Tor for the anonymity, it shall use the Tor proxy 127.0.0.1:8118 by standart.
Now I want to make this ...
0
votes
0answers
113 views
Multithreading with TOR with every thread having a new IP
I know it's possible to connect to Vidalia via the built-in proxy and change the identity via TCP requests but I'm looking for some more.
How could I have multiple threads running with tor, with every ...
0
votes
2answers
103 views
An efficient way to check an IP address if it is a proxy of any sort?
How to check an IP address if it is a proxy of some sort (including TOR and possibly TOR alternatives)?
Any ideas about an elegant and reliable way? May be some online listing, tool, service, local ...
0
votes
1answer
156 views
Looking for good solutions for blocking TOR
I am running an asp.net mvc website, and i want to block every user that reaches my site through TOR. By now i have two solutions:
Download list of TOR exit nodes once every hour, store that list ...
0
votes
1answer
157 views
Getting AltQ working in pf.conf (limiting inbound Tor traffic)
I'm trying to learn the ropes on packet queuing, so I thought I'd set up a limitation on traffic coming into port 80 from known Tor Exit nodes. This is on FreeBSD 9, so OpenBSD-specific solutions ...
0
votes
0answers
173 views
What should I know before reading the ToR source code [closed]
I am considering of learning C and C++ just so I can study ToR source code, and possibly step through it using an IDE. Since this a self-directed effort I want to make sure I craft my learning plan ...
2
votes
1answer
284 views
Is it possible to utilize the TOR network in a .net program?
I have a program that utilizes a client/server approach over the Internet. I'd like to offer my customers the option to tunnel through the TOR network for complete confidentiality and protection ...
1
vote
1answer
499 views
How to get HTTPS content using Python Requests through TOR and Privoxy
I have TOR setup on my system with Privoxy that has been tested and works well. What I am trying to do is proxy HTTPS requests through this setup, so that these GET and POSTs come through TOR. Below ...
0
votes
0answers
197 views
Multiple tor exit nodes in python
I'm developing an application that need to use different tor exit nodes.
How can i create multiple connection through a SINGLE instance of tor??
I already found this but I found it's a little bit ...
0
votes
1answer
182 views
integrating tor and python
I want to know how i can access a webpage through Tor, in Python.
There are a few similar questions, but none of them are completely answered and alot of the answers outright wrong.
The first page i ...



