<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: TOR : How To Switch To a New Identity Using PHP</title>
	<atom:link href="http://w-shadow.com/blog/2008/06/20/tor-how-to-new-identity-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://w-shadow.com/blog/2008/06/20/tor-how-to-new-identity-with-php/</link>
	<description>Slightly Advanced Computer Stuff (and some magic)</description>
	<lastBuildDate>Fri, 20 Nov 2009 22:08:06 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: boaty</title>
		<link>http://w-shadow.com/blog/2008/06/20/tor-how-to-new-identity-with-php/comment-page-1/#comment-31544</link>
		<dc:creator>boaty</dc:creator>
		<pubDate>Sun, 20 Sep 2009 01:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=198#comment-31544</guid>
		<description>Thanks for this, I haven&#039;t yet tried it out, but it looks simple and straight-forward.

Excellent! :D</description>
		<content:encoded><![CDATA[<p>Thanks for this, I haven&#8217;t yet tried it out, but it looks simple and straight-forward.</p>
<p>Excellent! <img src='http://w-shadow.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: White Shadow</title>
		<link>http://w-shadow.com/blog/2008/06/20/tor-how-to-new-identity-with-php/comment-page-1/#comment-31490</link>
		<dc:creator>White Shadow</dc:creator>
		<pubDate>Thu, 17 Sep 2009 17:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=198#comment-31490</guid>
		<description>Take a look at the &lt;a href=&quot;https://git.torproject.org/checkout/tor/master/doc/spec/control-spec.txt&quot; rel=&quot;nofollow&quot;&gt;TOR control protocol spec&lt;/a&gt;. It&#039;s not exactly a light read, but I&#039;m pretty sure you&#039;ll find your answer in there, somewhere.</description>
		<content:encoded><![CDATA[<p>Take a look at the <a href="https://git.torproject.org/checkout/tor/master/doc/spec/control-spec.txt" rel="nofollow">TOR control protocol spec</a>. It&#8217;s not exactly a light read, but I&#8217;m pretty sure you&#8217;ll find your answer in there, somewhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Encaps PHP Gallery</title>
		<link>http://w-shadow.com/blog/2008/06/20/tor-how-to-new-identity-with-php/comment-page-1/#comment-31489</link>
		<dc:creator>Encaps PHP Gallery</dc:creator>
		<pubDate>Thu, 17 Sep 2009 16:11:20 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=198#comment-31489</guid>
		<description>Thank you for the script.
So we can force TOR to change identity, but next question is how to ask TOR what new identity is and/or what new trace?</description>
		<content:encoded><![CDATA[<p>Thank you for the script.<br />
So we can force TOR to change identity, but next question is how to ask TOR what new identity is and/or what new trace?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pierre</title>
		<link>http://w-shadow.com/blog/2008/06/20/tor-how-to-new-identity-with-php/comment-page-1/#comment-31252</link>
		<dc:creator>pierre</dc:creator>
		<pubDate>Sun, 23 Aug 2009 16:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=198#comment-31252</guid>
		<description>Hi! Thanks a lot for the piece of code. Just on more thing, about the password auth. On my MAC i need to tune a bit your code and change the
fputs($fp, &quot;AUTHENTICATE $auth_code\r\n&quot;);
to 
fputs($fp, &quot;AUTHENTICATE \&quot;&quot;.$auth_code.&quot;\&quot;\r\n&quot;);

cheers!</description>
		<content:encoded><![CDATA[<p>Hi! Thanks a lot for the piece of code. Just on more thing, about the password auth. On my MAC i need to tune a bit your code and change the<br />
fputs($fp, &#8220;AUTHENTICATE $auth_code\r\n&#8221;);<br />
to<br />
fputs($fp, &#8220;AUTHENTICATE \&#8221;".$auth_code.&#8221;\&#8221;\r\n&#8221;);</p>
<p>cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VB.NET</title>
		<link>http://w-shadow.com/blog/2008/06/20/tor-how-to-new-identity-with-php/comment-page-1/#comment-30759</link>
		<dc:creator>VB.NET</dc:creator>
		<pubDate>Mon, 06 Jul 2009 18:29:05 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=198#comment-30759</guid>
		<description>Thank you very much for the script!

TOR installs with &quot;Randomly Generate&quot; password option set automatically (in the Advanced tab in the settings of Vidalia). For this to work, you need to either specify a password, or specify Authentication as &quot;None&quot;. You MUST restart Vidalia in order for the settings to take effect.

To see that it works, browse to a site like &quot;whatsmyipaddress.com&quot; and note the IP address. you can optionally TELNET into the control port, type &quot;AUTHENTICATE&quot; then press &quot;enter&quot; (for the nopassword option), then type &quot;signal newnym&quot; and press &quot;enter&quot;. Refresh your browser (that has been set to point to TOR&#039;s proxy server) and notice that your IP address has changed!

I&#039;m going to rewrite this script in VB.NET so I can do other t&#039;ings.

Thanks again!</description>
		<content:encoded><![CDATA[<p>Thank you very much for the script!</p>
<p>TOR installs with &#8220;Randomly Generate&#8221; password option set automatically (in the Advanced tab in the settings of Vidalia). For this to work, you need to either specify a password, or specify Authentication as &#8220;None&#8221;. You MUST restart Vidalia in order for the settings to take effect.</p>
<p>To see that it works, browse to a site like &#8220;whatsmyipaddress.com&#8221; and note the IP address. you can optionally TELNET into the control port, type &#8220;AUTHENTICATE&#8221; then press &#8220;enter&#8221; (for the nopassword option), then type &#8220;signal newnym&#8221; and press &#8220;enter&#8221;. Refresh your browser (that has been set to point to TOR&#8217;s proxy server) and notice that your IP address has changed!</p>
<p>I&#8217;m going to rewrite this script in VB.NET so I can do other t&#8217;ings.</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: White Shadow</title>
		<link>http://w-shadow.com/blog/2008/06/20/tor-how-to-new-identity-with-php/comment-page-1/#comment-20689</link>
		<dc:creator>White Shadow</dc:creator>
		<pubDate>Fri, 13 Mar 2009 14:04:57 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=198#comment-20689</guid>
		<description>Sorry, I&#039;ve never used .NET for anything so I&#039;ve got no idea about why you get that error. Maybe you could use a network sniffer to see what&#039;s actually going on between you app. and TOR; that could provide some clues.</description>
		<content:encoded><![CDATA[<p>Sorry, I&#8217;ve never used .NET for anything so I&#8217;ve got no idea about why you get that error. Maybe you could use a network sniffer to see what&#8217;s actually going on between you app. and TOR; that could provide some clues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://w-shadow.com/blog/2008/06/20/tor-how-to-new-identity-with-php/comment-page-1/#comment-20688</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Fri, 13 Mar 2009 13:58:33 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=198#comment-20688</guid>
		<description>I am trying to send the new identity command from a .NET application using the .NET Socket library.  When I connect to the control port with a socket connection, I get the error: [Warning] Socks version 115 not recognized. (Tor is not an http proxy.) in the Tor Message Log.

Any thoughts?  I think the socket library is IPV6.  And runs a TCP connection.</description>
		<content:encoded><![CDATA[<p>I am trying to send the new identity command from a .NET application using the .NET Socket library.  When I connect to the control port with a socket connection, I get the error: [Warning] Socks version 115 not recognized. (Tor is not an http proxy.) in the Tor Message Log.</p>
<p>Any thoughts?  I think the socket library is IPV6.  And runs a TCP connection.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: White Shadow</title>
		<link>http://w-shadow.com/blog/2008/06/20/tor-how-to-new-identity-with-php/comment-page-1/#comment-20342</link>
		<dc:creator>White Shadow</dc:creator>
		<pubDate>Wed, 11 Mar 2009 10:35:17 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=198#comment-20342</guid>
		<description>I&#039;m using &lt;a href=&#039;http://www.php.net/fsockopen&#039; rel=&quot;nofollow&quot;&gt;&lt;code&gt;fsockopen&lt;/code&gt;&lt;/a&gt; which is not the same as &lt;code&gt;fopen&lt;/code&gt;. Doing this with cURL would be extremely hard (if not impossible) because cURL is intended for work with HTTP and not raw sockets. Id&#039;d stick with the &lt;code&gt;fsockopen&lt;/code&gt; version if I were you.</description>
		<content:encoded><![CDATA[<p>I&#8217;m using <a href='http://www.php.net/fsockopen' rel="nofollow"><code>fsockopen</code></a> which is not the same as <code>fopen</code>. Doing this with cURL would be extremely hard (if not impossible) because cURL is intended for work with HTTP and not raw sockets. Id&#8217;d stick with the <code>fsockopen</code> version if I were you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dwayne Charrington</title>
		<link>http://w-shadow.com/blog/2008/06/20/tor-how-to-new-identity-with-php/comment-page-1/#comment-20277</link>
		<dc:creator>Dwayne Charrington</dc:creator>
		<pubDate>Wed, 11 Mar 2009 03:20:32 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=198#comment-20277</guid>
		<description>Hi,

I am currently developing a bot script for a freelance project, and I am having an issue with Tor and getting a new identity.

You see instead of using fopen, I am using cURL to connect and I know this is probably easy and trivial and staring at me right in the face, but how do I send the change identity header string to Tor via cURL?

Thanks,

Dwayne.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am currently developing a bot script for a freelance project, and I am having an issue with Tor and getting a new identity.</p>
<p>You see instead of using fopen, I am using cURL to connect and I know this is probably easy and trivial and staring at me right in the face, but how do I send the change identity header string to Tor via cURL?</p>
<p>Thanks,</p>
<p>Dwayne.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SEO underWorld &#187; Blog Archive &#187; 9 Epic SEO Scripts</title>
		<link>http://w-shadow.com/blog/2008/06/20/tor-how-to-new-identity-with-php/comment-page-1/#comment-13369</link>
		<dc:creator>SEO underWorld &#187; Blog Archive &#187; 9 Epic SEO Scripts</dc:creator>
		<pubDate>Sun, 28 Dec 2008 16:59:16 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=198#comment-13369</guid>
		<description>[...] WShadows TOR switch in php - Small but invaluable, Long live tor. [...]</description>
		<content:encoded><![CDATA[<p>[...] WShadows TOR switch in php &#8211; Small but invaluable, Long live tor. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
