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.