<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Anwyn's Notes in the Margin &#187; Blogging</title>
	<atom:link href="http://www.anwyn.com/category/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anwyn.com</link>
	<description>Sometime editor, all-the-time mother, delivering facts, reviews, commentary, and rants. Occasionally in that order.</description>
	<lastBuildDate>Mon, 15 Mar 2010 02:11:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>&#8220;Have You Got Anything Without Spam?&#8221;</title>
		<link>http://www.anwyn.com/2009/07/14/have-you-got-anything-without-spam/</link>
		<comments>http://www.anwyn.com/2009/07/14/have-you-got-anything-without-spam/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 16:53:35 +0000</pubDate>
		<dc:creator>Anwyn</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.anwyn.com/?p=1017</guid>
		<description><![CDATA[A Guest Post by Spam Killer Daddyman
Spam is usually very straightforward to manage in WordPress blogs. Almost all of it arrives in the form of comments and is quickly (we hope!) dispatched by the admin (either manually or by her spam filter). Some spammers are more devious, exploiting security holes in WordPress or mysql to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>A Guest Post by Spam Killer Daddyman</strong></p>
<p>Spam is usually very straightforward to manage in WordPress blogs. Almost all of it arrives in the form of comments and is quickly (we hope!) dispatched by the admin (either manually or by her spam filter). Some spammers are more devious, exploiting security holes in WordPress or mysql to embed their nastiness directly within the blog. </p>
<p>This blog recently began to show spam in its RSS feed. Interestingly enough, the spam didn&#8217;t show up when viewing the feed directly&#8211;only when viewing it through a reader like My Yahoo! or Google Reader. The blog had clearly been infected by some sort of malware. </p>
<p>RSS feeds typically deliver a short summary of WordPress posts, either inline (as in Google Reader) or when you hover the cursor over a link (as in My Yahoo!). The symptoms of this particular malware infection are that only the most recent post contains any summary text at all, and rather than displaying an article summary, it recommends the reader &#8220;Buy Aristocort&#8230;&#8221; or some other nonsense. </p>
<p>We searched through the WordPress files and mysql database but found no trace of the spam. We updated WordPress to the latest version, but still the spam persisted. (Anwyn aside: Therefore, the problem had to be in files that were not updated&#8211;either in the WP theme files or in the mysql database itself. Gulp.)</p>
<p>After quite some time of sifting through a mysqldump, I finally stumbled across something suspicious in the wp_options table: a string, hundreds of characters long, that looked like a data dump of some kind. The epiphany came when I saw the following characters toward the end of the string: </p>
<p><em>[...]cfJ3byJXZ&#8221;(edoced_46esab(lave[...]</em></p>
<p>Alter your perception a bit and read that string backwards: </p>
<p><em>[...]eval(base64_decode(&#8220;ZXJyb3Jfc[...]</em></p>
<p>This is php code. Base64 is a conversion format commonly used to send binary attachments via email. It&#8217;s also a great way to hide malicious code. I&#8217;ve seen trojans use it before, but I&#8217;ve never seen it coded backwards. </p>
<p>Decoding this, we discovered the php code that has been affecting the RSS feed. We also found other bits that were monitoring cookies, collecting system information and other dangerous things like login information. </p>
<p>So how does this backwards code get executed? Well, the answer to that lies in the Akismet plugin directory. In a file named .akismet.cache_< date >.php, there was code with a strrev() function. This instructs the code in the database to reverse itself and become readable. It appears, although I can&#8217;t tell definitively without fully deconstructing the code, that this malware leverages the Akismet spam-filter plugin to do its dirty work. I&#8217;m sure the author took great pleasure in that. </p>
<p>Why is this only seen in things like Google Reader and My Yahoo? It turns out there&#8217;s a regular expression match done for key sites: </p>
<p><em>if(preg_match(&#8220;/bot|google|slurp|bing|msn|charlotte|crawl|yahoo|search|spider|inktomi|ask|alexa|seek/&#8221;,$_SERVER["HTTP_USER_AGENT"])&#038;&#038;sizeof($_COOKIE)==0){</em></p>
<p>(Anwyn aside: In addition to the RSS readers, the Googlebot also sees the damaged code. Thus when I advance-googled for &#8220;aristocort&#8221; only on my site, Google turned up page after page that it said had that word&#8211;but if you clicked on a link, you got an entire category page where, of course, there was no mention of the spam words. Clever.)</p>
<p><strong>Cleanup Procedure</strong></p>
<p>If you&#8217;re seeing spam in your WordPress blog&#8217;s RSS feed and you have any dotfiles in your Akismet plugins directory (.akismet.cache.php, .akismet.cache_< date >.php, etc), then you&#8217;re probably suffering the same affliction as this blog. The fix: </p>
<p>1. <a href="http://codex.wordpress.org/Backing_Up_Your_WordPress_Files">Back up your WordPress files.</a> This is just to be on the safe side. </p>
<p>2. <a href="http://codex.wordpress.org/Backing_Up_Your_Database">Back up your WordPress Database.</a> Again, just to be on the safe side. </p>
<p>3. <strong>[Disclaimer by Anwyn: We didn't actually install Akismet on any other blog to double-check that the following affected files were not normally present in a healthy Akismet install. We just nuked them from orbit, and my blog and spam filter do not seem to be suffering. However, if you have more than one of these suspect files, you might want to search each of them for this string: strrev. This is the dangerous command and thus the dirty file. Daddyman googled for these kinds of files related to Akismet and found nothing normal--only warnings of spam exploitation--so you're probably safe to delete them all, but we don't know with 100 percent certainty.)</strong> Clean up WordPress by deleting any akismet dotfiles (.akismet.*) in the wp-content/plugins/akismet folder. </p>
<p>4. Clean up the database by removing all affected wp_options lines. The easiest way to do this is with phpmyadmin. Select your database, browse the wp_options table, and look for rows that have an option name of rss_< something >. <strong>Do not delete</strong> any of the following rows: rss_excerpt_length, rss_use_excerpt, rss_language. Delete any rows which have an option_name of rss_< long string of numbers and letters (hexadecimal) >. For example, in our installation an entry beginning with &#8220;rss_f541&#8230;&#8221; contained the base64_decode() string. You can delete any rows that have a name with a similar format, whether or not you see obviously malicious code; it will not harm your RSS. </p>
<p>5. Create a new post and verify that your RSS feed is now displaying correctly. Google Reader does a good job of refreshing on demand. The My Yahoo homepage doesn&#8217;t refresh promptly even if you select the refresh option, so you may need to wait a while before getting confirmation there. </p>
<p>6. Delete cookies in the browser(s) which you use to administer your site. This is just to be safe. </p>
<p>7. Change your WordPress password! You may also want to change your main database password. If you do that, be sure to also update it in wp-config.php. </p>
<p>8. Enjoy a spam-free, fully functional RSS service! </p>
<p><strong>Staying Spam-Free</strong></p>
<p>Here are two maintenance steps to help keep your blog clean and performing well: </p>
<p>1. <a href="http://codex.wordpress.org/Hardening_WordPress">Harden your Wordpress installation!</a> An ounce of prevention is worth a pound of cure. </p>
<p>2. <a href="http://technofriends.in/2009/07/04/how-to-delete-wordpress-spam-comments-using-phpmyadmin/">Periodically purge spam comments</a> from your database. When you classify a comment as spam, it disappears from sight, but the actual data remains in your database. In the case of this blog, which has been up for several years, 75 percent of the database (or about 9MB) was old spam comments. (Anwyn aside: Good Lord.) A simple sql command, run periodically, will remove all of that cruft and help optimize your database. The sql magic can be run either from phpMyAdmin or directly via the mysql CLI. Just connect to your database and execute the following statement: </p>
<p><em>delete from wp_comments where comment_approved=&#8221;spam&#8221;;</em></p>
<p>There are also some WordPress plugins, such as <a href="http://brockangelo.com/wordpress/plugins/delete-spam-daily/">&#8220;Delete Spam Daily,&#8221;</a> which profess to make this an even simpler process. I haven&#8217;t tried them, so be careful.</p>
<p>&#8211;Daddyman</p>
<p>(Anwyn aside: I hadn&#8217;t updated WordPress since it was first installed on this host, years ago. If I had, no doubt whatever back door the spammers came in through would have been eliminated.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anwyn.com/2009/07/14/have-you-got-anything-without-spam/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>The Next Top Post</title>
		<link>http://www.anwyn.com/2009/07/12/the-next-top-post/</link>
		<comments>http://www.anwyn.com/2009/07/12/the-next-top-post/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 15:42:51 +0000</pubDate>
		<dc:creator>Anwyn</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.anwyn.com/?p=1015</guid>
		<description><![CDATA[Another test. We&#8217;ve deleted what we think is reams of nasty code directly out of my database. If Daddyman really has cracked this problem, he might be able to document it for people like him who googled and found only that &#8220;yes, this problem exists, what&#8217;s happening here?&#8221; but no answers.
NASTY code, people. Reams of [...]]]></description>
			<content:encoded><![CDATA[<p>Another test. We&#8217;ve deleted what we think is reams of nasty code directly out of my database. If Daddyman really has cracked this problem, he might be able to document it for people like him who googled and found only that &#8220;yes, this problem exists, what&#8217;s happening here?&#8221; but no answers.</p>
<p>NASTY code, people. Reams of it. You better not be seeing any more of it on the feed to this post. Let me know &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anwyn.com/2009/07/12/the-next-top-post/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Test Post</title>
		<link>http://www.anwyn.com/2009/07/11/test-post/</link>
		<comments>http://www.anwyn.com/2009/07/11/test-post/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 05:55:20 +0000</pubDate>
		<dc:creator>Anwyn</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.anwyn.com/?p=1013</guid>
		<description><![CDATA[Be vewy, vewy quiet. I&#8217;m hunting spammers.
]]></description>
			<content:encoded><![CDATA[<p>Be vewy, vewy quiet. I&#8217;m hunting spammers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anwyn.com/2009/07/11/test-post/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How&#8217;s the Feed?</title>
		<link>http://www.anwyn.com/2009/07/11/hows-the-feed/</link>
		<comments>http://www.anwyn.com/2009/07/11/hows-the-feed/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 05:21:22 +0000</pubDate>
		<dc:creator>Anwyn</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.anwyn.com/?p=1011</guid>
		<description><![CDATA[Still bad? Still spammy? I upgraded to WP 2.8.1 tonight (chorus of angels sings HA-LE-LU-JAH) and we seem to have at least a remnant of the old RSS problem. Sing out if you typically view my RSS feed and are seeing spam in it. Kthxbai.
]]></description>
			<content:encoded><![CDATA[<p>Still bad? Still spammy? I upgraded to WP 2.8.1 tonight (chorus of angels sings HA-LE-LU-JAH) and we seem to have at least a remnant of the old RSS problem. Sing out if you typically view my RSS feed and are seeing spam in it. Kthxbai.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anwyn.com/2009/07/11/hows-the-feed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Of All the Editors in the World</title>
		<link>http://www.anwyn.com/2009/01/08/of-all-the-editors-in-the-world/</link>
		<comments>http://www.anwyn.com/2009/01/08/of-all-the-editors-in-the-world/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 22:41:07 +0000</pubDate>
		<dc:creator>Anwyn</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Need a Good Editor?]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Priorities]]></category>

		<guid isPermaLink="false">http://www.anwyn.com/2009/01/08/of-all-the-editors-in-the-world/</guid>
		<description><![CDATA[&#8230;I never thought I&#8217;d have much respect for one at the Huffington Post. I read this post taking Al Gore to task for spreading the nonsense that is human-inflicted global warming climate change last week and was duly shocked that the HP ran it&#8211;shocked, surprised, and pleased.
Now Arianna huffs, in an effort to retain her [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;I never thought I&#8217;d have much respect for one at the Huffington Post. I read <a href="http://www.huffingtonpost.com/harold-ambler/mr-gore-apology-accepted_b_154982.html">this post</a> taking Al Gore to task for spreading the nonsense that is human-inflicted <strike>global warming</strike> climate change last week and was duly shocked that the HP ran it&#8211;shocked, surprised, and pleased.</p>
<p><a href="http://newsbusters.org/blogs/noel-sheppard/2009/01/08/huffington-i-would-not-have-posted-article-asking-gore-apologize">Now Arianna huffs,</a> in an effort to retain her cred with her peeps:</p>
<blockquote><p>When Ambler sent his post, I forwarded it to one of our associate blog editors to evaluate, not having read it. I get literally hundreds of posts a week submitted like this and obviously can&#8217;t read them all &#8212; which is why we have an editorial process in place. The associate blog editor published the post. It was an error in judgment. I would not have posted it. Although HuffPost welcomes a vigorous debate on many subjects, I am a firm believer that there are not two sides to every issue, and that on some issues the jury is no longer out. The climate crisis is one of these issues.</p></blockquote>
<p>Dear Associate Blog Editor at HuffPo: Bravo. Even if you only did it to stir the pot, bravo anyhow. When Arianna fires or disciplines you, I hope you decide you&#8217;d rather retain your integrity than that job.<br />
<a href="http://hotair.com"><br />
Via Hot Air headlines.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anwyn.com/2009/01/08/of-all-the-editors-in-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Love My Lileks</title>
		<link>http://www.anwyn.com/2008/12/30/i-love-my-lileks/</link>
		<comments>http://www.anwyn.com/2008/12/30/i-love-my-lileks/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 03:45:42 +0000</pubDate>
		<dc:creator>Anwyn</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Heh]]></category>
		<category><![CDATA[Television]]></category>

		<guid isPermaLink="false">http://www.anwyn.com/2008/12/30/i-love-my-lileks/</guid>
		<description><![CDATA[At the end of a foamily descriptive discourse on shaving:
That first shave with a new brand is better than any other shave you ever get. It makes you wonder if there’s a whole different level of razor technology reserved for the uppermost elites, the Presidents and Premiers and 33rd degree Masons and Popes and Politburo [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.lileks.com/bleats/archive/08/1208/123008.html">At the end of a foamily descriptive discourse on shaving:</a></p>
<blockquote><p>That first shave with a new brand is better than any other shave you ever get. It makes you wonder if there’s a whole different level of razor technology reserved for the uppermost elites, the Presidents and Premiers and 33rd degree Masons and Popes and Politburo poohbahs and everyone else who lives in the rarified air above. The job has to have some compensations. Obama’s first day in office will begin with the best shave he’s ever had.</p>
<p><em>Man, that’s incredible. Any other surprises in store today?</em></p>
<p>Yes, sir. After you receive the briefing on our strike on the Iranian ship bringing a nuclear device into the New York harbor, they will give you the second season of “Firefly.”</p></blockquote>
<p>Ha ha ha. My dear man. The Pentagon keeps that locked up under three keys, none of which belongs to the president.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anwyn.com/2008/12/30/i-love-my-lileks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>It&#8217;s That Time Again</title>
		<link>http://www.anwyn.com/2008/11/06/its-that-time-again/</link>
		<comments>http://www.anwyn.com/2008/11/06/its-that-time-again/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 23:15:46 +0000</pubDate>
		<dc:creator>Anwyn</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Cool]]></category>

		<guid isPermaLink="false">http://www.anwyn.com/2008/11/06/its-that-time-again/</guid>
		<description><![CDATA[Time for any and all Portland- or Northwest-area like-minded blog-conscious conservative-stripe folks to get together for the proverbial drink. Last year&#8217;s effort was great fun&#8211;and in Portland, let me tell you, it is a huge relief to sit down for drinks with people who you already know won&#8217;t foam at the mouth if you dare [...]]]></description>
			<content:encoded><![CDATA[<p>Time for any and all Portland- or Northwest-area like-minded blog-conscious conservative-stripe folks to get together for the proverbial drink. <a href="http://www.anwyn.com/2007/11/01/live-in-oregon-washington-close-enough/">Last year&#8217;s effort</a> was great fun&#8211;and in Portland, let me tell you, it is a huge relief to sit down for drinks with people who you already know won&#8217;t foam at the mouth if you dare mention the Name of Bush or announce you&#8217;re a racist by saying you didn&#8217;t vote for Obama.</p>
<p>A commenter at <a href="http://minx.cc/?post=277583">Ace&#8217;s, Rasputin,</a> is putting this together. Email him for details at snitch20032@live.com and feel free to email me as well, anwynsnotes at gmail, to say you&#8217;re in. Hope to see you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anwyn.com/2008/11/06/its-that-time-again/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>PS</title>
		<link>http://www.anwyn.com/2008/09/21/ps/</link>
		<comments>http://www.anwyn.com/2008/09/21/ps/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 03:05:27 +0000</pubDate>
		<dc:creator>Anwyn</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Television]]></category>

		<guid isPermaLink="false">http://www.anwyn.com/2008/09/21/ps/</guid>
		<description><![CDATA[When I return, blogging shall return. You have been warned.
I mean, after all, Dancing with the Stars will be back.
]]></description>
			<content:encoded><![CDATA[<p>When I return, blogging shall return. You have been warned.</p>
<p>I mean, after all, <em>Dancing with the Stars</em> will be back.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anwyn.com/2008/09/21/ps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Still Alive</title>
		<link>http://www.anwyn.com/2008/09/18/im-still-alive/</link>
		<comments>http://www.anwyn.com/2008/09/18/im-still-alive/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 16:44:03 +0000</pubDate>
		<dc:creator>Anwyn</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[It's My Life]]></category>

		<guid isPermaLink="false">http://www.anwyn.com/2008/09/18/im-still-alive/</guid>
		<description><![CDATA[Just very busy.
No, seriously, where are you, because I&#8217;m about to drop you from my bookmarks.
A birthday for the Bean, a big family visit, there&#8217;s a lot going on. I&#8217;ll be back.
C&#8217;mon, I&#8217;m just emulating Xrlq by going for a one-to-one ratio of weeks to posts.
Actually, Xrlq&#8217;s been posting several times per day.
Well, see, then? [...]]]></description>
			<content:encoded><![CDATA[<p>Just very busy.</p>
<p><em>No, seriously, where are you, because I&#8217;m about to drop you from my bookmarks.</em></p>
<p>A birthday for the Bean, a big family visit, there&#8217;s a lot going on. I&#8217;ll be back.</p>
<p>C&#8217;mon, I&#8217;m just emulating <a href="http://xrlq.com">Xrlq</a> by going for a one-to-one ratio of weeks to posts.</p>
<p><em>Actually, Xrlq&#8217;s been posting several times per day.</em></p>
<p>Well, see, then? He&#8217;s picking up my slack. And hey, I have made one crucial blog decision&#8211;I&#8217;m no longer going to code links that automatically open a new browser window. I figure you people are smart enough to right-click and pick &#8220;open in new window (or tab)&#8221; all by yourselves.</p>
<p><em>Well, thanks for that, the extra windows were driving me nuts.</em></p>
<p>You&#8217;re welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anwyn.com/2008/09/18/im-still-alive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>There Are Days When Rachel Lucas Makes Me Want to Quit Blogging Altogether</title>
		<link>http://www.anwyn.com/2008/08/19/there-are-days-when-rachel-lucas-makes-me-want-to-quit-blogging-altogether/</link>
		<comments>http://www.anwyn.com/2008/08/19/there-are-days-when-rachel-lucas-makes-me-want-to-quit-blogging-altogether/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 00:05:16 +0000</pubDate>
		<dc:creator>Anwyn</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Heh]]></category>

		<guid isPermaLink="false">http://www.anwyn.com/2008/08/19/there-are-days-when-rachel-lucas-makes-me-want-to-quit-blogging-altogether/</guid>
		<description><![CDATA[I know of nobody who can get more mileage out of a good rant than she does. And this after more or less giving up politics/news blogging. At the risk of propelling Anne the LifePundit into a flame war over the relative value of cats and dogs:
Can your asshole cat bite the nuts off a [...]]]></description>
			<content:encoded><![CDATA[<p>I know of nobody who can get more mileage out of a good rant than she does. And this after more or less giving up politics/news blogging. At the risk of propelling <a target="_blank" href="http://lifepundit.typepad.com/my_weblog/">Anne the LifePundit</a> into a flame war over the relative value of cats and dogs:</p>
<blockquote><p><a target="_blank" href="http://rachellucas.com/index.php/2008/08/19/most-volatile-flame-war-ignitor-evercats-are-assholes/">Can your asshole cat bite the nuts off a burglar? I think not.</a></p></blockquote>
<p>Hey. At least I found <em>something</em> I wanted to blog today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anwyn.com/2008/08/19/there-are-days-when-rachel-lucas-makes-me-want-to-quit-blogging-altogether/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
