Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 minutes i want tor to change my ip to a diferent one ip_2=yyy.yyy.yyy.yyy ip1_!=ip_2 how can i do this? for example using php and curl? tor, as i know, is listening to a port 8051 on a localhost. can i send some command on this port to make tor build a new chain so i can get some another ip address? and commands should i send?

share|improve this question

5 Answers

yeah, that's 1 (i mean =true =))) that tor does change ip every 10 minutes but! if i restart tor - i'll get a new ip even in this 10minutes interval. so i was thinking about making tor to send this "change_ip" request manually. see this code (written according to http://en.linuxreviews.org/HOWTO_use_the_Internet_anonymously_using_Tor_and_Privoxy)

procedure ChangeIp;
var
  sck:TIdTCPClient;
begin
  sck:=TIdTCPClient.Create(nil);
  try
    sck.Host:='127.0.0.1';
    sck.Port:=10051;
    sck.Connect;
    sck.SendCmd('authenticate','');
    if sck.LastCmdResult.Code='250' then
    begin
      sck.SendCmd('signal newnym','');
    end;
  finally
    sck.Free;
  end;
end;

and accornig to [https://tor-svn.freehaven.net/svn/torctl/trunk/doc/howto.txt] i can write a controler that will change tor's conf on the fly. by default it is not enebled (i mean this ability), but i can make tor client listen to some port for accepting commands using torrc...if i'm not mistaken...again=)

!!! where the hell torrc is on my pc?

In C:\Users\geekman\AppData\Roaming\Tor i could,n fing it i got vista.

share|improve this answer
2  
thanks for the "signal newnym" tip – Richard Jun 28 '10 at 9:35
(echo authenticate '""'; echo signal newnym; echo quit) | nc localhost 9051
share|improve this answer
Thanks a lot, very fast way to have a new IP – Dorian Aug 16 '12 at 11:35

You have no control over the routing in the tor network (if you had, someone could abuse this feature). But tor already switches the route roughly every 10 minutes (at least according to the German Wikipedia article).

share|improve this answer
1  
This isn't completely true, for those who stumble upon this thread. You can use the control port and modify some internal tor settings to basically create your own circuits. thesprawl.org/memdump/?entry=8 can get you started. – chrispr Mar 26 '11 at 0:14

I have done something different here... i wrote a PHP program that can communicate with linux shell. The program would restart tor in regular intervals.

So when tor is restarted it gets a new IP.... Yeah.....!!

exec("/etc/init.d/tor restart",$ioOut);
print_r($ioOut); //output from shell after executing the command
sleep(25);

You can also write a shell script to do this.

I am now in search of a windows option to do this. The problem is .. in windows Tor is a service which cannot be restarted.

share|improve this answer

I've wrote a library to control Tor with PHP. It is installable with Composer and allows to change the exit node.

Of course it's free software: http://dunglas.fr/2013/02/php-torcontrol-a-library-to-control-tor/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.