<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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"
		>
	<channel>
		<title>bbPress Support Forums &#187; Tag: _ck_ - Recent Posts</title>
		<link>http://bbpress.org/forums/tags/_ck_</link>
		<description>bbPress Support Forums &#187; Tag: _ck_ - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 21:18:43 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/tags/_ck_" rel="self" type="application/rss+xml" />

		<item>
			<title>_ck_ on "Question: is _ck_&#039;s security patch for 0.9 still needed for 0.9.0.7?"</title>
			<link>http://bbpress.org/forums/topic/question-is-_ck_s-security-patch-for-09-still-needed-for-0907#post-97856</link>
			<pubDate>Sat, 04 Feb 2012 10:35:53 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">97856@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>0.9 users should upgrade to (or start with) the 0.9 branch<br />
which was the final version of 0.9</p>
<p>but 0.9.0.7 appears to simply be a copy of the final 0.9 branch</p>
<p>browse <a href="http://bbpress.trac.wordpress.org/browser/branches/0.9" rel="nofollow">http://bbpress.trac.wordpress.org/browser/branches/0.9</a></p>
<p>zip <a href="http://bbpress.trac.wordpress.org/changeset/3730/branches/0.9?old_path=%2F&#038;format=zip" rel="nofollow">http://bbpress.trac.wordpress.org/changeset/3730/branches/0.9?old_path=%2F&#038;format=zip</a></p>
<p>svn co <a href="http://svn.automattic.com/bbpress/branches/0.9/" rel="nofollow">http://svn.automattic.com/bbpress/branches/0.9/</a></p>
<p>From what I can tell, JJJ just copied the branch over to make "0.9.0.7" </p>
<p><a href="http://bbpress.trac.wordpress.org/changeset/3517" rel="nofollow">http://bbpress.trac.wordpress.org/changeset/3517</a><br />
<a href="http://bbpress.trac.wordpress.org/changeset/3535" rel="nofollow">http://bbpress.trac.wordpress.org/changeset/3535</a><br />
<a href="http://bbpress.trac.wordpress.org/log/tags/0.9.0.7/bb-includes?rev=3535" rel="nofollow">http://bbpress.trac.wordpress.org/log/tags/0.9.0.7/bb-includes?rev=3535</a></p>
<p>That's all he did, there were no other changes, improvements or fixes.</p>
<p>But there really are some fixes in the final 0.9 branch over 0.9.0.6</p>
<p>There were 12 files changed from 0.9.0.6 to 0.9.0.7 (aka 0.9 branch)</p>
<p><a href="http://bbpress.trac.wordpress.org/changeset?old_path=%2Ftags%2F0.9.0.6&#038;old=2338+&#038;new_path=%2Ftags%2F0.9.0.7&#038;new=3715" rel="nofollow">http://bbpress.trac.wordpress.org/changeset?old_path=%2Ftags%2F0.9.0.6&#038;old=2338+&#038;new_path=%2Ftags%2F0.9.0.7&#038;new=3715</a></p>
<p>bb-includes/default-filters.php (1 diff)<br />
bb-includes/wp-functions.php (2 diffs)<br />
bb-includes/pluggable.php (1 diff)<br />
bb-includes/functions.php (3 diffs)<br />
bb-includes/registration-functions.php (1 diff)<br />
bb-includes/template-functions.php (3 diffs)<br />
bb-includes/compat.php (1 diff)<br />
search.php (1 diff)<br />
bb-plugins/akismet.php (4 diffs)<br />
bb-admin/bb-do-counts.php (3 diffs)<br />
bb-admin/admin.php (1 diff)<br />
bb-admin/admin-functions.php (2 diffs)</p>
<p>It's hard to be 100% positive but I am pretty sure they addressed the base64 decoding bug.</p>
<p>Those with 0.9.0.6 can replace just these files to upgrade to 0.9.0.7<br />
<a href="http://bbpress.trac.wordpress.org/changeset?format=zip&#038;new=3715&#038;old=2338&#038;new_path=%2Ftags%2F0.9.0.7&#038;old_path=%2Ftags%2F0.9.0.6" rel="nofollow">http://bbpress.trac.wordpress.org/changeset?format=zip&#038;new=3715&#038;old=2338&#038;new_path=%2Ftags%2F0.9.0.7&#038;old_path=%2Ftags%2F0.9.0.6</a><br />
(those running versions before 0.9.0.6 will need more files from a fuller upgrade, do not use just the above files as it will break your install)</p>
<p>Everyone should still use my mini-plugin to protect bbpress and wordpress for yet-unidentified security issues. It's better than nothing. You can even remove the header and just copy the one <code>IF</code> block to your <code>bb-config.php</code> and <code>wp-config.php</code></p>
<p>If <code>256</code> characters turns out to be too short of a URL restriction, some may need to raise it as high as <code>1024</code>, for example in WordPress where it stupidly uses GET now to mass delete posts, which was a dumbfounding move on their part.</p>
<pre><code>&#60;?php
/*
Plugin Name: Block Long/Bad Queries (for bbPress and WordPress)
*/

if (strlen($_SERVER[&#039;REQUEST_URI&#039;])&#62;1024 &#124;&#124;
preg_match(&#039;@(eval&#124;base64&#124;unescape)[^a-zA-Z0-9]@si&#039;,$_SERVER[&#039;REQUEST_URI&#039;]))
{
	header(&#039;HTTP/1.1 414 Request-URI Too Long&#039;);
	header(&#039;Status: 414 Request-URI Too Long&#039;);
	header(&#039;Connection: Close&#039;);
	exit;
}</code></pre>]]></description>
					</item>
		<item>
			<title>blogher8 on "Question: is _ck_&#039;s security patch for 0.9 still needed for 0.9.0.7?"</title>
			<link>http://bbpress.org/forums/topic/question-is-_ck_s-security-patch-for-09-still-needed-for-0907#post-97852</link>
			<pubDate>Sat, 04 Feb 2012 07:09:09 +0000</pubDate>
			<dc:creator>blogher8</dc:creator>
			<guid isPermaLink="false">97852@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I hope _ck_ or someone else can answer.</p>
<p>I have 0.9.0.7 installed.</p>
<p>I just saw _ck_'s post here about a security patch plugin: <a href="http://bbpress.org/forums/topic/bbpress-103-released#post-84690" rel="nofollow">http://bbpress.org/forums/topic/bbpress-103-released#post-84690</a></p>
<p>Ten months ago, _ck_ wrote,</p>
<p>"bbPress 0.9 users should install my unofficial "block-long-queries" mini-plugin to avoid the security bug that 1.0.3 fixes and similar unknown attacks in the future.<br />
(it also works in 1.0 and WordPress)"</p>
<p>Since it seems like 0.9.0.7 came out five months later, I am wondering if this new release covers the patch or if it is still needed.</p>
<p>Note that I searched extensively for a post about the 0.9.0.7 release and the changes it represented, but I can't see anything like that.</p>
<p>Also, I can't ask in the original thread because it was closed.</p>
<p>Thanks!
</p>]]></description>
					</item>
		<item>
			<title>Pagal on "A question about a plugin [ bbPress Attachments ]"</title>
			<link>http://bbpress.org/forums/topic/a-question-about-a-plugin-bbpress-attachments#post-93602</link>
			<pubDate>Sun, 23 Oct 2011 08:04:20 +0000</pubDate>
			<dc:creator>Pagal</dc:creator>
			<guid isPermaLink="false">93602@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I found a solution somewhere to disable functions when you are calling post-form to septate files: LIKE</p>
<p><code>&#60;?php post_form( array( 'last_page_only' =&#62; false ) ); ?&#62; </code><br />
I hope, with that kind of code we can disable attachments on replies. </p>
<p>-- Anyone?
</p>]]></description>
					</item>
		<item>
			<title>Anointed on "A question about a plugin [ bbPress Attachments ]"</title>
			<link>http://bbpress.org/forums/topic/a-question-about-a-plugin-bbpress-attachments#post-93599</link>
			<pubDate>Sun, 23 Oct 2011 06:43:50 +0000</pubDate>
			<dc:creator>Anointed</dc:creator>
			<guid isPermaLink="false">93599@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Just in case the plugin author sees this, at least provide an option for having attachments in the replies. There are some of us that need the functionality in both topics and replies. An admin option would be nice.</p>
<p>Also:<br />
I would suggest making it so that only logged in users can add attachments. </p>
<p>bbPress has the option of allowing guests to post to the forums, so if I turn that on, I end up with guest attachment abilities, which I personally don't want.</p>
<p>Great little plugin btw, thnx!
</p>]]></description>
					</item>
		<item>
			<title>Pagal on "A question about a plugin [ bbPress Attachments ]"</title>
			<link>http://bbpress.org/forums/topic/a-question-about-a-plugin-bbpress-attachments#post-93598</link>
			<pubDate>Sun, 23 Oct 2011 06:03:49 +0000</pubDate>
			<dc:creator>Pagal</dc:creator>
			<guid isPermaLink="false">93598@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Bump! Bump!</p>
<p>Hello, Zaerl, Ben L.<br />
Are you listening to me? </p>
<p>I think _ck_ has gone again :-/
</p>]]></description>
					</item>
		<item>
			<title>Pagal on "A question about a plugin [ bbPress Attachments ]"</title>
			<link>http://bbpress.org/forums/topic/a-question-about-a-plugin-bbpress-attachments#post-93513</link>
			<pubDate>Thu, 20 Oct 2011 10:40:51 +0000</pubDate>
			<dc:creator>Pagal</dc:creator>
			<guid isPermaLink="false">93513@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi _ck_ I hope you are listening to me!</p>
<p>bbPress attachment is working fine. but</p>
<p>-- Is it possible to hide/disable attachment functionalities when a user replying to a topic? </p>
<p>-- I mean, When a user creating a topic (post-form.php/bbpressdotorg/forums/?new=1) then only attachments should work. </p>
<p>--Otherwise when topic is open, then plugin should not show in threading. like I don't want to show attachments in bbpressdotorg/forums/topic/not-allowed-attachments-in-threading-so-create-every-new-topic-to-upload-stuff</p>
<p>Please let me know your thoughts on it. Thanks</p>
<p>--Pagal
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "bbPress database downgrade tool 1.1/1.0 -&gt; 0.9 (testers needed)"</title>
			<link>http://bbpress.org/forums/topic/bbpress-database-downgrade-utility#post-82408</link>
			<pubDate>Tue, 01 Feb 2011 16:34:20 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">82408@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Downgrade tool is on permanent delay. </p>
<p>Sorry, I simply do not have the time.</p>
<p>Restore backups from before upgrading 0.9 to 1.x
</p>]]></description>
					</item>
		<item>
			<title>dudd on "bbPress database downgrade tool 1.1/1.0 -&gt; 0.9 (testers needed)"</title>
			<link>http://bbpress.org/forums/topic/bbpress-database-downgrade-utility#post-82359</link>
			<pubDate>Sat, 29 Jan 2011 09:53:08 +0000</pubDate>
			<dc:creator>dudd</dc:creator>
			<guid isPermaLink="false">82359@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi _ck_, please need urgency your downgrade tool
</p>]]></description>
					</item>
		<item>
			<title>HeliosPrime on "bb Attachments plugin fixed to be compatible with bbPress 1.0+"</title>
			<link>http://bbpress.org/forums/topic/bb-attachments-plugin-fixed-to-be-compatible-with-bbpress-10/page/2#post-78468</link>
			<pubDate>Thu, 09 Dec 2010 06:54:45 +0000</pubDate>
			<dc:creator>HeliosPrime</dc:creator>
			<guid isPermaLink="false">78468@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This is so weird. I installed the plugin, and it works perfectly... but I can't find the physical files on my server anywhere.  :-/  ARe they being stored in the DB now, by chance?
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "BBcode-lite users MUST upgrade to 1.0.5 ASAP"</title>
			<link>http://bbpress.org/forums/topic/all-bbcode-lite-users-must-upgrade-immediately-to-105#post-74338</link>
			<pubDate>Mon, 27 Sep 2010 11:59:00 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">74338@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>KSES is too slow to use for realtime output.</p>
<p>It's used by WP/bbPress *before* the post is saved permanently (pre_post filter)</p>
<p>But bbcode is stored as bbcode, not converted HTML.</p>
<p>So it has to be converted to html each time a post is shown (post_text filter).</p>
<p>So KSES is too slow for that.</p>
<p>(plus I don't want to use an external function with regex matches, which makes it ten times more complex)
</p>]]></description>
					</item>
		<item>
			<title>Matt Mullenweg on "BBcode-lite users MUST upgrade to 1.0.5 ASAP"</title>
			<link>http://bbpress.org/forums/topic/all-bbcode-lite-users-must-upgrade-immediately-to-105#post-74337</link>
			<pubDate>Mon, 27 Sep 2010 10:27:06 +0000</pubDate>
			<dc:creator>Matt Mullenweg</dc:creator>
			<guid isPermaLink="false">74337@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Why not use KSES?
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Here&#039;s a plugin to explore tag history by user or topic (or tag)"</title>
			<link>http://bbpress.org/forums/topic/heres-a-plugin-to-explore-tag-history-by-user-or-topic-or-tag#post-74219</link>
			<pubDate>Thu, 23 Sep 2010 14:58:08 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">74219@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p><strong>I've now added experimental support for bbPress 1.x</strong><br />
starting with version 0.0.4 </p>
<p>Looking for feedback from those running a realworld, robust 1.x setup as I only have a test install.</p>
<p>Personally I also think it looks better in 0.9 but that's just me.</p>
<p>It cannot damage anything during testing as it's a read-only kind of plugin (for now).
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Here&#039;s a plugin to explore tag history by user or topic (or tag)"</title>
			<link>http://bbpress.org/forums/topic/heres-a-plugin-to-explore-tag-history-by-user-or-topic-or-tag#post-74181</link>
			<pubDate>Wed, 22 Sep 2010 16:42:34 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">74181@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I noticed this morning it's tricky in bbpress to figure out who tagged what, when.</p>
<p>So now this plugin will help admin explore how those tags got there or if spammers have snuck in any stray tags.</p>
<p>Install, activate and look under the Manage menu.</p>
<p>Click on the numbers next to the items to "drill down" on those tags.</p>
<p>Let me know if you have feature ideas or find bugs.</p>
<p>--</p>
<p>okay it's on the SVN now with a couple of tweaks/fixes</p>
<p>so you can get it from there</p>
<p><a href="http://plugins-svn.bbpress.org/tag-history/trunk/" rel="nofollow">http://plugins-svn.bbpress.org/tag-history/trunk/</a></p>
<p><a href="http://bbpress.org/plugins/topic/tag-history/" rel="nofollow">http://bbpress.org/plugins/topic/tag-history/</a>
</p>]]></description>
					</item>
		<item>
			<title>RedBull on "BBcode-lite users MUST upgrade to 1.0.5 ASAP"</title>
			<link>http://bbpress.org/forums/topic/all-bbcode-lite-users-must-upgrade-immediately-to-105#post-73887</link>
			<pubDate>Tue, 14 Sep 2010 17:43:47 +0000</pubDate>
			<dc:creator>RedBull</dc:creator>
			<guid isPermaLink="false">73887@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>The two above posts explain how to accomplish this. </p>
<p>If you are using _ck_'s bbcode-lite plugin: <a href="http://bbpress.org/plugins/topic/bbcode-lite/" rel="nofollow">http://bbpress.org/plugins/topic/bbcode-lite/</a> </p>
<p>You can use basic html<br />
&#60;img src="http://mydomain.com/pic.jpg" alt="Pic1" /&#62;
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "BBcode-lite users MUST upgrade to 1.0.5 ASAP"</title>
			<link>http://bbpress.org/forums/topic/all-bbcode-lite-users-must-upgrade-immediately-to-105#post-73692</link>
			<pubDate>Thu, 09 Sep 2010 00:04:21 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">73692@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Ah, yes all secondary attributes unfortunately have to be disallowed now via bbcode-lite because of the security issue. It's a quick fix with that side effect.</p>
<p>The trade-off of bbcode-lite is speed, so for security things have to be disallowed instead of trying to parse for all options which would slow things down.</p>
<p>HTML tags are saved when a post is made and then they are done, so it's fast. But bbcode has to be parsed each and every time a page is displayed, so speed is important. </p>
<p>I guess an advanced feature for a future version would be to convert the bbcode into permanently saved html after the user's time to edit has passed (ie. an hour). But that kind of sophistication will have to wait.
</p>]]></description>
					</item>
		<item>
			<title>RedBull on "BBcode-lite users MUST upgrade to 1.0.5 ASAP"</title>
			<link>http://bbpress.org/forums/topic/all-bbcode-lite-users-must-upgrade-immediately-to-105#post-73690</link>
			<pubDate>Wed, 08 Sep 2010 22:03:18 +0000</pubDate>
			<dc:creator>RedBull</dc:creator>
			<guid isPermaLink="false">73690@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks _ck_,<br />
I just went back and used the: </p>
<p>&#60;img src="http://mydomain.com/pic.jpg" alt="Pic1" /&#62;</p>
<p>As this is allowed through bbcode-lite.</p>
<p>Appreciate the response,<br />
RedBull
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "BBcode-lite users MUST upgrade to 1.0.5 ASAP"</title>
			<link>http://bbpress.org/forums/topic/all-bbcode-lite-users-must-upgrade-immediately-to-105#post-73688</link>
			<pubDate>Wed, 08 Sep 2010 21:47:58 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">73688@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@RedBull, if you were previously using the option to enable images via bbcode-lite, make sure you uncomment the first line that enables them again (by re-installing the plugin as default you've disabled them).
</p>]]></description>
					</item>
		<item>
			<title>RedBull on "BBcode-lite users MUST upgrade to 1.0.5 ASAP"</title>
			<link>http://bbpress.org/forums/topic/all-bbcode-lite-users-must-upgrade-immediately-to-105#post-73686</link>
			<pubDate>Wed, 08 Sep 2010 19:01:20 +0000</pubDate>
			<dc:creator>RedBull</dc:creator>
			<guid isPermaLink="false">73686@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I did the upgrade, but now the pics aren't showing. Its just shows the complete file name with [img]http://yourdomain.com/pic.jpg[/img].
</p>]]></description>
					</item>
		<item>
			<title>Rich Pedley on "BBcode-lite users MUST upgrade to 1.0.5 ASAP"</title>
			<link>http://bbpress.org/forums/topic/all-bbcode-lite-users-must-upgrade-immediately-to-105#post-73639</link>
			<pubDate>Tue, 07 Sep 2010 21:08:09 +0000</pubDate>
			<dc:creator>Rich Pedley</dc:creator>
			<guid isPermaLink="false">73639@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>done, thanks ;)
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "BBcode-lite users MUST upgrade to 1.0.5 ASAP"</title>
			<link>http://bbpress.org/forums/topic/all-bbcode-lite-users-must-upgrade-immediately-to-105#post-73629</link>
			<pubDate>Tue, 07 Sep 2010 15:31:16 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">73629@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Given this is my second most popular plugin, I'd like to make this sticky for 24 hours or more - if the other mods will please tolerate because of the severity.
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "BBcode-lite users MUST upgrade to 1.0.5 ASAP"</title>
			<link>http://bbpress.org/forums/topic/all-bbcode-lite-users-must-upgrade-immediately-to-105#post-73597</link>
			<pubDate>Tue, 07 Sep 2010 05:25:40 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">73597@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p><strong><br />
All BBcode-lite users should upgrade to 1.0.5 IMMEDIATELY</p>
<p>(regardless if you allow images or not)</p>
<p><a href="http://bbpress.org/plugins/topic/bbcode-lite/" rel="nofollow">http://bbpress.org/plugins/topic/bbcode-lite/</a></p>
<p><a href="http://plugins-svn.bbpress.org/bbcode-lite/trunk/" rel="nofollow">http://plugins-svn.bbpress.org/bbcode-lite/trunk/</a><br />
</strong></p>
<p>This is an important security update.
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73596</link>
			<pubDate>Tue, 07 Sep 2010 05:12:56 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">73596@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Okay here's the reality.</p>
<p>Basically bbPress doesn't run it's tag filter on post_text when the text is finally displayed, because it would be too slow.</p>
<p>Instead it only checks tags during saving time and filters then.</p>
<p>If an item is not a tag AT SAVE TIME it won't get checked.</p>
<p>That is how this is slipping through, because bbcode are not html tags.</p>
<p>I have a quick, dirty fix.</p>
<p>Basically anything that gets stuck INSIDE a tag ie. <code>[HERE]</code> = <code>&#60; HERE &#62;</code> is no longer allowed to contain spaces, single quote or double quote.  Stuff  <code>[blah]HERE[/blah]</code> =  <code>&#60;blah&#62;HERE&#60;/blah&#62;</code> is okay.</p>
<p>Preventing spaces alone, in theory, should be enough. Even url or entity encoding won't get properly parsed. It will simply display as plain text and then you can see who is posting what instead of hidden stuff.</p>
<p>The only good news is that this problem in theory should not allow admin cookies to be stolen since the last version of 0.9 and 1.x already use HttpOnly cookies which cannot be read by javascript.</p>
<p>The downside of the quick-fix is that secondary attributes are no longer possible until I come up with another way. Example of secondary would be <code>alt</code> or <code>title</code> etc.</p>
<p>Many thanks for reporting this Tom!
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73595</link>
			<pubDate>Tue, 07 Sep 2010 04:44:28 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">73595@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Double frack, it's not just IMG.</p>
<p>Working hard on a fix.</p>
<p><strong>All BBcode-lite users should upgrade to 1.0.5 IMMEDIATELY</p>
<p>(regardless if you allow images or not)</strong></p>
<p><a href="http://bbpress.org/plugins/topic/bbcode-lite/" rel="nofollow">http://bbpress.org/plugins/topic/bbcode-lite/</a></p>
<p><a href="http://plugins-svn.bbpress.org/bbcode-lite/trunk/" rel="nofollow">http://plugins-svn.bbpress.org/bbcode-lite/trunk/</a>
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73594</link>
			<pubDate>Tue, 07 Sep 2010 04:23:33 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">73594@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Oh frack, it's bbcode-lite.</p>
<p>I run through post-text so the bbpress parser never fires.</p>
<p>Fortunately img is disabled by default but I bet people turn it on.</p>
<p>Working on a fix.
</p>]]></description>
					</item>
		<item>
			<title>zaerl on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73588</link>
			<pubDate>Tue, 07 Sep 2010 00:31:26 +0000</pubDate>
			<dc:creator>zaerl</dc:creator>
			<guid isPermaLink="false">73588@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I cannot reproduce the bug. The plugin is well written:</p>
<p><code>$tags[&#039;img&#039;] = array(&#039;src&#039; =&#62; array(), &#039;title&#039; =&#62; array(), &#039;alt&#039; =&#62; array());</code></p>
<p>only <code>src</code>, <code>title</code> and <code>alt</code> attributes are allowed. Can you share a <a href="http://pastebin.com/">pastebin link</a> with the exact rogue text?
</p>]]></description>
					</item>
		<item>
			<title>tom.mccabe on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73582</link>
			<pubDate>Mon, 06 Sep 2010 23:41:31 +0000</pubDate>
			<dc:creator>tom.mccabe</dc:creator>
			<guid isPermaLink="false">73582@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm using the Allow Images plugin (<a href="http://bbpress.org/plugins/topic/allow-images/" rel="nofollow">http://bbpress.org/plugins/topic/allow-images/</a>).
</p>]]></description>
					</item>
		<item>
			<title>Elias Schwerdtfeger on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73579</link>
			<pubDate>Mon, 06 Sep 2010 22:31:14 +0000</pubDate>
			<dc:creator>Elias Schwerdtfeger</dc:creator>
			<guid isPermaLink="false">73579@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>By default, bbPress does not allow using the <code>img</code> tag, it needs a plugin for this functionality. Of course, the given attributes <code>style</code> and any kind of JavaScript handler is highly unwanted, but it is a weakness in the plugin's code, which has to be patched asap.
</p>]]></description>
					</item>
		<item>
			<title>tom.mccabe on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73578</link>
			<pubDate>Mon, 06 Sep 2010 22:12:13 +0000</pubDate>
			<dc:creator>tom.mccabe</dc:creator>
			<guid isPermaLink="false">73578@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey everyone. I believe there's a security flaw within BBPress that allows for any forum user to insert JavaScript into their posts. For instance, the following code replaces instances of "oldStuff" with "newStuff":</p>
<p>[img]http://www.whatever.net/forums/bb-admin/images/blank.gi" style="display:none;" onerror="this.parentNode.parentNode.parentNode.parentNode.parentNode.innerHTML = this.parentNode.parentNode.parentNode.parentNode.parentNode.innerHTML.replace(/oldStuff&#124;onerror/g,'newStuff'); [/img]</p>
<p>What are the patching instructions? Thanks.
</p>]]></description>
					</item>
		<item>
			<title>Ashfame on "bbPress download milestone"</title>
			<link>http://bbpress.org/forums/topic/bbpress-download-milestone#post-73487</link>
			<pubDate>Sat, 04 Sep 2010 03:33:13 +0000</pubDate>
			<dc:creator>Ashfame</dc:creator>
			<guid isPermaLink="false">73487@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thats cool!</p>
<p>Here is the link to legacy download counter in case anyone wondering - <a href="http://bbpress.org/download/counter/legacy" rel="nofollow">http://bbpress.org/download/counter/legacy</a>
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "bbPress download milestone"</title>
			<link>http://bbpress.org/forums/topic/bbpress-download-milestone#post-73480</link>
			<pubDate>Fri, 03 Sep 2010 17:59:53 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">73480@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>bbPress 0.9 is just about to break 150k downloads<br />
(that may include all previous versions too, I am uncertain if it was reset after 0.8)</p>
<p>bbPress 1.x has been downloaded over 121k times!</p>
<p>_ck_ plugins this weekend will break the 100k total downloads mark!</p>
<p>These are the top 10 _ck_ plugins:</p>
<p>bbPress Signatures<br />
BBcode Lite<br />
bbPress Smilies<br />
Human Test<br />
BBcode Buttons<br />
bbPress Attachments<br />
bbPress Polls<br />
Hidden Forums<br />
Post Count Plus<br />
Topic Icons
</p>]]></description>
					</item>

	</channel>
</rss>

