Tagged Questions
Tor is an open-source application used for internet anonymity.
12
votes
4answers
5k views
Tor with Python?
I'm trying to crawl websites using a crawler written in Python. I want to integrate Tor with Python meaning I want to crawl the site anonymously using Tor.
I have no idea how to do that. Any help on ...
8
votes
3answers
3k views
C# using Tor as Proxy
I am trying to use Tor-Server as a proxy in HttpWebRequest, my code looks like this:
HttpWebRequest request;
HttpWebResponse response;
request = ...
7
votes
3answers
2k views
How to use Tor control protocol in C#?
I'm trying to send commands to the Tor control port programmatically to make it refresh the chain. I haven't been able to find any examples in C#, and my solution's not working. The request times out. ...
4
votes
1answer
413 views
Python fails Tor check using urllib2 to initiate requests
After reading through the other questions on StackOverflow, I got a snippet of Python code that is able to make requests through a Tor proxy:
import urllib2
proxy = ...
4
votes
3answers
3k views
how to change tor exit node in a program way
i've got such a task:
i've got tor installed on my pc (vista).
and i need to change tor exit node in every timestamp.
i mean, for example, i start serfing using tor and got ip_1=xxx.xxx.xxx.xxx
in 5 ...
3
votes
1answer
1k views
How can I force Tor to use a new identity without using Vidalia?
I am using Tor in my project. How can I force Tor to use a new identity from my program?
2
votes
1answer
73 views
cURL and an extern Tor relay
I'm creating a tool and I wish to use the Tor network.
I am familiar with with both PHP and it's cURL extension but I just cant seem to use Tor as proxy. I keep getting no response from the server.
...
2
votes
1answer
229 views
Controlling Tor client with Ruby
I am writing a Ruby script which automatically crawls websites for data analysis, and now I have a requirement which is fairly complicated: I have to be able to simulate access from a variety of ...
2
votes
3answers
539 views
How to detect inbound HTTP requests sent anonymously via Tor?
I'm developing a website and am sensitive to people screen scraping my data. I'm not worried about scraping one or two pages -- I'm more concerned about someone scraping thousands of pages as the ...
2
votes
1answer
1k views
How can I use TOR as a proxy?
I'm trying to use TOR as a generic proxy but it fails
Right now I'm trying with python but I'm pretty sure it would be the same with any other language. I can connect to other proxies with python so ...
2
votes
3answers
2k views
Python urllib2 timeout when using Tor as proxy?
I am using Python's urllib2 with Tor as a proxy to access a website. When I
open the site's main page it works fine but when I try to view the login page
(not actually log-in but just view it) I get ...
2
votes
3answers
2k views
Using Urllib with TOR
How can I route urllib requests through the TOR network?
I have not been able to find any decent examples on the internet, can anyone help me?
2
votes
2answers
1k views
Using Python's smtplib with Tor
I'm conducting experiments regarding e-mail spam. One of these experiments require sending mail thru Tor. Since I'm using Python and smtplib for my experiments, I'm looking for a way to use the Tor ...
1
vote
1answer
243 views
Python urllib2 Tor 514 Authentication Required
I am trying to use Tor with python and urllib2 and am stuck. The following
print opener.open('http://check.torproject.org/').read()
And
telnet 127.0.0.1 9051
gives me the following error:
514 ...
1
vote
0answers
57 views
Difficulties doing a webpage search with Python through Tor
I am running python 2.5.1 and Tor 0.2.2.34 on OSX 10.5
I have checked the SOCKS question and the Trying to get Tor to work with Python question and the Tor with Python question and have tried them ...
1
vote
1answer
237 views
using tor with scrapy framework
I am trying to crawl website, which is sophisticated enough to stop bots, I mean it is permitting only a few requests, after that Scrapy hangs.
Question 1: is there a way, if Scrapy hangs I can ...
1
vote
0answers
103 views
Sockets with Tor and Python
Hello I am building an IM P2P client/server in Python and would like to use Tor as a proxy for it the server runs using Threads while the client runs at the same time
Does the server running on the ...
1
vote
0answers
52 views
How does TOR keep its relays secret? [closed]
How does TOR (The Onion Router) keep all its relays secret, so they can't be blocked?
1
vote
3answers
232 views
Trying to get Tor to work with Python, but keep getting connection refused.?
I've been trying to get Tor to work with Python, but I've been hitting a brick wall. I simply can't get any of the examples to work. Here is one from Stackoverflow
import urllib2
proxy = ...
1
vote
2answers
268 views
How do I use Tor with cURL (in Windows)?
I have Vidalia installed, set up Chrome to use port 8118 for the proxy and I've checked my connection through https://check.torproject.org/ but I'm having difficulties getting this work with the ...
1
vote
0answers
105 views
Problem with paired bufferevents with libevent2
I have this multithreaded app with a loop for each thread and two paired bufferevents per thread to send/receive data between those and the main thread.
This in theory. In practice, ...
1
vote
0answers
255 views
Tor command line to detect remote ip
is there a command to detect the actual ip that is using tor when connected to tor via telnet?
I mean like sending "getinfo circuit-status" or "signal newnym" commands
Thanks!
1
vote
0answers
232 views
Any Python bindings to Tor?
Many people have shown how to use Tor in Python like this:
proxy_support = urllib2.ProxyHandler({"http" : "127.0.0.1:8118"})
opener = urllib2.build_opener(proxy_support)
opener.addheaders = ...
1
vote
2answers
1k views
Python urllib over TOR?
Sample code:
#!/usr/bin/python
import socks
import socket
import urllib2
socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS4, "127.0.0.1", 9050, True)
socket.socket = socks.socksocket
print ...
1
vote
1answer
537 views
TOR Control Protocol from Perl
I am trying to basically make a signal newnym call via Tor control protocol bound to an internal port. Just for testing I am trying without any auth field at the moment.
In telnet, if I just call ...
1
vote
1answer
968 views
tor api in own project
I'm going to develop gui-based application for tor controlling (like vidalia or torK). Are there any libraries for using tor? I don't want to parse each byte of information from sockets.
My program ...
0
votes
0answers
39 views
Scrapy Torproject
On Ubuntu,
[guy@guy-laptop tmp]$ sudo /etc/init.d/tor status
tor is running
[guy@guy-laptop tmp]$ sudo /etc/init.d/polipo start
Starting polipo: /usr/bin/polipo already running -- doing nothing
...
0
votes
0answers
58 views
Tor System-wide in Windows XP
I'm trying to use Tor through system-wide windows settings, but have been unsuccessful so far.
I've tried entering in each of the following in command prompt to no avail:
proxycfg -p 127.0.0.1:8118
...
0
votes
0answers
55 views
remote connection to device running TOR [closed]
i have MacBook running TOR and it works fine, also i have an iPad which i want to make it connect to internet via the previous MacBook.
i tried the following:
installed TOR on iPad(there's a ...
0
votes
0answers
106 views
How to reliably get outgoing masking of IP address?
How can I quickly and reliably mask my outgoing IP for doing many web requests?
Tor is too slow. It takes 10x longer.
Tor Tunnel did not work at all for me ...
0
votes
0answers
51 views
Tor with Pycurl usage?
Hi I want my crawler using Pycurl to use Tor. How can I do that? I know how to do that using httplib
proxy_support = urllib2.ProxyHandler({"http" : "127.0.0.1:8118"})
opener = ...
0
votes
1answer
75 views
How do I get a collection (or a stream) of distinct IP addresses using Tor?
I'm writing a web crawler for academic research. This crawler makes millions of requests that I want to distribute over ten or so IP addresses.
My machine has one IP address already. I can get a ...
0
votes
0answers
69 views
How to connect to localhost over remote server and TOR?
So here is my setup..
I'm using cURL to scrape content and TOR network to stay anonymous.
One part of the code is
curl_setopt($ch, CURLOPT_PROXY, "127.0.0.1:8118");
This code is connecting to TOR ...
0
votes
1answer
60 views
What would be best way to hide a trace? [closed]
I'm building script for scraping data from several business directories.
This should net be an issue, because scraped data will not be used for spamming or any unethical method, but still I would ...
0
votes
1answer
382 views
C# Tunnel/Bridge from Http to Socks
I am trying to use Tor and instead of running privoxy etc client, I want to do it in my c# program ( so no privoxy GUIs). Tor only supports SOCKS right now , so I need a way to send Http Requests to ...
0
votes
1answer
198 views
how to access a website with python through tor, successfully? ports 8118 and 9050 don't work?
I'm trying to access a website with python through tor, but I'm having problems. I started my attempts with this thread and the one referenced in it: Tor with Python?
First I tried the original code ...
0
votes
0answers
163 views
Connect to tor network and query a .onion website in c++?
My application will query a webpage, say ojwiocmieoncwe.onion and display the content to the user. The user does not have to know it is a .onion address and does not even have to know about tor.
One ...
0
votes
1answer
226 views
Why does Php Curl keep trying to use Tor
Neither this or any of my other curl scripts work properly. None of them are currently set to use Tor, although I did try to implement it recently. The CLI curl program also tries to connect with Tor. ...
0
votes
1answer
613 views
how to let tor change ip automatically?
After i click the "Use a New Identify" button on Vidalia, i will get a new proxy ip.
Can tor change ip automatically?
My program needs random proxies, so the server will not block the connection.
0
votes
0answers
170 views
Htmlunit - Tor - Privoxy
Trying to debug/understand an issue that I'm having with trying to run a test with Htmlunit, running it using Tor with Privoxy as the Http Proxy Server.
I've setup Tor/Privoxy on a Centos Platform. ...
0
votes
1answer
394 views
Why TOR network is not capable of route UDP packets? [closed]
Why TOR network is not capable of route UDP packets?
0
votes
1answer
343 views
Determine current Tor exitNode using PHP
Hi
I wrote a PHP script that connects to some urls via TOR & Privoxy with CURL.
My script needs to change Tor Identity periodically. and needs that new identity be really new and didn't used ...
0
votes
1answer
390 views
Result identity changing
I'm using TOR and I want to know, how to switch between result-nodes with need country. I can simply change it by telnet the 9051 port like:
telnet localhost 9051
"AUTHENTICATE\r"
"signal NEWNYM\r"
...
0
votes
1answer
136 views
silvertunnel Netlib using tor to request page from multiple ip addresses
Is there a possibility to request some page from different ip addresses using tor network. If yes, then how to achieve that? I've found Java library silvertunnel Netlib. Maybe someone is familiar with ...
0
votes
2answers
579 views
How to change default number of nodes in the TOR chain?
By default TOR uses 3 nodes in a chain (approximately), but it works just painfully slow. I'd like to use one, so connecting to some server and that one is the exit node already.
I'm aware that it ...
-2
votes
0answers
35 views
is there a silkroad anonymous market place GPL software package available? [closed]
i am looking for a multi vendor ebay type marketplace solution that has the features of silkroad anonymous marketplace.
Vendors should be able to set up their shops, listing products.
Buyers should ...
-2
votes
1answer
225 views
Can a TOR / .onion web site be taken down? [closed]
I have a bet going with a friend. Is it possible to eliminate (by a government or otherwise) a .onion web site? On the surface it seems that the sites are untouchable because of the TOR network and ...