13

I am using Tor in my project. How can I force Tor to use a new identity from my program?

Rob Kennedy
  • 161,384
  • 21
  • 275
  • 467
steve0
  • 721
  • 3
  • 11
  • 19

1 Answers1

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
  • 1
    thanks 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