I am using Tor in my project. How can I force Tor to use a new identity from my program?
Asked
Active
Viewed 8,430 times
13
-
1@Andreas - http://www.torproject.org - In short, network for anonymous browsing. – Sertac Akyuz Oct 21 '10 at 20:46
-
Possible duplicate of [How to change tor exit node programmatically](http://stackoverflow.com/questions/1969958/how-to-change-tor-exit-node-programmatically) – Ciro Santilli OurBigBook.com Nov 15 '15 at 23:10
1 Answers
16
Open a telnet connection to the control port of your Tor service and send it SIGNAL NEWNYM
.
I expect you could use any Delphi telnet library. My first choice would be Indy; make sure you have the latest version.

Rob Kennedy
- 161,384
- 21
- 275
- 467
-
1thanks for reply sir , can u please write some basic example how to send SIGNAL NEWNYM using indy ? – steve0 Oct 21 '10 at 22:04
-
ok here it is http://stackoverflow.com/questions/3992774/how-to-use-idtelent1-to-send-commands – steve0 Oct 22 '10 at 00:13