<?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: Want a cookie?</title>
	<atom:link href="http://thenexus.tk/want-a-cookie/feed/" rel="self" type="application/rss+xml" />
	<link>http://thenexus.tk/want-a-cookie/</link>
	<description>Feed your brain ...</description>
	<lastBuildDate>Wed, 31 Mar 2010 19:02:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: diabolika</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-3354</link>
		<dc:creator>diabolika</dc:creator>
		<pubDate>Thu, 09 Jul 2009 15:27:51 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-3354</guid>
		<description>i was looking for how to cook cookies when i fall on this post :D , lol just jocking great post dude :)</description>
		<content:encoded><![CDATA[<p>i was looking for how to cook cookies when i fall on this post <img src='http://thenexus.tk/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  , lol just jocking great post dude <img src='http://thenexus.tk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Donace</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-1451</link>
		<dc:creator>Donace</dc:creator>
		<pubDate>Tue, 04 Nov 2008 16:57:19 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-1451</guid>
		<description>To hide the refer via .htacces is difficult (I dont know how it can be done thus elimating forum cookie stuffing/ image redirects etc).

With a php script though what you could do is something like this:

&lt;code&gt;BH.com/BHpage1.php -&gt; BH.com/BHpage2.php -&gt; WH.com/Wpage.php -&gt; Affilate page&lt;/code&gt;

So on your &#039;BHpage&#039; what it would do is redirect ALL your traffic to the &#039;wpage&#039; which will drop the cookie and act as your refer. 

To explain it another way you send 100 visitors to your BHpage (from ANY source) all of these will be redirected to your genuine landing page (i.e. a page that has that affilate links present) These will then fall target to a script as discussed in the article (i.e. a random cookie dropping script). This will result in the Affilate seeing &#039;wpage&#039; as the referer to all the cookie drops.

What this is effect means is you can redirect different traffic sources to BHpage and by tweaking the % on the &#039;landingpage&#039; drop a fair no of cookies.

SO BHpage1=



&lt;code&gt;&lt;?php

        echo &quot;&lt;**meta** http-equiv=\&quot;refresh\&quot; content=\&quot;0;url=h**ttp://www.BH.com/BHpag**e2.php\&quot;&gt;&quot;;

?&gt;&lt;/code&gt;


BHpage2 =
&lt;code&gt;
&lt;?php

    $referer = $_SERVER[&#039;HTTP_REFERER&#039;];

    if($referer == &quot;&quot;)

    {

        echo &quot;&lt;**meta http-**equiv=\&quot;refresh\&quot; **content=\&quot;0;url=http://WH.com/whpage.php\&quot;&gt;&quot;;    

    }
?&gt; &lt;/code&gt;

Whpage = (see pseduo script in post)

This in effect will hide ALL traffic sources and referers and use the &#039;whpage&#039; as a referer etc. 



 
OR an alternative:




With the same model above (except with 1 less page) 
&lt;code&gt;i.e. BH.com/BHpage1.php -&gt;  WH.com/Wpage.php -&gt; Affilate page&lt;/code&gt;

you could use is something like this:
&lt;code&gt;
&lt;?php

$site2 = &quot;http://www.WH.com/Wpage.php&quot;;

echo &quot;&lt;**body onload=\&quot;javascrip**t:frmClickTracking.submit();\&quot;&gt;&quot;;
echo &quot;&lt;**form action=\&quot;&quot; . $site2 . &quot;\**&quot; method=\&quot;post\&quot; name=\&quot;frmClickTracking\&quot;&gt;&quot;;
echo &quot;&lt;**/form&gt;&quot;;

?&gt;&lt;/code&gt;
&lt;code&gt;

&lt;?php

$site1 = &quot;http://www.BH.com/BHpage.php&quot;;
$affiliate_link = &quot;http://www.youroffer.com&quot;;

if($_SERVER[&#039;HTTP_REFERER&#039;] == $site1)
{
	echo &quot;&lt;**body onload=\&quot;ja**vascript:frmClickTracking.submit();\&quot;&gt;&quot;;
	echo &quot;&lt;**form action=\&quot;&quot; **. $affiliate_link . &quot;\&quot; method=\&quot;post\&quot; name=\&quot;frmClickTracking\&quot;&gt;&quot;;
	echo &quot;&lt;**/form&gt;&quot;;
}

?&gt;&lt;/code&gt;

What the first script does upon landing on the page it redirects the user to your second &#039;legitmate&#039; page which will then load the affilate page use the &#039;legitimate page&#039; as your refer.

These methods would not as mentioned not work with forum stuffing (as in my knowledge) the refreshes etc will not work though this will work well with CPA offers that limit traffic sources (the second method) or just help you provide more users for your &#039;cookie script page&#039; (the first method). 

Also check out &lt;a href=&quot;http://www.slightlyshadyseo.com/index.php/controlling-your-referer-and-hiding-your-traffic-sources/&quot; rel=&quot;nofollow&quot;&gt; For a bit more info on controlling your referer &lt;/a&gt;

NB every where you see &#039;**&#039; delete them as they are just there to stop the code being run in the comments</description>
		<content:encoded><![CDATA[<p>To hide the refer via .htacces is difficult (I dont know how it can be done thus elimating forum cookie stuffing/ image redirects etc).</p>
<p>With a php script though what you could do is something like this:</p>
<p><code>BH.com/BHpage1.php -> BH.com/BHpage2.php -> WH.com/Wpage.php -> Affilate page</code></p>
<p>So on your &#8216;BHpage&#8217; what it would do is redirect ALL your traffic to the &#8216;wpage&#8217; which will drop the cookie and act as your refer. </p>
<p>To explain it another way you send 100 visitors to your BHpage (from ANY source) all of these will be redirected to your genuine landing page (i.e. a page that has that affilate links present) These will then fall target to a script as discussed in the article (i.e. a random cookie dropping script). This will result in the Affilate seeing &#8216;wpage&#8217; as the referer to all the cookie drops.</p>
<p>What this is effect means is you can redirect different traffic sources to BHpage and by tweaking the % on the &#8216;landingpage&#8217; drop a fair no of cookies.</p>
<p>SO BHpage1=</p>
<p><code>< ?php</p>
<p>        echo "<**meta** http-equiv="refresh" content="0;url=h**ttp://www.BH.com/BHpag**e2.php">";</p>
<p>?></code></p>
<p>BHpage2 =<br />
<code><br />
< ?php</p>
<p>    $referer = $_SERVER['HTTP_REFERER'];</p>
<p>    if($referer == "")</p>
<p>    {</p>
<p>        echo "<**meta http-**equiv="refresh" **content="0;url=http://WH.com/whpage.php">";    </p>
<p>    }<br />
?> </code></p>
<p>Whpage = (see pseduo script in post)</p>
<p>This in effect will hide ALL traffic sources and referers and use the &#8216;whpage&#8217; as a referer etc. </p>
<p>OR an alternative:</p>
<p>With the same model above (except with 1 less page)<br />
<code>i.e. BH.com/BHpage1.php ->  WH.com/Wpage.php -> Affilate page</code></p>
<p>you could use is something like this:<br />
<code><br />
< ?php</p>
<p>$site2 = "http://www.WH.com/Wpage.php";</p>
<p>echo "<**body onload="javascrip**t:frmClickTracking.submit();">";<br />
echo "< **form action="" . $site2 . "**" method="post" name="frmClickTracking">";<br />
echo "< **/form>";</p>
<p>?></code><br />
<code></p>
<p>< ?php</p>
<p>$site1 = "http://www.BH.com/BHpage.php";<br />
$affiliate_link = "http://www.youroffer.com";</p>
<p>if($_SERVER['HTTP_REFERER'] == $site1)<br />
{<br />
	echo "<**body onload="ja**vascript:frmClickTracking.submit();">";<br />
	echo "< **form action="" **. $affiliate_link . "" method="post" name="frmClickTracking">";<br />
	echo "< **/form>";<br />
}</p>
<p>?></code></p>
<p>What the first script does upon landing on the page it redirects the user to your second &#8216;legitmate&#8217; page which will then load the affilate page use the &#8216;legitimate page&#8217; as your refer.</p>
<p>These methods would not as mentioned not work with forum stuffing (as in my knowledge) the refreshes etc will not work though this will work well with CPA offers that limit traffic sources (the second method) or just help you provide more users for your &#8216;cookie script page&#8217; (the first method). </p>
<p>Also check out <a target="_blank" href="http://www.slightlyshadyseo.com/index.php/controlling-your-referer-and-hiding-your-traffic-sources/" rel="nofollow"> For a bit more info on controlling your referer </a></p>
<p>NB every where you see &#8216;**&#8217; delete them as they are just there to stop the code being run in the comments</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-1435</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 03 Nov 2008 20:22:04 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-1435</guid>
		<description>Thanks a lot for the reply Donace, I&#039;m currently still tring to make a script or change the .htaccess so that it will hide the referer, having a lot of trouble working out how to do it. I have been pushed in the direction of HTTPS --&gt; HTTP to hide the referer but can&#039;t find too much info on the net about it!</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the reply <a title="Donace" href="http://thenexus.tk/">Donace</a>, I&#8217;m currently still tring to make a script or change the .htaccess so that it will hide the referer, having a lot of trouble working out how to do it. I have been pushed in the direction of HTTPS &#8211;&gt; HTTP to hide the referer but can&#8217;t find too much info on the net about it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Donace</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-1370</link>
		<dc:creator>Donace</dc:creator>
		<pubDate>Thu, 30 Oct 2008 12:14:47 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-1370</guid>
		<description>Hey Chris sorry for the late reply your comment was caught by askimet...

Just need to clarify what you actually put in the php file ?

Also if you are using forums it would be easier to do the following: 

Add this to the .htaccess:
&lt;code&gt;Redirect /image1.jpg ww.SomeAffiliateWebsite.com/aff123&lt;/code&gt;

and then use the following format on forums:
&lt;code&gt;[img]ww.SomeDomainOfYours.com/image1.jpg[/img]&lt;/code&gt;

OR

add this to the .htaccess:

&lt;code&gt;   RewriteEngine On
   RewriteRule image1.jpg ww.SomeAffiliateWebsite.com/aff123/ [R,L]&lt;/code&gt;

and use this:

&lt;code&gt;    &lt;img src=&quot;image1.jpg&quot; /&gt; &lt;/code&gt;or use the tags as above.

Though if you are adamant on using a php add the following to .htaccess:

 &lt;code&gt;  &lt;Files image1.jpg&gt;
    ForceType application/x-httpd-php
    &lt;/Files&gt;
&lt;/code&gt;

and add this to image1.jpg

&lt;code&gt;
      &lt;?
      if(!$_SERVER[‘HTTP_REFERER’]){
      header(&quot;HTTP/1.0 404 Not Found&quot;);
      } else {
      header(&quot;Location: ww.SomeAffiliateWebsite.com/aff123/&quot;);
      }
      ?&gt;
&lt;/code&gt;

Hope it helps....but remember cookie stuffing is bad and this is to help grow your knowledge ONLY! Also don&#039;t forget to ad &#039;http&#039; I didn&#039;t because it was breaking the code tags.


</description>
		<content:encoded><![CDATA[<p>Hey Chris sorry for the late reply your comment was caught by askimet&#8230;</p>
<p>Just need to clarify what you actually put in the php file ?</p>
<p>Also if you are using forums it would be easier to do the following: </p>
<p>Add this to the .htaccess:<br />
<code>Redirect /image1.jpg ww.SomeAffiliateWebsite.com/aff123</code></p>
<p>and then use the following format on forums:<br />
<code>[img]ww.SomeDomainOfYours.com/image1.jpg[/img]</code></p>
<p>OR</p>
<p>add this to the .htaccess:</p>
<p><code>   RewriteEngine On<br />
   RewriteRule image1.jpg ww.SomeAffiliateWebsite.com/aff123/ [R,L]</code></p>
<p>and use this:</p>
<p><code>    <img src="image1.jpg" /> </code>or use the tags as above.</p>
<p>Though if you are adamant on using a php add the following to .htaccess:</p>
<p> <code>  <files image1.jpg><br />
    ForceType application/x-httpd-php<br />
    </files><br />
</code></p>
<p>and add this to image1.jpg</p>
<p><code><br />
      < ?<br />
      if(!$_SERVER[‘HTTP_REFERER’]){<br />
      header("HTTP/1.0 404 Not Found");<br />
      } else {<br />
      header("Location: ww.SomeAffiliateWebsite.com/aff123/");<br />
      }<br />
      ?><br />
</code></p>
<p>Hope it helps&#8230;.but remember cookie stuffing is bad and this is to help grow your knowledge ONLY! Also don&#8217;t forget to ad &#8216;http&#8217; I didn&#8217;t because it was breaking the code tags.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-1367</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 30 Oct 2008 02:36:13 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-1367</guid>
		<description>I could not get this to work for some reason. I setup the .htaccess file and the php file and I changed the file extension of the php file to .jpg. All filenames were changed to my picture.jpg and all paths were correct but the cookie would not plant. I tried this in a forum, not on my own server so it was within [IMG][/IMG] tags. Any ideas what I have done wrong? Was it that I simply changed the .php file to .jpg? It is definately now an image file and not a xxx.jpg.php file.</description>
		<content:encoded><![CDATA[<p>I could not get this to work for some reason. I setup the .htaccess file and the php file and I changed the file extension of the php file to .jpg. All filenames were changed to my picture.jpg and all paths were correct but the cookie would not plant. I tried this in a forum, not on my own server so it was within [IMG][/IMG] tags. Any ideas what I have done wrong? Was it that I simply changed the .php file to .jpg? It is definately now an image file and not a xxx.jpg.php file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Donace</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-1169</link>
		<dc:creator>Donace</dc:creator>
		<pubDate>Sun, 12 Oct 2008 11:49:10 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-1169</guid>
		<description>Before I comment I would again state that this is for educational purposes only.

The basic gist though is you would write in the script a portion that tell it read the text file via the &#039;file()&#039; command or fget()

// open the file and save each line as an array entry in $content
$content = file(&#039;myfile.txt&#039;);

// count how many lines in the file
$numLines = count($content);

// loop through all the lines
for ($i = 0; $i &lt; $numLines; $i++) {
   // each line ends with a newline character
   // you may want to get rid of this first
   // using trim()
   $line = trim($content[$i]);

   // do whatever you want to do with that line
   // ...

}


OR



// open the log file and check if the it&#039;s opened successfully
if (!($fp = fopen(&#039;myfile.txt&#039;, &#039;r&#039;))) {
   die(&#039;Cannot open file&#039;);
}

// keep fetching a line from the file until end of file
while ($line = fgets($fp, 4096)) {
   // trim to remove new line character at the end of line
   $line = trim($line);

   // do whatever you want to do with that line
   // ...
}



You then set the result as a variable (you could use $line) but I would recommend using $refer = $line so it is more readable in the different sections of code.

You then enter this $refer in to your script...actually spoofing the refer is a different matter and so as not to write another post in the comment section I sugges you check out http://www.anthonyshapley.co.uk/2008/08/27/http-referral-spoofing-with-php-and-curl/</description>
		<content:encoded><![CDATA[<p>Before I comment I would again state that this is for educational purposes only.</p>
<p>The basic gist though is you would write in the script a portion that tell it read the text file via the &#8216;file()&#8217; command or fget()</p>
<p>// open the file and save each line as an array entry in $content<br />
$content = file(&#8216;myfile.txt&#8217;);</p>
<p>// count how many lines in the file<br />
$numLines = count($content);</p>
<p>// loop through all the lines<br />
for ($i = 0; $i < $numLines; $i++) {<br />
   // each line ends with a newline character<br />
   // you may want to get rid of this first<br />
   // using trim()<br />
   $line = trim($content[$i]);</p>
<p>   // do whatever you want to do with that line<br />
   // ...</p>
<p>}</p>
<p>OR</p>
<p>// open the log file and check if the it's opened successfully<br />
if (!($fp = fopen('myfile.txt', 'r'))) {<br />
   die('Cannot open file');<br />
}</p>
<p>// keep fetching a line from the file until end of file<br />
while ($line = fgets($fp, 4096)) {<br />
   // trim to remove new line character at the end of line<br />
   $line = trim($line);</p>
<p>   // do whatever you want to do with that line<br />
   // ...<br />
}</p>
<p>You then set the result as a variable (you could use $line) but I would recommend using $refer = $line so it is more readable in the different sections of code.</p>
<p>You then enter this $refer in to your script...actually spoofing the refer is a different matter and so as not to write another post in the comment section I sugges you check out <a target="_blank" href="http://www.anthonyshapley.co.uk/2008/08/27/http-referral-spoofing-with-php-and-curl/" rel="nofollow">http://www.anthonyshapley.co.uk/2008/08/27/http-referral-spoofing-with-php-and-curl/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ximscreamingx</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-1164</link>
		<dc:creator>ximscreamingx</dc:creator>
		<pubDate>Sat, 11 Oct 2008 17:45:29 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-1164</guid>
		<description>Could you be a bit more specific when you say:

 &quot;you basically tell the script that it is at location ‘x’ and you can hold multiple locations in a txt file for it to read.&quot; 

I have tried to blank and img tag for years with no avail.</description>
		<content:encoded><![CDATA[<p>Could you be a bit more specific when you say:</p>
<p> &#8220;you basically tell the script that it is at location ‘x’ and you can hold multiple locations in a txt file for it to read.&#8221; </p>
<p>I have tried to blank and img tag for years with no avail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Donace</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-1019</link>
		<dc:creator>Donace</dc:creator>
		<pubDate>Sat, 27 Sep 2008 13:37:40 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-1019</guid>
		<description>im assuming you mean your doing this on your own site,  just to get some more info, have you set the .htaccess so it reads as a php file?

Though rereading your comment i&#039;m thinking you want it to display a picture as well as redirecting to php code. Though I have no idea if this is possible, as the code then would have to be embedded in to the file. A flash based cookie stuffer imo would work better if this is your aim.</description>
		<content:encoded><![CDATA[<p>im assuming you mean your doing this on your own site,  just to get some more info, have you set the .htaccess so it reads as a php file?</p>
<p>Though rereading your comment i&#8217;m thinking you want it to display a picture as well as redirecting to php code. Though I have no idea if this is possible, as the code then would have to be embedded in to the file. A flash based cookie stuffer imo would work better if this is your aim.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ishtwan</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-1011</link>
		<dc:creator>ishtwan</dc:creator>
		<pubDate>Fri, 26 Sep 2008 20:02:27 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-1011</guid>
		<description>has anyone successfully managed to serve image.jpg ( as img src=&#039;image.jpg&#039;  ) somwhere on the page so when the image is &lt;i&gt;displayed&lt;/i&gt; the php redirection script is called which takes you to  another php script which would than take you to aff.
For some reason I can only directly execute image.jpg and the code works fine but it does not work when served as img src=..</description>
		<content:encoded><![CDATA[<p>has anyone successfully managed to serve image.jpg ( as img src=&#8217;image.jpg&#8217;  ) somwhere on the page so when the image is <i>displayed</i> the php redirection script is called which takes you to  another php script which would than take you to aff.<br />
For some reason I can only directly execute image.jpg and the code works fine but it does not work when served as img src=..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Donace</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-680</link>
		<dc:creator>Donace</dc:creator>
		<pubDate>Tue, 02 Sep 2008 12:04:36 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-680</guid>
		<description>There are ways to do that; you basically tell the script that it is at location &#039;x&#039; and you can hold multiple locations in a txt file for it to read. 

The problem is though all these refers MUST be real, if your AM decides to check a refer that seems to be working well but it doesn&#039;t exist....alarm bells will go off.

Again I would like to reiterate...cookies stuffing is wrong, this was just an educational documentation.</description>
		<content:encoded><![CDATA[<p>There are ways to do that; you basically tell the script that it is at location &#8216;x&#8217; and you can hold multiple locations in a txt file for it to read. </p>
<p>The problem is though all these refers MUST be real, if your AM decides to check a refer that seems to be working well but it doesn&#8217;t exist&#8230;.alarm bells will go off.</p>
<p>Again I would like to reiterate&#8230;cookies stuffing is wrong, this was just an educational documentation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-677</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Tue, 02 Sep 2008 08:41:15 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-677</guid>
		<description>Any idea on how to either blank or spoof the referer?</description>
		<content:encoded><![CDATA[<p>Any idea on how to either blank or spoof the referer?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Donace</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-616</link>
		<dc:creator>Donace</dc:creator>
		<pubDate>Fri, 29 Aug 2008 19:48:55 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-616</guid>
		<description>LOL and don&#039;t we don;t want to see a repeat of DP now do we?!</description>
		<content:encoded><![CDATA[<p>LOL and don&#8217;t we don;t want to see a repeat of DP now do we?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: techtreak</title>
		<link>http://thenexus.tk/want-a-cookie/#comment-615</link>
		<dc:creator>techtreak</dc:creator>
		<pubDate>Fri, 29 Aug 2008 17:08:46 +0000</pubDate>
		<guid isPermaLink="false">http://thenexus.tk/?p=164#comment-615</guid>
		<description>hehe i never tried cookie stuffing :)</description>
		<content:encoded><![CDATA[<p>hehe i never tried cookie stuffing <img src='http://thenexus.tk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
