<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hidabe</id>
	<title>Joomla! Documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hidabe"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/Hidabe"/>
	<updated>2026-08-27T13:17:18Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Making_single_installation_packages_for_Joomla!_1.5_and_2.5_series&amp;diff=63089</id>
		<title>Making single installation packages for Joomla! 1.5 and 2.5 series</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Making_single_installation_packages_for_Joomla!_1.5_and_2.5_series&amp;diff=63089"/>
		<updated>2011-11-21T11:05:25Z</updated>

		<summary type="html">&lt;p&gt;Hidabe: /* Obsolte code */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{review}}&lt;br /&gt;
&lt;br /&gt;
It is possible to create a single installation package which can install a component in Joomla! 1.5, 1.6 and 1.7 with minor changes. Below you will find some of the most common tricks required to create an extension which is compatible with all current versions of the Joomla! CMS.&lt;br /&gt;
&lt;br /&gt;
== Dealing with API changes ==&lt;br /&gt;
You will regularly bump into cases where an API has changed between Joomla! 1.5, 1.6 and 1.7. In order to cater for them, you need to run slightly different code based on the Joomla! version. Right now it&#039;s possible to do that by writing conditional statements like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if(version_compare(JVERSION,&#039;1.7.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
// Joomla! 1.7 code here&lt;br /&gt;
} elseif(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
// Joomla! 1.6 code here&lt;br /&gt;
} else {&lt;br /&gt;
// Joomla! 1.5 code here&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you do not have Joomla! 1.7-specific code -i.e it is the same as the Joomla! 1.6-specific code- please use the following code:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
// Joomla! 1.6 code here&lt;br /&gt;
} else {&lt;br /&gt;
// Joomla! 1.5 code here&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
While this conditional statement looks like an overkill, it has two major advantages:&lt;br /&gt;
* Compatibility with all Joomla! versions using the same package, therefore using the same codebase, ergo less maintenance overhead&lt;br /&gt;
* Once, let&#039;s say, Joomla! 1.8 is released and you decide to drop support for earlier Joomla! releases, we can just search your code for &amp;quot;if(version_compare(JVERSION,&amp;quot; and remove all of the legacy code.&lt;br /&gt;
&lt;br /&gt;
== One XML configuration file, multiple Joomla! versions ==&lt;br /&gt;
&lt;br /&gt;
Various XML files in Joomla! accept settings, or parameters. For example your extension manifest file, the config.xml file and the view XML files all accept such settings. You may have noticed that whereas in Joomla! 1.5 these were found under the &amp;lt;params&amp;gt; tags, in Joomla! 1.6 and later they are found inside &amp;lt;filedsets&amp;gt;. One hidden secret of Joomla! is that Joomla! 1.5 will ignore Joomla! 1.6 syntax, whereas Joomla! 1.6/1.7 will ignore Joomla! 1.5 syntax. This allows you to have a single XML file which caters for all Joomla! releases. For example, here&#039;s a sample config.xml file, to be placed in the component&#039;s backend directory:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;config&amp;gt;&lt;br /&gt;
	&amp;lt;!-- Joomla! 1.5 uses params --&amp;gt;&lt;br /&gt;
	&amp;lt;params&amp;gt;&lt;br /&gt;
		&amp;lt;param name=&amp;quot;foobar&amp;quot; type=&amp;quot;text&amp;quot; default=&amp;quot;&amp;quot; size=&amp;quot;30&amp;quot;&lt;br /&gt;
			label=&amp;quot;COM_FOOBAR_OPTION_FOOBAR_LBL&amp;quot;&lt;br /&gt;
			description =&amp;quot;COM_FOOBAR_OPTION_FOOBAR_DESC&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/params&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;!-- Joomla! 1.6 uses fieldset --&amp;gt;&lt;br /&gt;
	&amp;lt;fieldset&lt;br /&gt;
		name=&amp;quot;basic&amp;quot;&lt;br /&gt;
		label=&amp;quot;COM_FOOBAR_OPTIONS_SECTION_BASIC_LBL&amp;quot;&lt;br /&gt;
		description=&amp;quot;COM_FOOBAR_OPTIONS_SECTION_BASIC_DESC&amp;quot;&lt;br /&gt;
		&amp;gt;&lt;br /&gt;
		&amp;lt;field name=&amp;quot;foobar&amp;quot; type=&amp;quot;text&amp;quot; default=&amp;quot;&amp;quot; size=&amp;quot;30&amp;quot;&lt;br /&gt;
			label=&amp;quot;COM_FOOBAR_OPTION_FOOBAR_LBL&amp;quot;&lt;br /&gt;
			description =&amp;quot;COM_FOOBAR_OPTION_FOOBAR_DESC&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/fieldset&amp;gt;&lt;br /&gt;
&amp;lt;/config&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That&#039;s how easy it is!&lt;br /&gt;
&lt;br /&gt;
== Dealing with languages ==&lt;br /&gt;
&lt;br /&gt;
=== How to load component-local translation files in Joomla! 1.5 ===&lt;br /&gt;
&lt;br /&gt;
Joomla! 1.6 introduced a new feature where a user can place language files inside the component&#039;s directory, e.g. administrator/com_foobar/language/en-GB/en-GB.com_foobar.ini, in order to provide language overrides. But Joomla! 1.5 doesn&#039;t support this feature. Or does it? Even though it can not do that automatically, you can do so in your extension&#039;s dispatcher file, e.g. administrator/com_foobar/foobar.php. Here&#039;s the magic code to do that in the backend:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_ADMINISTRATOR, null, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_COMPONENT_ADMINISTRATOR, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
and the frontend:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_SITE, null, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_COMPONENT, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Tips and tricks for language strings ===&lt;br /&gt;
&lt;br /&gt;
All your translation keys should consist of uppercase characters without spaces (that is A-Z, 0-9 and underscores). All translation values should be included in double quotation marks. This allows the translation files to be parsed by Joomla! 1.5/1.6/1.7 alike. You are also suggested to prefix your translation keys with the extension&#039;s name, albeit this is not required. For example, this is a good translation string:&lt;br /&gt;
COM_FOOBAR_CPANEL_TITLE=&amp;quot;Foobar Control Panel&amp;quot;&lt;br /&gt;
whereas this is a &#039;&#039;&#039;bad&#039;&#039;&#039; translation string:&lt;br /&gt;
CONTROL PANEL=Foobar Control Panel&lt;br /&gt;
The former works with all current versions of Joomla!, the latter doesn&#039;t.&lt;br /&gt;
&lt;br /&gt;
If you have double quotation marks in your translation values, please replace them with single quotation marks. While Joomla! 1.5 allowed escaping the double quotation marks with \&amp;quot;, Joomla! 1.6 under newer versions of PHP don&#039;t and require you to escape them as &amp;quot;__QQ__&amp;quot; which throws off Joomla! 1.5&#039;s parser. The workaround is to take advantage of a little known fact about HTML, that attributes can be wrapped in single quotation marks. For instance, change this:&lt;br /&gt;
COM_FOOBAR_SOME_KEY=&amp;lt;a href=&amp;quot;http://www.example.com&amp;quot;&amp;gt;Just a test&amp;lt;/a&amp;gt;&lt;br /&gt;
to this:&lt;br /&gt;
COM_FOOBAR_SOME_KEY=&amp;quot;&amp;lt;a href=&#039;http://www.example.com&#039;&amp;gt;Just a test&amp;lt;/a&amp;gt;&amp;quot;&lt;br /&gt;
It is valid HTML, it works on Joomla! 1.5/1.6/1.7 but it will invalidates XHTML. You can&#039;t always win, sorry.&lt;br /&gt;
&lt;br /&gt;
=== Making untranslated strings look more beautiful ===&lt;br /&gt;
&lt;br /&gt;
The problem with using tight translation keys as we described is that untranslated strings now look something like COM_FOOBAR_VIEWNAME_SOMEKEY. If you have volunteer translators you can bet your head that most translations will not be in sync with your component and you will have untranslated strings. In Joomla! 1.5, using &amp;quot;natural language&amp;quot; keys, you got to show your users the default (English) text if a translation key didn&#039;t exist in their language. This is impossible in Joomla! 1.6... or maybe not?&lt;br /&gt;
&lt;br /&gt;
We can use the same little trick in our component&#039;s dispatcher as with our component-local translation loading string above. Here&#039;s how to load the English translation file in the backend of your component, then overwrite only the keys which exist with the user&#039;s selected language, essentially allowing untranslated keys to show in English:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_ADMINISTRATOR, &#039;en-GB&#039;, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_ADMINISTRATOR, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The same thing in the front-end:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_SITE, &#039;en-GB&#039;, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_SITE, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== JElement vs JFormField ==&lt;br /&gt;
&lt;br /&gt;
Oh, the struggle! You need a custom widget in the configuration section of your component. In Joomla! 1.5 you could just create a new JElement. In Joomla! 1.6 you could just create a new JFormField. But both? In a single file? You can employ a simple trick. In the following example I am going to create a rather lame element, called SQL2, which displays a multi-selection box out of the results of a SQL statement. This is made as part of a fictitious module called mod_foobar&lt;br /&gt;
&lt;br /&gt;
First, let your configuration know where to load the custom widget files from, by putting this in your module&#039;s XML manifest file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;params addpath=&amp;quot;/modules/mod_foobar/elements&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;param name=&amp;quot;ids&amp;quot; type=&amp;quot;sql2&amp;quot; default=&amp;quot;&amp;quot;&lt;br /&gt;
			label=&amp;quot;MOD_FOOBAR_LEVELS_TITLE&amp;quot;&lt;br /&gt;
			description=&amp;quot;MOD_FOOBAR_LEVELS_DESC&amp;quot;&lt;br /&gt;
			query=&amp;quot;SELECT `foobar_level_id`, `title` FROM `#__foobar_levels`&amp;quot;&lt;br /&gt;
			key_field=&amp;quot;foobar_level_id&amp;quot;&lt;br /&gt;
			value_field=&amp;quot;title&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/params&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
	&amp;lt;config addfieldpath=&amp;quot;/modules/mod_foobar/elements&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;fields name=&amp;quot;params&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;fieldset name=&amp;quot;basic&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;field name=&amp;quot;ids&amp;quot; type=&amp;quot;sql2&amp;quot; default=&amp;quot;&amp;quot;&lt;br /&gt;
					label=&amp;quot;MOD_FOOBAR_LEVELS_TITLE&amp;quot;&lt;br /&gt;
					description=&amp;quot;MOD_FOOBAR_LEVELS_DESC&amp;quot;&lt;br /&gt;
					query=&amp;quot;SELECT `foobar_level_id`, `title` FROM `#__foobar_levels`&amp;quot;&lt;br /&gt;
					key_field=&amp;quot;foobar_level_id&amp;quot;&lt;br /&gt;
					value_field=&amp;quot;title&amp;quot; /&amp;gt;&lt;br /&gt;
			&amp;lt;/fieldset&amp;gt;&lt;br /&gt;
		&amp;lt;/fields&amp;gt;&lt;br /&gt;
	&amp;lt;/config&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you see, we instruct both Joomla! 1.5 and 1.6/1.7 to look into the same directory, for the same-named file (sql2.php). Here are the contents of the modules/mod_foobar/elements/sql2.php file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
defined(&#039;_JEXEC&#039;) or die(&#039;Restricted Access&#039;);&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
 * This trick allows us to extend the correct class, based on whether it&#039;s Joomla! 1.5 or 1.6&lt;br /&gt;
 */&lt;br /&gt;
if(!class_exists(&#039;JFakeElementBase&#039;)) {&lt;br /&gt;
        if(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
                class JFakeElementBase extends JFormField {&lt;br /&gt;
                        // This line is required to keep Joomla! 1.6/1.7 from complaining&lt;br /&gt;
                        public function getInput() {}&lt;br /&gt;
                }               &lt;br /&gt;
        } else {&lt;br /&gt;
                class JFakeElementBase extends JElement {}&lt;br /&gt;
        }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * Our main element class, creating a multi-select list out of an SQL statement&lt;br /&gt;
 */&lt;br /&gt;
class JFakeElementSQL2 extends JFakeElementBase&lt;br /&gt;
{&lt;br /&gt;
	var	$_name = &#039;SQL2&#039;;&lt;br /&gt;
&lt;br /&gt;
	// Joomla! 1.5&lt;br /&gt;
	function fetchElement($name, $value, &amp;amp;$node, $control_name)&lt;br /&gt;
	{&lt;br /&gt;
		$db			= &amp;amp; JFactory::getDBO();&lt;br /&gt;
		$db-&amp;gt;setQuery($node-&amp;gt;attributes(&#039;query&#039;));&lt;br /&gt;
		$key = ($node-&amp;gt;attributes(&#039;key_field&#039;) ? $node-&amp;gt;attributes(&#039;key_field&#039;) : &#039;value&#039;);&lt;br /&gt;
		$val = ($node-&amp;gt;attributes(&#039;value_field&#039;) ? $node-&amp;gt;attributes(&#039;value_field&#039;) : $name);&lt;br /&gt;
		return JHTML::_(&#039;select.genericlist&#039;,  $db-&amp;gt;loadObjectList(), &#039;&#039;.$control_name.&#039;[&#039;.$name.&#039;][]&#039;, &#039;class=&amp;quot;inputbox&amp;quot; multiple=&amp;quot;multiple&amp;quot; size=&amp;quot;5&amp;quot;&#039;, $key, $val, $value, $control_name.$name);&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	// Joomla! 1.6&lt;br /&gt;
	function getInput()&lt;br /&gt;
	{&lt;br /&gt;
		$db			= &amp;amp; JFactory::getDBO();&lt;br /&gt;
		$db-&amp;gt;setQuery($this-&amp;gt;element[&#039;query&#039;]);&lt;br /&gt;
		$key = ($this-&amp;gt;element[&#039;key_field&#039;] ? $this-&amp;gt;element[&#039;key_field&#039;] : &#039;value&#039;);&lt;br /&gt;
		$val = ($this-&amp;gt;element[&#039;value_field&#039;] ? $this-&amp;gt;element[&#039;value_field&#039;] : $this-&amp;gt;name);&lt;br /&gt;
		return JHTML::_(&#039;select.genericlist&#039;,  $db-&amp;gt;loadObjectList(), $this-&amp;gt;name, &#039;class=&amp;quot;inputbox&amp;quot; multiple=&amp;quot;multiple&amp;quot; size=&amp;quot;5&amp;quot;&#039;, $key, $val, $this-&amp;gt;value, $this-&amp;gt;id);&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
 * Part two of our trick; we define the proper element name, depending on whether it&#039;s Joomla! 1.5 or 1.6&lt;br /&gt;
 */&lt;br /&gt;
if(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
        class JFormFieldSQL2 extends JFakeElementSQL2 {}&lt;br /&gt;
} else {&lt;br /&gt;
        class JElementSQL2 extends JFakeElementSQL2 {}                &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Considering that most custom widgets have a lot more code than this, you can create two different initialisation sections for Joomla! 1.5 and 1.6/1.7 (fetchElement and getInput), populate class variables, then call a big, common method to render the bulk of the widget (just like we did with JHTML&#039;s genericlist in the example above). This will eliminate the need to rewrite the same code over again just to cater for a new Joomla! version.&lt;br /&gt;
&lt;br /&gt;
== Obsolte code ==&lt;br /&gt;
&lt;br /&gt;
Joomla 1.6 / 1.7 have been left any code obsolete, we should review code for do compatible with all versions.&lt;br /&gt;
=== Global Mainframe ===&lt;br /&gt;
Bad: &amp;lt;source&amp;gt;global $mainframe;&amp;lt;/source&amp;gt;&lt;br /&gt;
Good: &amp;lt;source&amp;gt;$mainframe = &amp;amp;JFactory::getApplication();&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Global Option ===&lt;br /&gt;
Bad: &amp;lt;source&amp;gt;global $option;&amp;lt;/source&amp;gt;&lt;br /&gt;
Good: &amp;lt;source&amp;gt;$option = JRequest::getCmd(&#039;option&#039;);&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I will add more changes like it.&lt;br /&gt;
&lt;br /&gt;
== Content plugins work slightly different ==&lt;br /&gt;
&lt;br /&gt;
The content plugins in Joomla! 1.5 were using the onPrepareContent method, whereas the content plugins in Joomla! 1.6/1.7 use the onContentPrepare method. The arguments have also changed. You can, however, create a single content plugin which runs on both Joomla! versions without rewriting code. Here&#039;s how:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
defined(&#039;_JEXEC&#039;) or die();&lt;br /&gt;
&lt;br /&gt;
jimport(&#039;joomla.plugin.plugin&#039;);&lt;br /&gt;
&lt;br /&gt;
class plgContentFoobar extends JPlugin&lt;br /&gt;
{&lt;br /&gt;
	public function onPrepareContent( &amp;amp;$article, &amp;amp;$params, $limitstart = 0 )&lt;br /&gt;
	{&lt;br /&gt;
		$article-&amp;gt;text = $this-&amp;gt;doSomethingWith($article-&amp;gt;text);&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	public function onContentPrepare($context, &amp;amp;$row, &amp;amp;$params, $page = 0)&lt;br /&gt;
	{&lt;br /&gt;
		// Danger, Will Robinson! $row in Joomla! 1.6/1.7 may be a string, not an article object!&lt;br /&gt;
		if(is_object($row)) {&lt;br /&gt;
			return $this-&amp;gt;onPrepareContent($row, $params, $page);&lt;br /&gt;
		} else {&lt;br /&gt;
			$row = $this-&amp;gt;doSomethingWith($row);&lt;br /&gt;
		}&lt;br /&gt;
		&lt;br /&gt;
		return true;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	private function doSomethingWith($text)&lt;br /&gt;
	{&lt;br /&gt;
		// Apparently, you have to do something here ;)&lt;br /&gt;
		return $text;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Updating doesn&#039;t work as you&#039;d expect ==&lt;br /&gt;
&lt;br /&gt;
There is a small but very disturbing bug in Joomla! 1.6. Updating a component whose manifest XML states version=&amp;quot;1.5.0&amp;quot; doesn&#039;t allow you to run the SQL statements. Namely, the SQL files you specify under the &amp;quot;&amp;lt;install&amp;gt;&amp;lt;sql&amp;gt;&amp;quot; tags won&#039;t run. You can neither use the new &amp;quot;&amp;lt;update&amp;gt;&amp;quot; tag. You are stuck with no way to run SQL commands on component update!&lt;br /&gt;
&lt;br /&gt;
The ugly workaround is to create a file named script.foobar.php with the following contents:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
define(&#039;_JEXEC&#039;) or die();&lt;br /&gt;
&lt;br /&gt;
class Com_FoobarInstallerScript {&lt;br /&gt;
	&lt;br /&gt;
	function update($parent) {&lt;br /&gt;
		$db = JFactory::getDBO();&lt;br /&gt;
		// Obviously you may have to change the path and name if your installation SQL file ;)&lt;br /&gt;
		if(method_exists($parent, &#039;extension_root&#039;)) {&lt;br /&gt;
			$sqlfile = $parent-&amp;gt;getPath(&#039;extension_root&#039;).DS.&#039;install.sql&#039;;&lt;br /&gt;
		} else {&lt;br /&gt;
			$sqlfile = $parent-&amp;gt;getParent()-&amp;gt;getPath(&#039;extension_root&#039;).DS.&#039;install.sql&#039;;&lt;br /&gt;
		}&lt;br /&gt;
		// Don&#039;t modify below this line&lt;br /&gt;
		$buffer = file_get_contents($sqlfile);&lt;br /&gt;
		if ($buffer !== false) {&lt;br /&gt;
			jimport(&#039;joomla.installer.helper&#039;);&lt;br /&gt;
			$queries = JInstallerHelper::splitSql($buffer);&lt;br /&gt;
			if (count($queries) != 0) {&lt;br /&gt;
				foreach ($queries as $query)&lt;br /&gt;
				{&lt;br /&gt;
					$query = trim($query);&lt;br /&gt;
					if ($query != &#039;&#039; &amp;amp;&amp;amp; $query{0} != &#039;#&#039;) {&lt;br /&gt;
						$db-&amp;gt;setQuery($query);&lt;br /&gt;
						if (!$db-&amp;gt;query()) {&lt;br /&gt;
							JError::raiseWarning(1, JText::sprintf(&#039;JLIB_INSTALLER_ERROR_SQL_ERROR&#039;, $db-&amp;gt;stderr(true)));&lt;br /&gt;
							return false;&lt;br /&gt;
						}&lt;br /&gt;
					}&lt;br /&gt;
				}&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Reference that file in the end of your manifest XML file, just above the closing install tag, with:&lt;br /&gt;
&amp;lt;source type=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;scriptfile&amp;gt;script.foobar.php&amp;lt;/scriptfile&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will force Joomla! 1.6 to run your extension&#039;s installation SQL file during the component update, just like Joomla! 1.5 used to do. Enjoy!&lt;br /&gt;
&lt;br /&gt;
== Menu item creation tricks ==&lt;br /&gt;
&lt;br /&gt;
===For Joomla! 1.5===&lt;br /&gt;
&lt;br /&gt;
You have to add a line similar to the following in your component&#039;s manifest XML file, inside the &amp;lt;code&amp;gt;&amp;lt;administration&amp;gt;&amp;lt;code&amp;gt; tag.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;COM_EXAMPLE&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;Example Component&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In both cases, you need to create a file named en-GB.com_example.menu.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation). In the first case (using a translation key), its contents should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=Example Component&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
In the second case (using natural language strings) its contents should be&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
Example Component=Example Component&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
NB: Joomla! 1.5 sorts the Component menu items based on the key you supply in your XML manifest. If you use the COM_EXAMPLE approach, your component will be sorted with all the components beginning with &amp;quot;C&amp;quot;, e.g. just before Contacts on a fresh Joomla! 1.5 installation, no matter what the translation is! This leads to funny results, especially with non-English languages where the translated component names do not follow the same sorting order as their English names. If you are bilingual or multilingual, I think you know what I mean…&lt;br /&gt;
&lt;br /&gt;
===For Joomla! 1.6 and later versions===&lt;br /&gt;
&lt;br /&gt;
You have to add a line similar to the following in your component&#039;s manifest XML file, inside the &amp;lt;code&amp;gt;&amp;lt;administration&amp;gt;&amp;lt;/code&amp;gt; tag.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;COM_EXAMPLE&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can not use a natural language string. Doing so will result in your component name appearing as example-component in the menu and you will be unable to provide a translation.&lt;br /&gt;
&lt;br /&gt;
You need to create a file named en-GB.com_example.sys.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation) or in administrator/components/com_example/language/en-GB. In the latter case, you must not include the translation file in the &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag. As long as you have placed the language directory in your &amp;lt;code&amp;gt;&amp;lt;files&amp;gt;&amp;lt;/code&amp;gt; tag, it will be copied along when the component is being installed.&lt;br /&gt;
&lt;br /&gt;
The contents of that file should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=&amp;quot;Example Component&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note that the language string must be enclosed in double quotes, as per Joomla!&#039;s translation standards.&lt;br /&gt;
&lt;br /&gt;
NB: Joomla! 1.6 and later sorts the Component menu items based on the actual translation of the key you supply in your XML manifest. This means that the sorting order is correct no matter what you call your translation key and no matter which language the site is being displayed in. Essentially, Joomla! 1.6 fixed the wrong sorting of the Components menu for the majority (non-English speaking!) of Joomla! users.&lt;br /&gt;
&lt;br /&gt;
===How to have a cross-version (Joomla! 1.5, 1.6 and later) component===&lt;br /&gt;
&lt;br /&gt;
If your component is supposed to be installed under both Joomla! 1.5 and Joomla! 1.6/1.7/2.5, you can do a little trick. You have to add a line similar to the following in your component&#039;s manifest XML file, inside the &amp;lt;code&amp;gt;&amp;lt;administration&amp;gt;&amp;lt;/code&amp;gt; tag.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;COM_EXAMPLE&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, you need to create two files, one for Joomla! 1.5 and one for Joomla! 1.6. For Joomla! 1.5  you need to create a file named en-GB.com_example.menu.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation). Its contents should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=Example Component&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
For Joomla! 1.6 you need to create a file named en-GB.com_example.sys.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation) or in administrator/components/com_example/language/en-GB. In the latter case, you must not include the translation file in the &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag. As long as you have placed the language directory in your &amp;lt;code&amp;gt;&amp;lt;files&amp;gt;&amp;lt;/code&amp;gt; tag, it will be copied along when the component is being installed.&lt;br /&gt;
&lt;br /&gt;
The contents of that file should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=&amp;quot;Example Component&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The only drawback is that your component will appear as weirdly sorted in the Components menu of Joomla! 1.5. Given the very near expiration date of Joomla! 1.5 (April 2012) this is not a major drawback and experience shows that users don&#039;t really care that much. &lt;br /&gt;
&lt;br /&gt;
===What if you do that and nothing happens?===&lt;br /&gt;
&lt;br /&gt;
Joomla! is supposed to create the components menu entries afresh every time you re-install the component. If this doesn&#039;t happen in your case, try uninstalling and re-installing your component. If you&#039;re not sure if Joomla! has the correct Components menu item translation key, you can always check the menu items database table. This will prevent you from unnecessary frustration when your translation files don&#039;t work simply because Joomla! has the wrong translation key in the table.&lt;br /&gt;
&lt;br /&gt;
== More tricks? ==&lt;br /&gt;
&lt;br /&gt;
I am sure that by writing this page I have left out a number of tricks which I am already using in my software. If you get stuck somewhere, feel free to take a look at how I&#039;ve implemented things in Admin Tools Core, Akeeba Backup Core and Akeeba Release System, my Joomla! 1.5/1.6/1.7 compatible extensions. If you find a better way to implement something, or found a trick not listed here, feel free to edit this wiki page. Sharing the knowledge is caring!&lt;br /&gt;
&lt;br /&gt;
Peace, love and friendship,&lt;br /&gt;
&lt;br /&gt;
Nicholas K. Dionysopoulos, AkeebaBackup.com Lead Developer&lt;/div&gt;</summary>
		<author><name>Hidabe</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Making_single_installation_packages_for_Joomla!_1.5_and_2.5_series&amp;diff=63088</id>
		<title>Making single installation packages for Joomla! 1.5 and 2.5 series</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Making_single_installation_packages_for_Joomla!_1.5_and_2.5_series&amp;diff=63088"/>
		<updated>2011-11-21T11:03:16Z</updated>

		<summary type="html">&lt;p&gt;Hidabe: /* Obsolte code */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{review}}&lt;br /&gt;
&lt;br /&gt;
It is possible to create a single installation package which can install a component in Joomla! 1.5, 1.6 and 1.7 with minor changes. Below you will find some of the most common tricks required to create an extension which is compatible with all current versions of the Joomla! CMS.&lt;br /&gt;
&lt;br /&gt;
== Dealing with API changes ==&lt;br /&gt;
You will regularly bump into cases where an API has changed between Joomla! 1.5, 1.6 and 1.7. In order to cater for them, you need to run slightly different code based on the Joomla! version. Right now it&#039;s possible to do that by writing conditional statements like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if(version_compare(JVERSION,&#039;1.7.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
// Joomla! 1.7 code here&lt;br /&gt;
} elseif(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
// Joomla! 1.6 code here&lt;br /&gt;
} else {&lt;br /&gt;
// Joomla! 1.5 code here&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you do not have Joomla! 1.7-specific code -i.e it is the same as the Joomla! 1.6-specific code- please use the following code:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
// Joomla! 1.6 code here&lt;br /&gt;
} else {&lt;br /&gt;
// Joomla! 1.5 code here&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
While this conditional statement looks like an overkill, it has two major advantages:&lt;br /&gt;
* Compatibility with all Joomla! versions using the same package, therefore using the same codebase, ergo less maintenance overhead&lt;br /&gt;
* Once, let&#039;s say, Joomla! 1.8 is released and you decide to drop support for earlier Joomla! releases, we can just search your code for &amp;quot;if(version_compare(JVERSION,&amp;quot; and remove all of the legacy code.&lt;br /&gt;
&lt;br /&gt;
== One XML configuration file, multiple Joomla! versions ==&lt;br /&gt;
&lt;br /&gt;
Various XML files in Joomla! accept settings, or parameters. For example your extension manifest file, the config.xml file and the view XML files all accept such settings. You may have noticed that whereas in Joomla! 1.5 these were found under the &amp;lt;params&amp;gt; tags, in Joomla! 1.6 and later they are found inside &amp;lt;filedsets&amp;gt;. One hidden secret of Joomla! is that Joomla! 1.5 will ignore Joomla! 1.6 syntax, whereas Joomla! 1.6/1.7 will ignore Joomla! 1.5 syntax. This allows you to have a single XML file which caters for all Joomla! releases. For example, here&#039;s a sample config.xml file, to be placed in the component&#039;s backend directory:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;config&amp;gt;&lt;br /&gt;
	&amp;lt;!-- Joomla! 1.5 uses params --&amp;gt;&lt;br /&gt;
	&amp;lt;params&amp;gt;&lt;br /&gt;
		&amp;lt;param name=&amp;quot;foobar&amp;quot; type=&amp;quot;text&amp;quot; default=&amp;quot;&amp;quot; size=&amp;quot;30&amp;quot;&lt;br /&gt;
			label=&amp;quot;COM_FOOBAR_OPTION_FOOBAR_LBL&amp;quot;&lt;br /&gt;
			description =&amp;quot;COM_FOOBAR_OPTION_FOOBAR_DESC&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/params&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;!-- Joomla! 1.6 uses fieldset --&amp;gt;&lt;br /&gt;
	&amp;lt;fieldset&lt;br /&gt;
		name=&amp;quot;basic&amp;quot;&lt;br /&gt;
		label=&amp;quot;COM_FOOBAR_OPTIONS_SECTION_BASIC_LBL&amp;quot;&lt;br /&gt;
		description=&amp;quot;COM_FOOBAR_OPTIONS_SECTION_BASIC_DESC&amp;quot;&lt;br /&gt;
		&amp;gt;&lt;br /&gt;
		&amp;lt;field name=&amp;quot;foobar&amp;quot; type=&amp;quot;text&amp;quot; default=&amp;quot;&amp;quot; size=&amp;quot;30&amp;quot;&lt;br /&gt;
			label=&amp;quot;COM_FOOBAR_OPTION_FOOBAR_LBL&amp;quot;&lt;br /&gt;
			description =&amp;quot;COM_FOOBAR_OPTION_FOOBAR_DESC&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/fieldset&amp;gt;&lt;br /&gt;
&amp;lt;/config&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That&#039;s how easy it is!&lt;br /&gt;
&lt;br /&gt;
== Dealing with languages ==&lt;br /&gt;
&lt;br /&gt;
=== How to load component-local translation files in Joomla! 1.5 ===&lt;br /&gt;
&lt;br /&gt;
Joomla! 1.6 introduced a new feature where a user can place language files inside the component&#039;s directory, e.g. administrator/com_foobar/language/en-GB/en-GB.com_foobar.ini, in order to provide language overrides. But Joomla! 1.5 doesn&#039;t support this feature. Or does it? Even though it can not do that automatically, you can do so in your extension&#039;s dispatcher file, e.g. administrator/com_foobar/foobar.php. Here&#039;s the magic code to do that in the backend:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_ADMINISTRATOR, null, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_COMPONENT_ADMINISTRATOR, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
and the frontend:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_SITE, null, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_COMPONENT, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Tips and tricks for language strings ===&lt;br /&gt;
&lt;br /&gt;
All your translation keys should consist of uppercase characters without spaces (that is A-Z, 0-9 and underscores). All translation values should be included in double quotation marks. This allows the translation files to be parsed by Joomla! 1.5/1.6/1.7 alike. You are also suggested to prefix your translation keys with the extension&#039;s name, albeit this is not required. For example, this is a good translation string:&lt;br /&gt;
COM_FOOBAR_CPANEL_TITLE=&amp;quot;Foobar Control Panel&amp;quot;&lt;br /&gt;
whereas this is a &#039;&#039;&#039;bad&#039;&#039;&#039; translation string:&lt;br /&gt;
CONTROL PANEL=Foobar Control Panel&lt;br /&gt;
The former works with all current versions of Joomla!, the latter doesn&#039;t.&lt;br /&gt;
&lt;br /&gt;
If you have double quotation marks in your translation values, please replace them with single quotation marks. While Joomla! 1.5 allowed escaping the double quotation marks with \&amp;quot;, Joomla! 1.6 under newer versions of PHP don&#039;t and require you to escape them as &amp;quot;__QQ__&amp;quot; which throws off Joomla! 1.5&#039;s parser. The workaround is to take advantage of a little known fact about HTML, that attributes can be wrapped in single quotation marks. For instance, change this:&lt;br /&gt;
COM_FOOBAR_SOME_KEY=&amp;lt;a href=&amp;quot;http://www.example.com&amp;quot;&amp;gt;Just a test&amp;lt;/a&amp;gt;&lt;br /&gt;
to this:&lt;br /&gt;
COM_FOOBAR_SOME_KEY=&amp;quot;&amp;lt;a href=&#039;http://www.example.com&#039;&amp;gt;Just a test&amp;lt;/a&amp;gt;&amp;quot;&lt;br /&gt;
It is valid HTML, it works on Joomla! 1.5/1.6/1.7 but it will invalidates XHTML. You can&#039;t always win, sorry.&lt;br /&gt;
&lt;br /&gt;
=== Making untranslated strings look more beautiful ===&lt;br /&gt;
&lt;br /&gt;
The problem with using tight translation keys as we described is that untranslated strings now look something like COM_FOOBAR_VIEWNAME_SOMEKEY. If you have volunteer translators you can bet your head that most translations will not be in sync with your component and you will have untranslated strings. In Joomla! 1.5, using &amp;quot;natural language&amp;quot; keys, you got to show your users the default (English) text if a translation key didn&#039;t exist in their language. This is impossible in Joomla! 1.6... or maybe not?&lt;br /&gt;
&lt;br /&gt;
We can use the same little trick in our component&#039;s dispatcher as with our component-local translation loading string above. Here&#039;s how to load the English translation file in the backend of your component, then overwrite only the keys which exist with the user&#039;s selected language, essentially allowing untranslated keys to show in English:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_ADMINISTRATOR, &#039;en-GB&#039;, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_ADMINISTRATOR, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The same thing in the front-end:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_SITE, &#039;en-GB&#039;, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_SITE, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== JElement vs JFormField ==&lt;br /&gt;
&lt;br /&gt;
Oh, the struggle! You need a custom widget in the configuration section of your component. In Joomla! 1.5 you could just create a new JElement. In Joomla! 1.6 you could just create a new JFormField. But both? In a single file? You can employ a simple trick. In the following example I am going to create a rather lame element, called SQL2, which displays a multi-selection box out of the results of a SQL statement. This is made as part of a fictitious module called mod_foobar&lt;br /&gt;
&lt;br /&gt;
First, let your configuration know where to load the custom widget files from, by putting this in your module&#039;s XML manifest file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;params addpath=&amp;quot;/modules/mod_foobar/elements&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;param name=&amp;quot;ids&amp;quot; type=&amp;quot;sql2&amp;quot; default=&amp;quot;&amp;quot;&lt;br /&gt;
			label=&amp;quot;MOD_FOOBAR_LEVELS_TITLE&amp;quot;&lt;br /&gt;
			description=&amp;quot;MOD_FOOBAR_LEVELS_DESC&amp;quot;&lt;br /&gt;
			query=&amp;quot;SELECT `foobar_level_id`, `title` FROM `#__foobar_levels`&amp;quot;&lt;br /&gt;
			key_field=&amp;quot;foobar_level_id&amp;quot;&lt;br /&gt;
			value_field=&amp;quot;title&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/params&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
	&amp;lt;config addfieldpath=&amp;quot;/modules/mod_foobar/elements&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;fields name=&amp;quot;params&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;fieldset name=&amp;quot;basic&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;field name=&amp;quot;ids&amp;quot; type=&amp;quot;sql2&amp;quot; default=&amp;quot;&amp;quot;&lt;br /&gt;
					label=&amp;quot;MOD_FOOBAR_LEVELS_TITLE&amp;quot;&lt;br /&gt;
					description=&amp;quot;MOD_FOOBAR_LEVELS_DESC&amp;quot;&lt;br /&gt;
					query=&amp;quot;SELECT `foobar_level_id`, `title` FROM `#__foobar_levels`&amp;quot;&lt;br /&gt;
					key_field=&amp;quot;foobar_level_id&amp;quot;&lt;br /&gt;
					value_field=&amp;quot;title&amp;quot; /&amp;gt;&lt;br /&gt;
			&amp;lt;/fieldset&amp;gt;&lt;br /&gt;
		&amp;lt;/fields&amp;gt;&lt;br /&gt;
	&amp;lt;/config&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you see, we instruct both Joomla! 1.5 and 1.6/1.7 to look into the same directory, for the same-named file (sql2.php). Here are the contents of the modules/mod_foobar/elements/sql2.php file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
defined(&#039;_JEXEC&#039;) or die(&#039;Restricted Access&#039;);&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
 * This trick allows us to extend the correct class, based on whether it&#039;s Joomla! 1.5 or 1.6&lt;br /&gt;
 */&lt;br /&gt;
if(!class_exists(&#039;JFakeElementBase&#039;)) {&lt;br /&gt;
        if(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
                class JFakeElementBase extends JFormField {&lt;br /&gt;
                        // This line is required to keep Joomla! 1.6/1.7 from complaining&lt;br /&gt;
                        public function getInput() {}&lt;br /&gt;
                }               &lt;br /&gt;
        } else {&lt;br /&gt;
                class JFakeElementBase extends JElement {}&lt;br /&gt;
        }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * Our main element class, creating a multi-select list out of an SQL statement&lt;br /&gt;
 */&lt;br /&gt;
class JFakeElementSQL2 extends JFakeElementBase&lt;br /&gt;
{&lt;br /&gt;
	var	$_name = &#039;SQL2&#039;;&lt;br /&gt;
&lt;br /&gt;
	// Joomla! 1.5&lt;br /&gt;
	function fetchElement($name, $value, &amp;amp;$node, $control_name)&lt;br /&gt;
	{&lt;br /&gt;
		$db			= &amp;amp; JFactory::getDBO();&lt;br /&gt;
		$db-&amp;gt;setQuery($node-&amp;gt;attributes(&#039;query&#039;));&lt;br /&gt;
		$key = ($node-&amp;gt;attributes(&#039;key_field&#039;) ? $node-&amp;gt;attributes(&#039;key_field&#039;) : &#039;value&#039;);&lt;br /&gt;
		$val = ($node-&amp;gt;attributes(&#039;value_field&#039;) ? $node-&amp;gt;attributes(&#039;value_field&#039;) : $name);&lt;br /&gt;
		return JHTML::_(&#039;select.genericlist&#039;,  $db-&amp;gt;loadObjectList(), &#039;&#039;.$control_name.&#039;[&#039;.$name.&#039;][]&#039;, &#039;class=&amp;quot;inputbox&amp;quot; multiple=&amp;quot;multiple&amp;quot; size=&amp;quot;5&amp;quot;&#039;, $key, $val, $value, $control_name.$name);&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	// Joomla! 1.6&lt;br /&gt;
	function getInput()&lt;br /&gt;
	{&lt;br /&gt;
		$db			= &amp;amp; JFactory::getDBO();&lt;br /&gt;
		$db-&amp;gt;setQuery($this-&amp;gt;element[&#039;query&#039;]);&lt;br /&gt;
		$key = ($this-&amp;gt;element[&#039;key_field&#039;] ? $this-&amp;gt;element[&#039;key_field&#039;] : &#039;value&#039;);&lt;br /&gt;
		$val = ($this-&amp;gt;element[&#039;value_field&#039;] ? $this-&amp;gt;element[&#039;value_field&#039;] : $this-&amp;gt;name);&lt;br /&gt;
		return JHTML::_(&#039;select.genericlist&#039;,  $db-&amp;gt;loadObjectList(), $this-&amp;gt;name, &#039;class=&amp;quot;inputbox&amp;quot; multiple=&amp;quot;multiple&amp;quot; size=&amp;quot;5&amp;quot;&#039;, $key, $val, $this-&amp;gt;value, $this-&amp;gt;id);&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
 * Part two of our trick; we define the proper element name, depending on whether it&#039;s Joomla! 1.5 or 1.6&lt;br /&gt;
 */&lt;br /&gt;
if(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
        class JFormFieldSQL2 extends JFakeElementSQL2 {}&lt;br /&gt;
} else {&lt;br /&gt;
        class JElementSQL2 extends JFakeElementSQL2 {}                &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Considering that most custom widgets have a lot more code than this, you can create two different initialisation sections for Joomla! 1.5 and 1.6/1.7 (fetchElement and getInput), populate class variables, then call a big, common method to render the bulk of the widget (just like we did with JHTML&#039;s genericlist in the example above). This will eliminate the need to rewrite the same code over again just to cater for a new Joomla! version.&lt;br /&gt;
&lt;br /&gt;
== Obsolte code ==&lt;br /&gt;
&lt;br /&gt;
Joomla 1.6 / 1.7 have been left any code obsolete, we should review code for do compatible with all versions.&lt;br /&gt;
=== Global Mainframe ===&lt;br /&gt;
Bad: &amp;lt;source&amp;gt;global $mainframe;&amp;lt;/source&amp;gt;&lt;br /&gt;
Good: &amp;lt;source&amp;gt;$mainframe = &amp;amp;JFactory::getApplication();&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Global Options ===&lt;br /&gt;
Bad: &amp;lt;source&amp;gt;global $options;&amp;lt;/source&amp;gt;&lt;br /&gt;
Good: &amp;lt;source&amp;gt;$option = JRequest::getCmd(&#039;option&#039;);&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I will add more changes like it.&lt;br /&gt;
&lt;br /&gt;
== Content plugins work slightly different ==&lt;br /&gt;
&lt;br /&gt;
The content plugins in Joomla! 1.5 were using the onPrepareContent method, whereas the content plugins in Joomla! 1.6/1.7 use the onContentPrepare method. The arguments have also changed. You can, however, create a single content plugin which runs on both Joomla! versions without rewriting code. Here&#039;s how:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
defined(&#039;_JEXEC&#039;) or die();&lt;br /&gt;
&lt;br /&gt;
jimport(&#039;joomla.plugin.plugin&#039;);&lt;br /&gt;
&lt;br /&gt;
class plgContentFoobar extends JPlugin&lt;br /&gt;
{&lt;br /&gt;
	public function onPrepareContent( &amp;amp;$article, &amp;amp;$params, $limitstart = 0 )&lt;br /&gt;
	{&lt;br /&gt;
		$article-&amp;gt;text = $this-&amp;gt;doSomethingWith($article-&amp;gt;text);&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	public function onContentPrepare($context, &amp;amp;$row, &amp;amp;$params, $page = 0)&lt;br /&gt;
	{&lt;br /&gt;
		// Danger, Will Robinson! $row in Joomla! 1.6/1.7 may be a string, not an article object!&lt;br /&gt;
		if(is_object($row)) {&lt;br /&gt;
			return $this-&amp;gt;onPrepareContent($row, $params, $page);&lt;br /&gt;
		} else {&lt;br /&gt;
			$row = $this-&amp;gt;doSomethingWith($row);&lt;br /&gt;
		}&lt;br /&gt;
		&lt;br /&gt;
		return true;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	private function doSomethingWith($text)&lt;br /&gt;
	{&lt;br /&gt;
		// Apparently, you have to do something here ;)&lt;br /&gt;
		return $text;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Updating doesn&#039;t work as you&#039;d expect ==&lt;br /&gt;
&lt;br /&gt;
There is a small but very disturbing bug in Joomla! 1.6. Updating a component whose manifest XML states version=&amp;quot;1.5.0&amp;quot; doesn&#039;t allow you to run the SQL statements. Namely, the SQL files you specify under the &amp;quot;&amp;lt;install&amp;gt;&amp;lt;sql&amp;gt;&amp;quot; tags won&#039;t run. You can neither use the new &amp;quot;&amp;lt;update&amp;gt;&amp;quot; tag. You are stuck with no way to run SQL commands on component update!&lt;br /&gt;
&lt;br /&gt;
The ugly workaround is to create a file named script.foobar.php with the following contents:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
define(&#039;_JEXEC&#039;) or die();&lt;br /&gt;
&lt;br /&gt;
class Com_FoobarInstallerScript {&lt;br /&gt;
	&lt;br /&gt;
	function update($parent) {&lt;br /&gt;
		$db = JFactory::getDBO();&lt;br /&gt;
		// Obviously you may have to change the path and name if your installation SQL file ;)&lt;br /&gt;
		if(method_exists($parent, &#039;extension_root&#039;)) {&lt;br /&gt;
			$sqlfile = $parent-&amp;gt;getPath(&#039;extension_root&#039;).DS.&#039;install.sql&#039;;&lt;br /&gt;
		} else {&lt;br /&gt;
			$sqlfile = $parent-&amp;gt;getParent()-&amp;gt;getPath(&#039;extension_root&#039;).DS.&#039;install.sql&#039;;&lt;br /&gt;
		}&lt;br /&gt;
		// Don&#039;t modify below this line&lt;br /&gt;
		$buffer = file_get_contents($sqlfile);&lt;br /&gt;
		if ($buffer !== false) {&lt;br /&gt;
			jimport(&#039;joomla.installer.helper&#039;);&lt;br /&gt;
			$queries = JInstallerHelper::splitSql($buffer);&lt;br /&gt;
			if (count($queries) != 0) {&lt;br /&gt;
				foreach ($queries as $query)&lt;br /&gt;
				{&lt;br /&gt;
					$query = trim($query);&lt;br /&gt;
					if ($query != &#039;&#039; &amp;amp;&amp;amp; $query{0} != &#039;#&#039;) {&lt;br /&gt;
						$db-&amp;gt;setQuery($query);&lt;br /&gt;
						if (!$db-&amp;gt;query()) {&lt;br /&gt;
							JError::raiseWarning(1, JText::sprintf(&#039;JLIB_INSTALLER_ERROR_SQL_ERROR&#039;, $db-&amp;gt;stderr(true)));&lt;br /&gt;
							return false;&lt;br /&gt;
						}&lt;br /&gt;
					}&lt;br /&gt;
				}&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Reference that file in the end of your manifest XML file, just above the closing install tag, with:&lt;br /&gt;
&amp;lt;source type=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;scriptfile&amp;gt;script.foobar.php&amp;lt;/scriptfile&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will force Joomla! 1.6 to run your extension&#039;s installation SQL file during the component update, just like Joomla! 1.5 used to do. Enjoy!&lt;br /&gt;
&lt;br /&gt;
== Menu item creation tricks ==&lt;br /&gt;
&lt;br /&gt;
===For Joomla! 1.5===&lt;br /&gt;
&lt;br /&gt;
You have to add a line similar to the following in your component&#039;s manifest XML file, inside the &amp;lt;code&amp;gt;&amp;lt;administration&amp;gt;&amp;lt;code&amp;gt; tag.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;COM_EXAMPLE&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;Example Component&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In both cases, you need to create a file named en-GB.com_example.menu.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation). In the first case (using a translation key), its contents should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=Example Component&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
In the second case (using natural language strings) its contents should be&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
Example Component=Example Component&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
NB: Joomla! 1.5 sorts the Component menu items based on the key you supply in your XML manifest. If you use the COM_EXAMPLE approach, your component will be sorted with all the components beginning with &amp;quot;C&amp;quot;, e.g. just before Contacts on a fresh Joomla! 1.5 installation, no matter what the translation is! This leads to funny results, especially with non-English languages where the translated component names do not follow the same sorting order as their English names. If you are bilingual or multilingual, I think you know what I mean…&lt;br /&gt;
&lt;br /&gt;
===For Joomla! 1.6 and later versions===&lt;br /&gt;
&lt;br /&gt;
You have to add a line similar to the following in your component&#039;s manifest XML file, inside the &amp;lt;code&amp;gt;&amp;lt;administration&amp;gt;&amp;lt;/code&amp;gt; tag.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;COM_EXAMPLE&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can not use a natural language string. Doing so will result in your component name appearing as example-component in the menu and you will be unable to provide a translation.&lt;br /&gt;
&lt;br /&gt;
You need to create a file named en-GB.com_example.sys.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation) or in administrator/components/com_example/language/en-GB. In the latter case, you must not include the translation file in the &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag. As long as you have placed the language directory in your &amp;lt;code&amp;gt;&amp;lt;files&amp;gt;&amp;lt;/code&amp;gt; tag, it will be copied along when the component is being installed.&lt;br /&gt;
&lt;br /&gt;
The contents of that file should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=&amp;quot;Example Component&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note that the language string must be enclosed in double quotes, as per Joomla!&#039;s translation standards.&lt;br /&gt;
&lt;br /&gt;
NB: Joomla! 1.6 and later sorts the Component menu items based on the actual translation of the key you supply in your XML manifest. This means that the sorting order is correct no matter what you call your translation key and no matter which language the site is being displayed in. Essentially, Joomla! 1.6 fixed the wrong sorting of the Components menu for the majority (non-English speaking!) of Joomla! users.&lt;br /&gt;
&lt;br /&gt;
===How to have a cross-version (Joomla! 1.5, 1.6 and later) component===&lt;br /&gt;
&lt;br /&gt;
If your component is supposed to be installed under both Joomla! 1.5 and Joomla! 1.6/1.7/2.5, you can do a little trick. You have to add a line similar to the following in your component&#039;s manifest XML file, inside the &amp;lt;code&amp;gt;&amp;lt;administration&amp;gt;&amp;lt;/code&amp;gt; tag.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;COM_EXAMPLE&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, you need to create two files, one for Joomla! 1.5 and one for Joomla! 1.6. For Joomla! 1.5  you need to create a file named en-GB.com_example.menu.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation). Its contents should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=Example Component&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
For Joomla! 1.6 you need to create a file named en-GB.com_example.sys.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation) or in administrator/components/com_example/language/en-GB. In the latter case, you must not include the translation file in the &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag. As long as you have placed the language directory in your &amp;lt;code&amp;gt;&amp;lt;files&amp;gt;&amp;lt;/code&amp;gt; tag, it will be copied along when the component is being installed.&lt;br /&gt;
&lt;br /&gt;
The contents of that file should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=&amp;quot;Example Component&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The only drawback is that your component will appear as weirdly sorted in the Components menu of Joomla! 1.5. Given the very near expiration date of Joomla! 1.5 (April 2012) this is not a major drawback and experience shows that users don&#039;t really care that much. &lt;br /&gt;
&lt;br /&gt;
===What if you do that and nothing happens?===&lt;br /&gt;
&lt;br /&gt;
Joomla! is supposed to create the components menu entries afresh every time you re-install the component. If this doesn&#039;t happen in your case, try uninstalling and re-installing your component. If you&#039;re not sure if Joomla! has the correct Components menu item translation key, you can always check the menu items database table. This will prevent you from unnecessary frustration when your translation files don&#039;t work simply because Joomla! has the wrong translation key in the table.&lt;br /&gt;
&lt;br /&gt;
== More tricks? ==&lt;br /&gt;
&lt;br /&gt;
I am sure that by writing this page I have left out a number of tricks which I am already using in my software. If you get stuck somewhere, feel free to take a look at how I&#039;ve implemented things in Admin Tools Core, Akeeba Backup Core and Akeeba Release System, my Joomla! 1.5/1.6/1.7 compatible extensions. If you find a better way to implement something, or found a trick not listed here, feel free to edit this wiki page. Sharing the knowledge is caring!&lt;br /&gt;
&lt;br /&gt;
Peace, love and friendship,&lt;br /&gt;
&lt;br /&gt;
Nicholas K. Dionysopoulos, AkeebaBackup.com Lead Developer&lt;/div&gt;</summary>
		<author><name>Hidabe</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Making_single_installation_packages_for_Joomla!_1.5_and_2.5_series&amp;diff=62930</id>
		<title>Making single installation packages for Joomla! 1.5 and 2.5 series</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Making_single_installation_packages_for_Joomla!_1.5_and_2.5_series&amp;diff=62930"/>
		<updated>2011-11-14T09:48:54Z</updated>

		<summary type="html">&lt;p&gt;Hidabe: /* Global Mainframe */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{review}}&lt;br /&gt;
&lt;br /&gt;
It is possible to create a single installation package which can install a component in Joomla! 1.5, 1.6 and 1.7 with minor changes. Below you will find some of the most common tricks required to create an extension which is compatible with all current versions of the Joomla! CMS.&lt;br /&gt;
&lt;br /&gt;
== Dealing with API changes ==&lt;br /&gt;
You will regularly bump into cases where an API has changed between Joomla! 1.5, 1.6 and 1.7. In order to cater for them, you need to run slightly different code based on the Joomla! version. Right now it&#039;s possible to do that by writing conditional statements like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if(version_compare(JVERSION,&#039;1.7.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
// Joomla! 1.7 code here&lt;br /&gt;
} elseif(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
// Joomla! 1.6 code here&lt;br /&gt;
} else {&lt;br /&gt;
// Joomla! 1.5 code here&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you do not have Joomla! 1.7-specific code -i.e it is the same as the Joomla! 1.6-specific code- please use the following code:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
// Joomla! 1.6 code here&lt;br /&gt;
} else {&lt;br /&gt;
// Joomla! 1.5 code here&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
While this conditional statement looks like an overkill, it has two major advantages:&lt;br /&gt;
* Compatibility with all Joomla! versions using the same package, therefore using the same codebase, ergo less maintenance overhead&lt;br /&gt;
* Once, let&#039;s say, Joomla! 1.8 is released and you decide to drop support for earlier Joomla! releases, we can just search your code for &amp;quot;if(version_compare(JVERSION,&amp;quot; and remove all of the legacy code.&lt;br /&gt;
&lt;br /&gt;
== One XML configuration file, multiple Joomla! versions ==&lt;br /&gt;
&lt;br /&gt;
Various XML files in Joomla! accept settings, or parameters. For example your extension manifest file, the config.xml file and the view XML files all accept such settings. You may have noticed that whereas in Joomla! 1.5 these were found under the &amp;lt;params&amp;gt; tags, in Joomla! 1.6 and later they are found inside &amp;lt;filedsets&amp;gt;. One hidden secret of Joomla! is that Joomla! 1.5 will ignore Joomla! 1.6 syntax, whereas Joomla! 1.6/1.7 will ignore Joomla! 1.5 syntax. This allows you to have a single XML file which caters for all Joomla! releases. For example, here&#039;s a sample config.xml file, to be placed in the component&#039;s backend directory:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;config&amp;gt;&lt;br /&gt;
	&amp;lt;!-- Joomla! 1.5 uses params --&amp;gt;&lt;br /&gt;
	&amp;lt;params&amp;gt;&lt;br /&gt;
		&amp;lt;param name=&amp;quot;foobar&amp;quot; type=&amp;quot;text&amp;quot; default=&amp;quot;&amp;quot; size=&amp;quot;30&amp;quot;&lt;br /&gt;
			label=&amp;quot;COM_FOOBAR_OPTION_FOOBAR_LBL&amp;quot;&lt;br /&gt;
			description =&amp;quot;COM_FOOBAR_OPTION_FOOBAR_DESC&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/params&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;!-- Joomla! 1.6 uses fieldset --&amp;gt;&lt;br /&gt;
	&amp;lt;fieldset&lt;br /&gt;
		name=&amp;quot;basic&amp;quot;&lt;br /&gt;
		label=&amp;quot;COM_FOOBAR_OPTIONS_SECTION_BASIC_LBL&amp;quot;&lt;br /&gt;
		description=&amp;quot;COM_FOOBAR_OPTIONS_SECTION_BASIC_DESC&amp;quot;&lt;br /&gt;
		&amp;gt;&lt;br /&gt;
		&amp;lt;field name=&amp;quot;foobar&amp;quot; type=&amp;quot;text&amp;quot; default=&amp;quot;&amp;quot; size=&amp;quot;30&amp;quot;&lt;br /&gt;
			label=&amp;quot;COM_FOOBAR_OPTION_FOOBAR_LBL&amp;quot;&lt;br /&gt;
			description =&amp;quot;COM_FOOBAR_OPTION_FOOBAR_DESC&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/fieldset&amp;gt;&lt;br /&gt;
&amp;lt;/config&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That&#039;s how easy it is!&lt;br /&gt;
&lt;br /&gt;
== Dealing with languages ==&lt;br /&gt;
&lt;br /&gt;
=== How to load component-local translation files in Joomla! 1.5 ===&lt;br /&gt;
&lt;br /&gt;
Joomla! 1.6 introduced a new feature where a user can place language files inside the component&#039;s directory, e.g. administrator/com_foobar/language/en-GB/en-GB.com_foobar.ini, in order to provide language overrides. But Joomla! 1.5 doesn&#039;t support this feature. Or does it? Even though it can not do that automatically, you can do so in your extension&#039;s dispatcher file, e.g. administrator/com_foobar/foobar.php. Here&#039;s the magic code to do that in the backend:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_ADMINISTRATOR, null, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_COMPONENT_ADMINISTRATOR, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
and the frontend:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_SITE, null, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_COMPONENT, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Tips and tricks for language strings ===&lt;br /&gt;
&lt;br /&gt;
All your translation keys should consist of uppercase characters without spaces (that is A-Z, 0-9 and underscores). All translation values should be included in double quotation marks. This allows the translation files to be parsed by Joomla! 1.5/1.6/1.7 alike. You are also suggested to prefix your translation keys with the extension&#039;s name, albeit this is not required. For example, this is a good translation string:&lt;br /&gt;
COM_FOOBAR_CPANEL_TITLE=&amp;quot;Foobar Control Panel&amp;quot;&lt;br /&gt;
whereas this is a &#039;&#039;&#039;bad&#039;&#039;&#039; translation string:&lt;br /&gt;
CONTROL PANEL=Foobar Control Panel&lt;br /&gt;
The former works with all current versions of Joomla!, the latter doesn&#039;t.&lt;br /&gt;
&lt;br /&gt;
If you have double quotation marks in your translation values, please replace them with single quotation marks. While Joomla! 1.5 allowed escaping the double quotation marks with \&amp;quot;, Joomla! 1.6 under newer versions of PHP don&#039;t and require you to escape them as &amp;quot;__QQ__&amp;quot; which throws off Joomla! 1.5&#039;s parser. The workaround is to take advantage of a little known fact about HTML, that attributes can be wrapped in single quotation marks. For instance, change this:&lt;br /&gt;
COM_FOOBAR_SOME_KEY=&amp;lt;a href=&amp;quot;http://www.example.com&amp;quot;&amp;gt;Just a test&amp;lt;/a&amp;gt;&lt;br /&gt;
to this:&lt;br /&gt;
COM_FOOBAR_SOME_KEY=&amp;quot;&amp;lt;a href=&#039;http://www.example.com&#039;&amp;gt;Just a test&amp;lt;/a&amp;gt;&amp;quot;&lt;br /&gt;
It is valid HTML, it works on Joomla! 1.5/1.6/1.7 but it will invalidates XHTML. You can&#039;t always win, sorry.&lt;br /&gt;
&lt;br /&gt;
=== Making untranslated strings look more beautiful ===&lt;br /&gt;
&lt;br /&gt;
The problem with using tight translation keys as we described is that untranslated strings now look something like COM_FOOBAR_VIEWNAME_SOMEKEY. If you have volunteer translators you can bet your head that most translations will not be in sync with your component and you will have untranslated strings. In Joomla! 1.5, using &amp;quot;natural language&amp;quot; keys, you got to show your users the default (English) text if a translation key didn&#039;t exist in their language. This is impossible in Joomla! 1.6... or maybe not?&lt;br /&gt;
&lt;br /&gt;
We can use the same little trick in our component&#039;s dispatcher as with our component-local translation loading string above. Here&#039;s how to load the English translation file in the backend of your component, then overwrite only the keys which exist with the user&#039;s selected language, essentially allowing untranslated keys to show in English:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_ADMINISTRATOR, &#039;en-GB&#039;, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_ADMINISTRATOR, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The same thing in the front-end:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_SITE, &#039;en-GB&#039;, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_SITE, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== JElement vs JFormField ==&lt;br /&gt;
&lt;br /&gt;
Oh, the struggle! You need a custom widget in the configuration section of your component. In Joomla! 1.5 you could just create a new JElement. In Joomla! 1.6 you could just create a new JFormField. But both? In a single file? You can employ a simple trick. In the following example I am going to create a rather lame element, called SQL2, which displays a multi-selection box out of the results of a SQL statement. This is made as part of a fictitious module called mod_foobar&lt;br /&gt;
&lt;br /&gt;
First, let your configuration know where to load the custom widget files from, by putting this in your module&#039;s XML manifest file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;params addpath=&amp;quot;/modules/mod_foobar/elements&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;param name=&amp;quot;ids&amp;quot; type=&amp;quot;sql2&amp;quot; default=&amp;quot;&amp;quot;&lt;br /&gt;
			label=&amp;quot;MOD_FOOBAR_LEVELS_TITLE&amp;quot;&lt;br /&gt;
			description=&amp;quot;MOD_FOOBAR_LEVELS_DESC&amp;quot;&lt;br /&gt;
			query=&amp;quot;SELECT `foobar_level_id`, `title` FROM `#__foobar_levels`&amp;quot;&lt;br /&gt;
			key_field=&amp;quot;foobar_level_id&amp;quot;&lt;br /&gt;
			value_field=&amp;quot;title&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/params&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
	&amp;lt;config addfieldpath=&amp;quot;/modules/mod_foobar/elements&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;fields name=&amp;quot;params&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;fieldset name=&amp;quot;basic&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;field name=&amp;quot;ids&amp;quot; type=&amp;quot;sql2&amp;quot; default=&amp;quot;&amp;quot;&lt;br /&gt;
					label=&amp;quot;MOD_FOOBAR_LEVELS_TITLE&amp;quot;&lt;br /&gt;
					description=&amp;quot;MOD_FOOBAR_LEVELS_DESC&amp;quot;&lt;br /&gt;
					query=&amp;quot;SELECT `foobar_level_id`, `title` FROM `#__foobar_levels`&amp;quot;&lt;br /&gt;
					key_field=&amp;quot;foobar_level_id&amp;quot;&lt;br /&gt;
					value_field=&amp;quot;title&amp;quot; /&amp;gt;&lt;br /&gt;
			&amp;lt;/fieldset&amp;gt;&lt;br /&gt;
		&amp;lt;/fields&amp;gt;&lt;br /&gt;
	&amp;lt;/config&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you see, we instruct both Joomla! 1.5 and 1.6/1.7 to look into the same directory, for the same-named file (sql2.php). Here are the contents of the modules/mod_foobar/elements/sql2.php file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
defined(&#039;_JEXEC&#039;) or die(&#039;Restricted Access&#039;);&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
 * This trick allows us to extend the correct class, based on whether it&#039;s Joomla! 1.5 or 1.6&lt;br /&gt;
 */&lt;br /&gt;
if(!class_exists(&#039;JFakeElementBase&#039;)) {&lt;br /&gt;
        if(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
                class JFakeElementBase extends JFormField {&lt;br /&gt;
                        // This line is required to keep Joomla! 1.6/1.7 from complaining&lt;br /&gt;
                        public function getInput() {}&lt;br /&gt;
                }               &lt;br /&gt;
        } else {&lt;br /&gt;
                class JFakeElementBase extends JElement {}&lt;br /&gt;
        }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * Our main element class, creating a multi-select list out of an SQL statement&lt;br /&gt;
 */&lt;br /&gt;
class JFakeElementSQL2 extends JFakeElementBase&lt;br /&gt;
{&lt;br /&gt;
	var	$_name = &#039;SQL2&#039;;&lt;br /&gt;
&lt;br /&gt;
	// Joomla! 1.5&lt;br /&gt;
	function fetchElement($name, $value, &amp;amp;$node, $control_name)&lt;br /&gt;
	{&lt;br /&gt;
		$db			= &amp;amp; JFactory::getDBO();&lt;br /&gt;
		$db-&amp;gt;setQuery($node-&amp;gt;attributes(&#039;query&#039;));&lt;br /&gt;
		$key = ($node-&amp;gt;attributes(&#039;key_field&#039;) ? $node-&amp;gt;attributes(&#039;key_field&#039;) : &#039;value&#039;);&lt;br /&gt;
		$val = ($node-&amp;gt;attributes(&#039;value_field&#039;) ? $node-&amp;gt;attributes(&#039;value_field&#039;) : $name);&lt;br /&gt;
		return JHTML::_(&#039;select.genericlist&#039;,  $db-&amp;gt;loadObjectList(), &#039;&#039;.$control_name.&#039;[&#039;.$name.&#039;][]&#039;, &#039;class=&amp;quot;inputbox&amp;quot; multiple=&amp;quot;multiple&amp;quot; size=&amp;quot;5&amp;quot;&#039;, $key, $val, $value, $control_name.$name);&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	// Joomla! 1.6&lt;br /&gt;
	function getInput()&lt;br /&gt;
	{&lt;br /&gt;
		$db			= &amp;amp; JFactory::getDBO();&lt;br /&gt;
		$db-&amp;gt;setQuery($this-&amp;gt;element[&#039;query&#039;]);&lt;br /&gt;
		$key = ($this-&amp;gt;element[&#039;key_field&#039;] ? $this-&amp;gt;element[&#039;key_field&#039;] : &#039;value&#039;);&lt;br /&gt;
		$val = ($this-&amp;gt;element[&#039;value_field&#039;] ? $this-&amp;gt;element[&#039;value_field&#039;] : $this-&amp;gt;name);&lt;br /&gt;
		return JHTML::_(&#039;select.genericlist&#039;,  $db-&amp;gt;loadObjectList(), $this-&amp;gt;name, &#039;class=&amp;quot;inputbox&amp;quot; multiple=&amp;quot;multiple&amp;quot; size=&amp;quot;5&amp;quot;&#039;, $key, $val, $this-&amp;gt;value, $this-&amp;gt;id);&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
 * Part two of our trick; we define the proper element name, depending on whether it&#039;s Joomla! 1.5 or 1.6&lt;br /&gt;
 */&lt;br /&gt;
if(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
        class JFormFieldSQL2 extends JFakeElementSQL2 {}&lt;br /&gt;
} else {&lt;br /&gt;
        class JElementSQL2 extends JFakeElementSQL2 {}                &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Considering that most custom widgets have a lot more code than this, you can create two different initialisation sections for Joomla! 1.5 and 1.6/1.7 (fetchElement and getInput), populate class variables, then call a big, common method to render the bulk of the widget (just like we did with JHTML&#039;s genericlist in the example above). This will eliminate the need to rewrite the same code over again just to cater for a new Joomla! version.&lt;br /&gt;
&lt;br /&gt;
== Obsolte code ==&lt;br /&gt;
&lt;br /&gt;
Joomla 1.6 / 1.7 have been left any code obsolete, we should review code for do compatible with all versions.&lt;br /&gt;
=== Global Mainframe ===&lt;br /&gt;
Bad: &amp;lt;source&amp;gt;global $mainframe;&amp;lt;/source&amp;gt;&lt;br /&gt;
Good: &amp;lt;source&amp;gt;$mainframe = &amp;amp;JFactory::getApplication();&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I will add more changes like it.&lt;br /&gt;
&lt;br /&gt;
== Content plugins work slightly different ==&lt;br /&gt;
&lt;br /&gt;
The content plugins in Joomla! 1.5 were using the onPrepareContent method, whereas the content plugins in Joomla! 1.6/1.7 use the onContentPrepare method. The arguments have also changed. You can, however, create a single content plugin which runs on both Joomla! versions without rewriting code. Here&#039;s how:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
defined(&#039;_JEXEC&#039;) or die();&lt;br /&gt;
&lt;br /&gt;
jimport(&#039;joomla.plugin.plugin&#039;);&lt;br /&gt;
&lt;br /&gt;
class plgContentFoobar extends JPlugin&lt;br /&gt;
{&lt;br /&gt;
	public function onPrepareContent( &amp;amp;$article, &amp;amp;$params, $limitstart = 0 )&lt;br /&gt;
	{&lt;br /&gt;
		$article-&amp;gt;text = $this-&amp;gt;doSomethingWith($article-&amp;gt;text);&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	public function onContentPrepare($context, &amp;amp;$row, &amp;amp;$params, $page = 0)&lt;br /&gt;
	{&lt;br /&gt;
		// Danger, Will Robinson! $row in Joomla! 1.6/1.7 may be a string, not an article object!&lt;br /&gt;
		if(is_object($row)) {&lt;br /&gt;
			return $this-&amp;gt;onPrepareContent($row, $params, $page);&lt;br /&gt;
		} else {&lt;br /&gt;
			$row = $this-&amp;gt;doSomethingWith($row);&lt;br /&gt;
		}&lt;br /&gt;
		&lt;br /&gt;
		return true;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	private function doSomethingWith($text)&lt;br /&gt;
	{&lt;br /&gt;
		// Apparently, you have to do something here ;)&lt;br /&gt;
		return $text;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Updating doesn&#039;t work as you&#039;d expect ==&lt;br /&gt;
&lt;br /&gt;
There is a small but very disturbing bug in Joomla! 1.6. Updating a component whose manifest XML states version=&amp;quot;1.5.0&amp;quot; doesn&#039;t allow you to run the SQL statements. Namely, the SQL files you specify under the &amp;quot;&amp;lt;install&amp;gt;&amp;lt;sql&amp;gt;&amp;quot; tags won&#039;t run. You can neither use the new &amp;quot;&amp;lt;update&amp;gt;&amp;quot; tag. You are stuck with no way to run SQL commands on component update!&lt;br /&gt;
&lt;br /&gt;
The ugly workaround is to create a file named script.foobar.php with the following contents:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
define(&#039;_JEXEC&#039;) or die();&lt;br /&gt;
&lt;br /&gt;
class Com_FoobarInstallerScript {&lt;br /&gt;
	&lt;br /&gt;
	function update($parent) {&lt;br /&gt;
		$db = JFactory::getDBO();&lt;br /&gt;
		// Obviously you may have to change the path and name if your installation SQL file ;)&lt;br /&gt;
		if(method_exists($parent, &#039;extension_root&#039;)) {&lt;br /&gt;
			$sqlfile = $parent-&amp;gt;getPath(&#039;extension_root&#039;).DS.&#039;install.sql&#039;;&lt;br /&gt;
		} else {&lt;br /&gt;
			$sqlfile = $parent-&amp;gt;getParent()-&amp;gt;getPath(&#039;extension_root&#039;).DS.&#039;install.sql&#039;;&lt;br /&gt;
		}&lt;br /&gt;
		// Don&#039;t modify below this line&lt;br /&gt;
		$buffer = file_get_contents($sqlfile);&lt;br /&gt;
		if ($buffer !== false) {&lt;br /&gt;
			jimport(&#039;joomla.installer.helper&#039;);&lt;br /&gt;
			$queries = JInstallerHelper::splitSql($buffer);&lt;br /&gt;
			if (count($queries) != 0) {&lt;br /&gt;
				foreach ($queries as $query)&lt;br /&gt;
				{&lt;br /&gt;
					$query = trim($query);&lt;br /&gt;
					if ($query != &#039;&#039; &amp;amp;&amp;amp; $query{0} != &#039;#&#039;) {&lt;br /&gt;
						$db-&amp;gt;setQuery($query);&lt;br /&gt;
						if (!$db-&amp;gt;query()) {&lt;br /&gt;
							JError::raiseWarning(1, JText::sprintf(&#039;JLIB_INSTALLER_ERROR_SQL_ERROR&#039;, $db-&amp;gt;stderr(true)));&lt;br /&gt;
							return false;&lt;br /&gt;
						}&lt;br /&gt;
					}&lt;br /&gt;
				}&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Reference that file in the end of your manifest XML file, just above the closing install tag, with:&lt;br /&gt;
&amp;lt;source type=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;scriptfile&amp;gt;script.foobar.php&amp;lt;/scriptfile&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will force Joomla! 1.6 to run your extension&#039;s installation SQL file during the component update, just like Joomla! 1.5 used to do. Enjoy!&lt;br /&gt;
&lt;br /&gt;
== Menu item creation tricks ==&lt;br /&gt;
&lt;br /&gt;
===For Joomla! 1.5===&lt;br /&gt;
&lt;br /&gt;
You have to add a line similar to the following in your component&#039;s manifest XML file, inside the &amp;lt;code&amp;gt;&amp;lt;administration&amp;gt;&amp;lt;code&amp;gt; tag.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;COM_EXAMPLE&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;Example Component&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In both cases, you need to create a file named en-GB.com_example.menu.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation). In the first case (using a translation key), its contents should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=Example Component&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
In the second case (using natural language strings) its contents should be&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
Example Component=Example Component&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
NB: Joomla! 1.5 sorts the Component menu items based on the key you supply in your XML manifest. If you use the COM_EXAMPLE approach, your component will be sorted with all the components beginning with &amp;quot;C&amp;quot;, e.g. just before Contacts on a fresh Joomla! 1.5 installation, no matter what the translation is! This leads to funny results, especially with non-English languages where the translated component names do not follow the same sorting order as their English names. If you are bilingual or multilingual, I think you know what I mean…&lt;br /&gt;
&lt;br /&gt;
===For Joomla! 1.6 and later versions===&lt;br /&gt;
&lt;br /&gt;
You have to add a line similar to the following in your component&#039;s manifest XML file, inside the &amp;lt;code&amp;gt;&amp;lt;administration&amp;gt;&amp;lt;/code&amp;gt; tag.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;COM_EXAMPLE&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can not use a natural language string. Doing so will result in your component name appearing as example-component in the menu and you will be unable to provide a translation.&lt;br /&gt;
&lt;br /&gt;
You need to create a file named en-GB.com_example.sys.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation) or in administrator/components/com_example/language/en-GB. In the latter case, you must not include the translation file in the &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag. As long as you have placed the language directory in your &amp;lt;code&amp;gt;&amp;lt;files&amp;gt;&amp;lt;/code&amp;gt; tag, it will be copied along when the component is being installed.&lt;br /&gt;
&lt;br /&gt;
The contents of that file should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=&amp;quot;Example Component&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note that the language string must be enclosed in double quotes, as per Joomla!&#039;s translation standards.&lt;br /&gt;
&lt;br /&gt;
NB: Joomla! 1.6 and later sorts the Component menu items based on the actual translation of the key you supply in your XML manifest. This means that the sorting order is correct no matter what you call your translation key and no matter which language the site is being displayed in. Essentially, Joomla! 1.6 fixed the wrong sorting of the Components menu for the majority (non-English speaking!) of Joomla! users.&lt;br /&gt;
&lt;br /&gt;
===How to have a cross-version (Joomla! 1.5, 1.6 and later) component===&lt;br /&gt;
&lt;br /&gt;
If your component is supposed to be installed under both Joomla! 1.5 and Joomla! 1.6/1.7/2.5, you can do a little trick. You have to add a line similar to the following in your component&#039;s manifest XML file, inside the &amp;lt;code&amp;gt;&amp;lt;administration&amp;gt;&amp;lt;/code&amp;gt; tag.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;COM_EXAMPLE&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, you need to create two files, one for Joomla! 1.5 and one for Joomla! 1.6. For Joomla! 1.5  you need to create a file named en-GB.com_example.menu.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation). Its contents should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=Example Component&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
For Joomla! 1.6 you need to create a file named en-GB.com_example.sys.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation) or in administrator/components/com_example/language/en-GB. In the latter case, you must not include the translation file in the &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag. As long as you have placed the language directory in your &amp;lt;code&amp;gt;&amp;lt;files&amp;gt;&amp;lt;/code&amp;gt; tag, it will be copied along when the component is being installed.&lt;br /&gt;
&lt;br /&gt;
The contents of that file should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=&amp;quot;Example Component&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The only drawback is that your component will appear as weirdly sorted in the Components menu of Joomla! 1.5. Given the very near expiration date of Joomla! 1.5 (April 2012) this is not a major drawback and experience shows that users don&#039;t really care that much. &lt;br /&gt;
&lt;br /&gt;
===What if you do that and nothing happens?===&lt;br /&gt;
&lt;br /&gt;
Joomla! is supposed to create the components menu entries afresh every time you re-install the component. If this doesn&#039;t happen in your case, try uninstalling and re-installing your component. If you&#039;re not sure if Joomla! has the correct Components menu item translation key, you can always check the menu items database table. This will prevent you from unnecessary frustration when your translation files don&#039;t work simply because Joomla! has the wrong translation key in the table.&lt;br /&gt;
&lt;br /&gt;
== More tricks? ==&lt;br /&gt;
&lt;br /&gt;
I am sure that by writing this page I have left out a number of tricks which I am already using in my software. If you get stuck somewhere, feel free to take a look at how I&#039;ve implemented things in Admin Tools Core, Akeeba Backup Core and Akeeba Release System, my Joomla! 1.5/1.6/1.7 compatible extensions. If you find a better way to implement something, or found a trick not listed here, feel free to edit this wiki page. Sharing the knowledge is caring!&lt;br /&gt;
&lt;br /&gt;
Peace, love and friendship,&lt;br /&gt;
&lt;br /&gt;
Nicholas K. Dionysopoulos, AkeebaBackup.com Lead Developer&lt;/div&gt;</summary>
		<author><name>Hidabe</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Making_single_installation_packages_for_Joomla!_1.5_and_2.5_series&amp;diff=62928</id>
		<title>Making single installation packages for Joomla! 1.5 and 2.5 series</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Making_single_installation_packages_for_Joomla!_1.5_and_2.5_series&amp;diff=62928"/>
		<updated>2011-11-14T08:23:16Z</updated>

		<summary type="html">&lt;p&gt;Hidabe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{review}}&lt;br /&gt;
&lt;br /&gt;
It is possible to create a single installation package which can install a component in Joomla! 1.5, 1.6 and 1.7 with minor changes. Below you will find some of the most common tricks required to create an extension which is compatible with all current versions of the Joomla! CMS.&lt;br /&gt;
&lt;br /&gt;
== Dealing with API changes ==&lt;br /&gt;
You will regularly bump into cases where an API has changed between Joomla! 1.5, 1.6 and 1.7. In order to cater for them, you need to run slightly different code based on the Joomla! version. Right now it&#039;s possible to do that by writing conditional statements like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if(version_compare(JVERSION,&#039;1.7.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
// Joomla! 1.7 code here&lt;br /&gt;
} elseif(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
// Joomla! 1.6 code here&lt;br /&gt;
} else {&lt;br /&gt;
// Joomla! 1.5 code here&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you do not have Joomla! 1.7-specific code -i.e it is the same as the Joomla! 1.6-specific code- please use the following code:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
// Joomla! 1.6 code here&lt;br /&gt;
} else {&lt;br /&gt;
// Joomla! 1.5 code here&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
While this conditional statement looks like an overkill, it has two major advantages:&lt;br /&gt;
* Compatibility with all Joomla! versions using the same package, therefore using the same codebase, ergo less maintenance overhead&lt;br /&gt;
* Once, let&#039;s say, Joomla! 1.8 is released and you decide to drop support for earlier Joomla! releases, we can just search your code for &amp;quot;if(version_compare(JVERSION,&amp;quot; and remove all of the legacy code.&lt;br /&gt;
&lt;br /&gt;
== One XML configuration file, multiple Joomla! versions ==&lt;br /&gt;
&lt;br /&gt;
Various XML files in Joomla! accept settings, or parameters. For example your extension manifest file, the config.xml file and the view XML files all accept such settings. You may have noticed that whereas in Joomla! 1.5 these were found under the &amp;lt;params&amp;gt; tags, in Joomla! 1.6 and later they are found inside &amp;lt;filedsets&amp;gt;. One hidden secret of Joomla! is that Joomla! 1.5 will ignore Joomla! 1.6 syntax, whereas Joomla! 1.6/1.7 will ignore Joomla! 1.5 syntax. This allows you to have a single XML file which caters for all Joomla! releases. For example, here&#039;s a sample config.xml file, to be placed in the component&#039;s backend directory:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;config&amp;gt;&lt;br /&gt;
	&amp;lt;!-- Joomla! 1.5 uses params --&amp;gt;&lt;br /&gt;
	&amp;lt;params&amp;gt;&lt;br /&gt;
		&amp;lt;param name=&amp;quot;foobar&amp;quot; type=&amp;quot;text&amp;quot; default=&amp;quot;&amp;quot; size=&amp;quot;30&amp;quot;&lt;br /&gt;
			label=&amp;quot;COM_FOOBAR_OPTION_FOOBAR_LBL&amp;quot;&lt;br /&gt;
			description =&amp;quot;COM_FOOBAR_OPTION_FOOBAR_DESC&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/params&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;!-- Joomla! 1.6 uses fieldset --&amp;gt;&lt;br /&gt;
	&amp;lt;fieldset&lt;br /&gt;
		name=&amp;quot;basic&amp;quot;&lt;br /&gt;
		label=&amp;quot;COM_FOOBAR_OPTIONS_SECTION_BASIC_LBL&amp;quot;&lt;br /&gt;
		description=&amp;quot;COM_FOOBAR_OPTIONS_SECTION_BASIC_DESC&amp;quot;&lt;br /&gt;
		&amp;gt;&lt;br /&gt;
		&amp;lt;field name=&amp;quot;foobar&amp;quot; type=&amp;quot;text&amp;quot; default=&amp;quot;&amp;quot; size=&amp;quot;30&amp;quot;&lt;br /&gt;
			label=&amp;quot;COM_FOOBAR_OPTION_FOOBAR_LBL&amp;quot;&lt;br /&gt;
			description =&amp;quot;COM_FOOBAR_OPTION_FOOBAR_DESC&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/fieldset&amp;gt;&lt;br /&gt;
&amp;lt;/config&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That&#039;s how easy it is!&lt;br /&gt;
&lt;br /&gt;
== Dealing with languages ==&lt;br /&gt;
&lt;br /&gt;
=== How to load component-local translation files in Joomla! 1.5 ===&lt;br /&gt;
&lt;br /&gt;
Joomla! 1.6 introduced a new feature where a user can place language files inside the component&#039;s directory, e.g. administrator/com_foobar/language/en-GB/en-GB.com_foobar.ini, in order to provide language overrides. But Joomla! 1.5 doesn&#039;t support this feature. Or does it? Even though it can not do that automatically, you can do so in your extension&#039;s dispatcher file, e.g. administrator/com_foobar/foobar.php. Here&#039;s the magic code to do that in the backend:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_ADMINISTRATOR, null, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_COMPONENT_ADMINISTRATOR, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
and the frontend:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_SITE, null, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_COMPONENT, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Tips and tricks for language strings ===&lt;br /&gt;
&lt;br /&gt;
All your translation keys should consist of uppercase characters without spaces (that is A-Z, 0-9 and underscores). All translation values should be included in double quotation marks. This allows the translation files to be parsed by Joomla! 1.5/1.6/1.7 alike. You are also suggested to prefix your translation keys with the extension&#039;s name, albeit this is not required. For example, this is a good translation string:&lt;br /&gt;
COM_FOOBAR_CPANEL_TITLE=&amp;quot;Foobar Control Panel&amp;quot;&lt;br /&gt;
whereas this is a &#039;&#039;&#039;bad&#039;&#039;&#039; translation string:&lt;br /&gt;
CONTROL PANEL=Foobar Control Panel&lt;br /&gt;
The former works with all current versions of Joomla!, the latter doesn&#039;t.&lt;br /&gt;
&lt;br /&gt;
If you have double quotation marks in your translation values, please replace them with single quotation marks. While Joomla! 1.5 allowed escaping the double quotation marks with \&amp;quot;, Joomla! 1.6 under newer versions of PHP don&#039;t and require you to escape them as &amp;quot;__QQ__&amp;quot; which throws off Joomla! 1.5&#039;s parser. The workaround is to take advantage of a little known fact about HTML, that attributes can be wrapped in single quotation marks. For instance, change this:&lt;br /&gt;
COM_FOOBAR_SOME_KEY=&amp;lt;a href=&amp;quot;http://www.example.com&amp;quot;&amp;gt;Just a test&amp;lt;/a&amp;gt;&lt;br /&gt;
to this:&lt;br /&gt;
COM_FOOBAR_SOME_KEY=&amp;quot;&amp;lt;a href=&#039;http://www.example.com&#039;&amp;gt;Just a test&amp;lt;/a&amp;gt;&amp;quot;&lt;br /&gt;
It is valid HTML, it works on Joomla! 1.5/1.6/1.7 but it will invalidates XHTML. You can&#039;t always win, sorry.&lt;br /&gt;
&lt;br /&gt;
=== Making untranslated strings look more beautiful ===&lt;br /&gt;
&lt;br /&gt;
The problem with using tight translation keys as we described is that untranslated strings now look something like COM_FOOBAR_VIEWNAME_SOMEKEY. If you have volunteer translators you can bet your head that most translations will not be in sync with your component and you will have untranslated strings. In Joomla! 1.5, using &amp;quot;natural language&amp;quot; keys, you got to show your users the default (English) text if a translation key didn&#039;t exist in their language. This is impossible in Joomla! 1.6... or maybe not?&lt;br /&gt;
&lt;br /&gt;
We can use the same little trick in our component&#039;s dispatcher as with our component-local translation loading string above. Here&#039;s how to load the English translation file in the backend of your component, then overwrite only the keys which exist with the user&#039;s selected language, essentially allowing untranslated keys to show in English:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_ADMINISTRATOR, &#039;en-GB&#039;, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_ADMINISTRATOR, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The same thing in the front-end:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$jlang =&amp;amp; JFactory::getLanguage();&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_SITE, &#039;en-GB&#039;, true);&lt;br /&gt;
$jlang-&amp;gt;load(&#039;com_foobar&#039;, JPATH_SITE, null, true);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== JElement vs JFormField ==&lt;br /&gt;
&lt;br /&gt;
Oh, the struggle! You need a custom widget in the configuration section of your component. In Joomla! 1.5 you could just create a new JElement. In Joomla! 1.6 you could just create a new JFormField. But both? In a single file? You can employ a simple trick. In the following example I am going to create a rather lame element, called SQL2, which displays a multi-selection box out of the results of a SQL statement. This is made as part of a fictitious module called mod_foobar&lt;br /&gt;
&lt;br /&gt;
First, let your configuration know where to load the custom widget files from, by putting this in your module&#039;s XML manifest file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;params addpath=&amp;quot;/modules/mod_foobar/elements&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;param name=&amp;quot;ids&amp;quot; type=&amp;quot;sql2&amp;quot; default=&amp;quot;&amp;quot;&lt;br /&gt;
			label=&amp;quot;MOD_FOOBAR_LEVELS_TITLE&amp;quot;&lt;br /&gt;
			description=&amp;quot;MOD_FOOBAR_LEVELS_DESC&amp;quot;&lt;br /&gt;
			query=&amp;quot;SELECT `foobar_level_id`, `title` FROM `#__foobar_levels`&amp;quot;&lt;br /&gt;
			key_field=&amp;quot;foobar_level_id&amp;quot;&lt;br /&gt;
			value_field=&amp;quot;title&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/params&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
	&amp;lt;config addfieldpath=&amp;quot;/modules/mod_foobar/elements&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;fields name=&amp;quot;params&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;fieldset name=&amp;quot;basic&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;field name=&amp;quot;ids&amp;quot; type=&amp;quot;sql2&amp;quot; default=&amp;quot;&amp;quot;&lt;br /&gt;
					label=&amp;quot;MOD_FOOBAR_LEVELS_TITLE&amp;quot;&lt;br /&gt;
					description=&amp;quot;MOD_FOOBAR_LEVELS_DESC&amp;quot;&lt;br /&gt;
					query=&amp;quot;SELECT `foobar_level_id`, `title` FROM `#__foobar_levels`&amp;quot;&lt;br /&gt;
					key_field=&amp;quot;foobar_level_id&amp;quot;&lt;br /&gt;
					value_field=&amp;quot;title&amp;quot; /&amp;gt;&lt;br /&gt;
			&amp;lt;/fieldset&amp;gt;&lt;br /&gt;
		&amp;lt;/fields&amp;gt;&lt;br /&gt;
	&amp;lt;/config&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you see, we instruct both Joomla! 1.5 and 1.6/1.7 to look into the same directory, for the same-named file (sql2.php). Here are the contents of the modules/mod_foobar/elements/sql2.php file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
defined(&#039;_JEXEC&#039;) or die(&#039;Restricted Access&#039;);&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
 * This trick allows us to extend the correct class, based on whether it&#039;s Joomla! 1.5 or 1.6&lt;br /&gt;
 */&lt;br /&gt;
if(!class_exists(&#039;JFakeElementBase&#039;)) {&lt;br /&gt;
        if(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
                class JFakeElementBase extends JFormField {&lt;br /&gt;
                        // This line is required to keep Joomla! 1.6/1.7 from complaining&lt;br /&gt;
                        public function getInput() {}&lt;br /&gt;
                }               &lt;br /&gt;
        } else {&lt;br /&gt;
                class JFakeElementBase extends JElement {}&lt;br /&gt;
        }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * Our main element class, creating a multi-select list out of an SQL statement&lt;br /&gt;
 */&lt;br /&gt;
class JFakeElementSQL2 extends JFakeElementBase&lt;br /&gt;
{&lt;br /&gt;
	var	$_name = &#039;SQL2&#039;;&lt;br /&gt;
&lt;br /&gt;
	// Joomla! 1.5&lt;br /&gt;
	function fetchElement($name, $value, &amp;amp;$node, $control_name)&lt;br /&gt;
	{&lt;br /&gt;
		$db			= &amp;amp; JFactory::getDBO();&lt;br /&gt;
		$db-&amp;gt;setQuery($node-&amp;gt;attributes(&#039;query&#039;));&lt;br /&gt;
		$key = ($node-&amp;gt;attributes(&#039;key_field&#039;) ? $node-&amp;gt;attributes(&#039;key_field&#039;) : &#039;value&#039;);&lt;br /&gt;
		$val = ($node-&amp;gt;attributes(&#039;value_field&#039;) ? $node-&amp;gt;attributes(&#039;value_field&#039;) : $name);&lt;br /&gt;
		return JHTML::_(&#039;select.genericlist&#039;,  $db-&amp;gt;loadObjectList(), &#039;&#039;.$control_name.&#039;[&#039;.$name.&#039;][]&#039;, &#039;class=&amp;quot;inputbox&amp;quot; multiple=&amp;quot;multiple&amp;quot; size=&amp;quot;5&amp;quot;&#039;, $key, $val, $value, $control_name.$name);&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	// Joomla! 1.6&lt;br /&gt;
	function getInput()&lt;br /&gt;
	{&lt;br /&gt;
		$db			= &amp;amp; JFactory::getDBO();&lt;br /&gt;
		$db-&amp;gt;setQuery($this-&amp;gt;element[&#039;query&#039;]);&lt;br /&gt;
		$key = ($this-&amp;gt;element[&#039;key_field&#039;] ? $this-&amp;gt;element[&#039;key_field&#039;] : &#039;value&#039;);&lt;br /&gt;
		$val = ($this-&amp;gt;element[&#039;value_field&#039;] ? $this-&amp;gt;element[&#039;value_field&#039;] : $this-&amp;gt;name);&lt;br /&gt;
		return JHTML::_(&#039;select.genericlist&#039;,  $db-&amp;gt;loadObjectList(), $this-&amp;gt;name, &#039;class=&amp;quot;inputbox&amp;quot; multiple=&amp;quot;multiple&amp;quot; size=&amp;quot;5&amp;quot;&#039;, $key, $val, $this-&amp;gt;value, $this-&amp;gt;id);&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
 * Part two of our trick; we define the proper element name, depending on whether it&#039;s Joomla! 1.5 or 1.6&lt;br /&gt;
 */&lt;br /&gt;
if(version_compare(JVERSION,&#039;1.6.0&#039;,&#039;ge&#039;)) {&lt;br /&gt;
        class JFormFieldSQL2 extends JFakeElementSQL2 {}&lt;br /&gt;
} else {&lt;br /&gt;
        class JElementSQL2 extends JFakeElementSQL2 {}                &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Considering that most custom widgets have a lot more code than this, you can create two different initialisation sections for Joomla! 1.5 and 1.6/1.7 (fetchElement and getInput), populate class variables, then call a big, common method to render the bulk of the widget (just like we did with JHTML&#039;s genericlist in the example above). This will eliminate the need to rewrite the same code over again just to cater for a new Joomla! version.&lt;br /&gt;
&lt;br /&gt;
== Obsolte code ==&lt;br /&gt;
&lt;br /&gt;
Joomla 1.6 / 1.7 have been left any code obsolete, we should review code for do compatible with all versions.&lt;br /&gt;
=== Global Mainframe ===&lt;br /&gt;
Bad: &amp;lt;source&amp;gt;global $mainframe&amp;lt;/source&amp;gt;&lt;br /&gt;
Good: &amp;lt;source&amp;gt;$mainframe = &amp;amp;JFactory::getApplication();&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I will add more changes like it.&lt;br /&gt;
&lt;br /&gt;
== Content plugins work slightly different ==&lt;br /&gt;
&lt;br /&gt;
The content plugins in Joomla! 1.5 were using the onPrepareContent method, whereas the content plugins in Joomla! 1.6/1.7 use the onContentPrepare method. The arguments have also changed. You can, however, create a single content plugin which runs on both Joomla! versions without rewriting code. Here&#039;s how:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
defined(&#039;_JEXEC&#039;) or die();&lt;br /&gt;
&lt;br /&gt;
jimport(&#039;joomla.plugin.plugin&#039;);&lt;br /&gt;
&lt;br /&gt;
class plgContentFoobar extends JPlugin&lt;br /&gt;
{&lt;br /&gt;
	public function onPrepareContent( &amp;amp;$article, &amp;amp;$params, $limitstart = 0 )&lt;br /&gt;
	{&lt;br /&gt;
		$article-&amp;gt;text = $this-&amp;gt;doSomethingWith($article-&amp;gt;text);&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	public function onContentPrepare($context, &amp;amp;$row, &amp;amp;$params, $page = 0)&lt;br /&gt;
	{&lt;br /&gt;
		// Danger, Will Robinson! $row in Joomla! 1.6/1.7 may be a string, not an article object!&lt;br /&gt;
		if(is_object($row)) {&lt;br /&gt;
			return $this-&amp;gt;onPrepareContent($row, $params, $page);&lt;br /&gt;
		} else {&lt;br /&gt;
			$row = $this-&amp;gt;doSomethingWith($row);&lt;br /&gt;
		}&lt;br /&gt;
		&lt;br /&gt;
		return true;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	private function doSomethingWith($text)&lt;br /&gt;
	{&lt;br /&gt;
		// Apparently, you have to do something here ;)&lt;br /&gt;
		return $text;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Updating doesn&#039;t work as you&#039;d expect ==&lt;br /&gt;
&lt;br /&gt;
There is a small but very disturbing bug in Joomla! 1.6. Updating a component whose manifest XML states version=&amp;quot;1.5.0&amp;quot; doesn&#039;t allow you to run the SQL statements. Namely, the SQL files you specify under the &amp;quot;&amp;lt;install&amp;gt;&amp;lt;sql&amp;gt;&amp;quot; tags won&#039;t run. You can neither use the new &amp;quot;&amp;lt;update&amp;gt;&amp;quot; tag. You are stuck with no way to run SQL commands on component update!&lt;br /&gt;
&lt;br /&gt;
The ugly workaround is to create a file named script.foobar.php with the following contents:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
define(&#039;_JEXEC&#039;) or die();&lt;br /&gt;
&lt;br /&gt;
class Com_FoobarInstallerScript {&lt;br /&gt;
	&lt;br /&gt;
	function update($parent) {&lt;br /&gt;
		$db = JFactory::getDBO();&lt;br /&gt;
		// Obviously you may have to change the path and name if your installation SQL file ;)&lt;br /&gt;
		if(method_exists($parent, &#039;extension_root&#039;)) {&lt;br /&gt;
			$sqlfile = $parent-&amp;gt;getPath(&#039;extension_root&#039;).DS.&#039;install.sql&#039;;&lt;br /&gt;
		} else {&lt;br /&gt;
			$sqlfile = $parent-&amp;gt;getParent()-&amp;gt;getPath(&#039;extension_root&#039;).DS.&#039;install.sql&#039;;&lt;br /&gt;
		}&lt;br /&gt;
		// Don&#039;t modify below this line&lt;br /&gt;
		$buffer = file_get_contents($sqlfile);&lt;br /&gt;
		if ($buffer !== false) {&lt;br /&gt;
			jimport(&#039;joomla.installer.helper&#039;);&lt;br /&gt;
			$queries = JInstallerHelper::splitSql($buffer);&lt;br /&gt;
			if (count($queries) != 0) {&lt;br /&gt;
				foreach ($queries as $query)&lt;br /&gt;
				{&lt;br /&gt;
					$query = trim($query);&lt;br /&gt;
					if ($query != &#039;&#039; &amp;amp;&amp;amp; $query{0} != &#039;#&#039;) {&lt;br /&gt;
						$db-&amp;gt;setQuery($query);&lt;br /&gt;
						if (!$db-&amp;gt;query()) {&lt;br /&gt;
							JError::raiseWarning(1, JText::sprintf(&#039;JLIB_INSTALLER_ERROR_SQL_ERROR&#039;, $db-&amp;gt;stderr(true)));&lt;br /&gt;
							return false;&lt;br /&gt;
						}&lt;br /&gt;
					}&lt;br /&gt;
				}&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Reference that file in the end of your manifest XML file, just above the closing install tag, with:&lt;br /&gt;
&amp;lt;source type=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;scriptfile&amp;gt;script.foobar.php&amp;lt;/scriptfile&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will force Joomla! 1.6 to run your extension&#039;s installation SQL file during the component update, just like Joomla! 1.5 used to do. Enjoy!&lt;br /&gt;
&lt;br /&gt;
== Menu item creation tricks ==&lt;br /&gt;
&lt;br /&gt;
===For Joomla! 1.5===&lt;br /&gt;
&lt;br /&gt;
You have to add a line similar to the following in your component&#039;s manifest XML file, inside the &amp;lt;code&amp;gt;&amp;lt;administration&amp;gt;&amp;lt;code&amp;gt; tag.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;COM_EXAMPLE&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;Example Component&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In both cases, you need to create a file named en-GB.com_example.menu.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation). In the first case (using a translation key), its contents should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=Example Component&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
In the second case (using natural language strings) its contents should be&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
Example Component=Example Component&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
NB: Joomla! 1.5 sorts the Component menu items based on the key you supply in your XML manifest. If you use the COM_EXAMPLE approach, your component will be sorted with all the components beginning with &amp;quot;C&amp;quot;, e.g. just before Contacts on a fresh Joomla! 1.5 installation, no matter what the translation is! This leads to funny results, especially with non-English languages where the translated component names do not follow the same sorting order as their English names. If you are bilingual or multilingual, I think you know what I mean…&lt;br /&gt;
&lt;br /&gt;
===For Joomla! 1.6 and later versions===&lt;br /&gt;
&lt;br /&gt;
You have to add a line similar to the following in your component&#039;s manifest XML file, inside the &amp;lt;code&amp;gt;&amp;lt;administration&amp;gt;&amp;lt;/code&amp;gt; tag.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;COM_EXAMPLE&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can not use a natural language string. Doing so will result in your component name appearing as example-component in the menu and you will be unable to provide a translation.&lt;br /&gt;
&lt;br /&gt;
You need to create a file named en-GB.com_example.sys.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation) or in administrator/components/com_example/language/en-GB. In the latter case, you must not include the translation file in the &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag. As long as you have placed the language directory in your &amp;lt;code&amp;gt;&amp;lt;files&amp;gt;&amp;lt;/code&amp;gt; tag, it will be copied along when the component is being installed.&lt;br /&gt;
&lt;br /&gt;
The contents of that file should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=&amp;quot;Example Component&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note that the language string must be enclosed in double quotes, as per Joomla!&#039;s translation standards.&lt;br /&gt;
&lt;br /&gt;
NB: Joomla! 1.6 and later sorts the Component menu items based on the actual translation of the key you supply in your XML manifest. This means that the sorting order is correct no matter what you call your translation key and no matter which language the site is being displayed in. Essentially, Joomla! 1.6 fixed the wrong sorting of the Components menu for the majority (non-English speaking!) of Joomla! users.&lt;br /&gt;
&lt;br /&gt;
===How to have a cross-version (Joomla! 1.5, 1.6 and later) component===&lt;br /&gt;
&lt;br /&gt;
If your component is supposed to be installed under both Joomla! 1.5 and Joomla! 1.6/1.7/2.5, you can do a little trick. You have to add a line similar to the following in your component&#039;s manifest XML file, inside the &amp;lt;code&amp;gt;&amp;lt;administration&amp;gt;&amp;lt;/code&amp;gt; tag.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;menu view=&amp;quot;yourview&amp;quot; img=&amp;quot;../media/com_example/logo-16.png&amp;quot;&amp;gt;COM_EXAMPLE&amp;lt;/menu&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, you need to create two files, one for Joomla! 1.5 and one for Joomla! 1.6. For Joomla! 1.5  you need to create a file named en-GB.com_example.menu.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation). Its contents should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=Example Component&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
For Joomla! 1.6 you need to create a file named en-GB.com_example.sys.ini in administrator/languages/en-GB (you can use the manifest&#039;s &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag to copy it during installation) or in administrator/components/com_example/language/en-GB. In the latter case, you must not include the translation file in the &amp;lt;code&amp;gt;&amp;lt;languages&amp;gt;&amp;lt;/code&amp;gt; tag. As long as you have placed the language directory in your &amp;lt;code&amp;gt;&amp;lt;files&amp;gt;&amp;lt;/code&amp;gt; tag, it will be copied along when the component is being installed.&lt;br /&gt;
&lt;br /&gt;
The contents of that file should be:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_EXAMPLE=&amp;quot;Example Component&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The only drawback is that your component will appear as weirdly sorted in the Components menu of Joomla! 1.5. Given the very near expiration date of Joomla! 1.5 (April 2012) this is not a major drawback and experience shows that users don&#039;t really care that much. &lt;br /&gt;
&lt;br /&gt;
===What if you do that and nothing happens?===&lt;br /&gt;
&lt;br /&gt;
Joomla! is supposed to create the components menu entries afresh every time you re-install the component. If this doesn&#039;t happen in your case, try uninstalling and re-installing your component. If you&#039;re not sure if Joomla! has the correct Components menu item translation key, you can always check the menu items database table. This will prevent you from unnecessary frustration when your translation files don&#039;t work simply because Joomla! has the wrong translation key in the table.&lt;br /&gt;
&lt;br /&gt;
== More tricks? ==&lt;br /&gt;
&lt;br /&gt;
I am sure that by writing this page I have left out a number of tricks which I am already using in my software. If you get stuck somewhere, feel free to take a look at how I&#039;ve implemented things in Admin Tools Core, Akeeba Backup Core and Akeeba Release System, my Joomla! 1.5/1.6/1.7 compatible extensions. If you find a better way to implement something, or found a trick not listed here, feel free to edit this wiki page. Sharing the knowledge is caring!&lt;br /&gt;
&lt;br /&gt;
Peace, love and friendship,&lt;br /&gt;
&lt;br /&gt;
Nicholas K. Dionysopoulos, AkeebaBackup.com Lead Developer&lt;/div&gt;</summary>
		<author><name>Hidabe</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived:Vulnerable_Extensions_List&amp;diff=29047</id>
		<title>Archived:Vulnerable Extensions List</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived:Vulnerable_Extensions_List&amp;diff=29047"/>
		<updated>2010-07-02T11:35:16Z</updated>

		<summary type="html">&lt;p&gt;Hidabe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
== Check and Report.  ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic or the [http://forum.joomla.org/viewforum.php?f=470 extensions] topic clearly marked with the first word in the title being &#039;&#039;Vulnerable&#039;&#039; where the security moderators or JSST team will respond. &lt;br /&gt;
&#039;&#039;&#039;This list is change protected, for updates or editing requests [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&#039;&#039;&#039;&lt;br /&gt;
*If you are seeing this page on any site other than [http://docs.joomla.org/Vulnerable_Extensions_List the Offical Joomla Documentation] you may be seeing an out of date version or experiencing [http://en.wikipedia.org/wiki/Plagiarism plagiary] and the links may not work properly&lt;br /&gt;
&lt;br /&gt;
== How to use this list ==&lt;br /&gt;
&#039;&#039;&#039;Items will be removed after a suitable period and not on resolution&#039;&#039;&#039;&lt;br /&gt;
All known vulnerable extensions are the listed in the first column. Any in &amp;lt;span style=&amp;quot;background:red; color:white&amp;quot;&amp;gt;a red box &amp;lt;/span&amp;gt;are high where we have not been given a fix for. Alert Advisory details in the centre column (the date is in American format mm/dd/yyyy). &lt;br /&gt;
The link to the advisory notice. &lt;br /&gt;
Finally a link to the notice about any &amp;lt;span style=&amp;quot;background:#cef2e0; color:black&amp;quot;&amp;gt;update with link&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;background:red; color:white&amp;quot;&amp;gt;&#039;&#039;&#039;Not Known&#039;&#039;&#039; &amp;lt;/span&amp;gt; where none is known.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This list is compiled from found information and may not be an up to date accurate list&#039;&#039;&#039; &#039;&#039;We do &#039;&#039;&#039;NOT&#039;&#039;&#039; promise to test or validate these reports. We do &#039;&#039;&#039;NOT&#039;&#039;&#039; guarantee the quality or effectiveness of any updates reported to us or listed here.&#039;&#039;&lt;br /&gt;
To sign up for the feed please [http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions follow this link]&lt;br /&gt;
&lt;br /&gt;
== Developers - How to get yourself removed from the VEL ==&lt;br /&gt;
&lt;br /&gt;
Resolved items will be removed after a suitable period and not on resolution&lt;br /&gt;
&lt;br /&gt;
Please solve the issues and:&lt;br /&gt;
&lt;br /&gt;
* If JED listed &lt;br /&gt;
Attach the new zip file at your actual JED listing.&lt;br /&gt;
&lt;br /&gt;
Change the extension version at JED listing.&lt;br /&gt;
&lt;br /&gt;
Contact the JED by mail back with a notice and ask them republish your listing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* If not JED listed. &lt;br /&gt;
Inform us by PM of the link to your resolution notice on your website.&lt;br /&gt;
&lt;br /&gt;
== November 2009 Compiled Vulnerability Reports. ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Items are not in any particular order.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_ajaxchat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: PHP remote file inclusion vulnerability in Fiji Web Design Ajax Chat (&#039;&#039;&#039;com_ajaxchat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the GLOBALS[mosConfig_absolute_path] parameter to tests/ajcuser.php.New version release December 22,2009&lt;br /&gt;
Published: october 28 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3822|CVE-2009-3822]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/communication/chat/10767 update v 1.1]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_booklibrary&#039;&#039;&#039;&lt;br /&gt;
|  PHP remote file inclusion vulnerability in doc/releasenote.php in the BookLibrary (&#039;&#039;&#039;com_booklibrary&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the mosConfig_absolute_path parameter, a different vector than [[NIST:CVE-2009-2637|CVE-2009-2637]]. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 10/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|  [[NIST:CVE-2009-3817|CVE-2009-3817]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;[http://ordasoft.com/Download/Joomla1.0-extensions/Joomla1.0-components/View-category.html developer site updates]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|   style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_foobla_suggestions&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the foobla Suggestions (&#039;&#039;&#039;com_foobla_suggestions&#039;&#039;&#039;) component 1.5.11 for Joomla! allows remote attackers to execute arbitrary SQL commands via the idea_id parameter to index.php.&lt;br /&gt;
Published: 10/11/2009&lt;br /&gt;
CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|  [[NIST:CVE-2009-3669|CVE-2009-3669]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://foobla.com/news/latest/fixed-foobla-suggestions-for-joomla-idea_id-sql-injection-vulnerability.html developer reported upgrade]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_djcatalog&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the DJ-Catalog (&#039;&#039;&#039;com_djcatalog&#039;&#039;&#039;) component for Joomla! allow remote attackers to execute arbitrary SQL commands via the (1) id parameter in a showItem action and (2) cid parameter in a show action to index.php.&lt;br /&gt;
Published: 10/11/2009&lt;br /&gt;
CVSS Severity: 6.8 (MEDIUM)&lt;br /&gt;
|  [[NIST:CVE-2009-3661|CVE-2009-3661]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_cbresumebuilder&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JoomlaCache CB Resume Builder (&#039;&#039;&#039;&#039;&#039;&#039;com_cbresumebuilder&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the group_id parameter in a group_members action to index.php.&lt;br /&gt;
Published: 10/09/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3645|CVE-2009-3645]] &lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://www.joomlacache.com/commercial-extensions/security-update.html Developer Update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;com_soundset&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Soundset (&#039;&#039;&#039;com_soundset&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the cat_id parameter to index.php.&lt;br /&gt;
Published: 10/09/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3644|CVE-2009-3644]]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;com_sportfusion&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Kinfusion SportFusion (&#039;&#039;&#039;com_sportfusion&#039;&#039;&#039;) component 0.2.2 through 0.2.3 for Joomla! allows remote attackers to execute arbitrary SQL commands via the cid[0] parameter in a teamdetail action to index.php.&lt;br /&gt;
Published: 09/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3491|CVE-2009-3491]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_icrmbasic&#039;&#039;&#039;&lt;br /&gt;
|  Summary: A certain interface in the iCRM Basic (&#039;&#039;&#039;com_icrmbasic&#039;&#039;&#039;) component 1.4.2.31 for Joomla! does not require administrative authentication, which has unspecified impact and remote attack vectors. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 09/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3481|CVE-2009-3481]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_mytube&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the MyRemote Video Gallery (&#039;&#039;&#039;com_mytube&#039;&#039;&#039;) component 1.0 Beta for Joomla! allows remote attackers to execute arbitrary SQL commands via the user_id parameter in a videos action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3446|CVE-2009-3446]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_fastball&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Fastball (&#039;&#039;&#039;com_fastball&#039;&#039;&#039;) component 1.1.0 through 1.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the league parameter to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3443|CVE-2009-3443]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://www.fastballproductions.com   latest version] 1.2.1 &lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_facebook&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JoomlaFacebook (&#039;&#039;&#039;com_facebook&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a student action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3438|CVE-2009-3438]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_tupinambis&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Tupinambis (&#039;&#039;&#039;com_tupinambis&#039;&#039;&#039;) component 1.0 for Mambo and Joomla! allows remote attackers to execute arbitrary SQL commands via the proyecto parameter in a verproyecto action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3434|CVE-2009-3434]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_idoblog&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the IDoBlog (&#039;&#039;&#039;com_idoblog&#039;&#039;&#039;) component 1.1 build 30 for Joomla! allows remote attackers to execute arbitrary SQL commands via the userid parameter in a profile action to index.php, a different vector than [[NIST:CVE-2008-2627|CVE-2008-2627]].&lt;br /&gt;
Published: 09/25/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3417|CVE-2009-3417]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |&#039;&#039;&#039;[http://idojoomla.com/download.html/ &#039;&#039;&#039;New Version v 1.1&#039;&#039;&#039; (build 32)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_hbssearch&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Cross-site scripting (&#039;&#039;&#039;XSS&#039;&#039;&#039;) vulnerability in the Hotel Booking Reservation System (&#039;&#039;&#039;aka HBS or com_hbssearch&#039;&#039;&#039;) component for Joomla! allows remote attackers to inject arbitrary web script or HTML via the adult parameter in a showhoteldetails action to index.php.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 4.3 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3368|CVE-2009-3368]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_hbssearch&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the Hotel Booking Reservation System (&#039;&#039;&#039;aka HBS or com_hbssearch&#039;&#039;&#039;) component for Joomla! allow remote attackers to execute arbitrary SQL commands via the (&#039;&#039;&#039;1&#039;&#039;&#039;) h_id, (&#039;&#039;&#039;2&#039;&#039;&#039;) id, and (&#039;&#039;&#039;3&#039;&#039;&#039;) rid parameters to longDesc.php, and the h_id parameter to (&#039;&#039;&#039;4&#039;&#039;&#039;) detail.php, (&#039;&#039;&#039;5&#039;&#039;&#039;) detail1.php, (&#039;&#039;&#039;6&#039;&#039;&#039;) detail2.php, (&#039;&#039;&#039;7&#039;&#039;&#039;) detail3.php, (&#039;&#039;&#039;8&#039;&#039;&#039;) detail4.php, (&#039;&#039;&#039;9&#039;&#039;&#039;) detail5.php, (&#039;&#039;&#039;10&#039;&#039;&#039;) detail6.php, (&#039;&#039;&#039;11&#039;&#039;&#039;) detail7.php, and (&#039;&#039;&#039;12&#039;&#039;&#039;) detail8.php, different vectors than [[NIST:CVE-2008-5865|CVE-2008-5865]], [[NIST:CVE-2008-5874|CVE-2008-5874]], and [[NIST:CVE-2008-5875|CVE-2008-5875]].&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3357|CVE-2009-3357]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_alphauserpoints&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in frontend/assets/ajax/checkusername.php in the AlphaUserPoints (&#039;&#039;&#039;com_alphauserpoints&#039;&#039;&#039;) component 1.5.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the username2points parameter.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3342|CVE-2009-3342]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://www.alphaplug.com/index.php/news/142-alphauserpoints-153-released.html 1.5.3]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;TurtuShout&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the TurtuShout component 0.11 for Joomla! allows remote attackers to execute arbitrary SQL commands via the Name field.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3335|CVE-2009-3335]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jinc&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Lhacky! Extensions Cave Joomla! Integrated Newsletters Component (&#039;&#039;&#039;aka JINC or com_jinc&#039;&#039;&#039;) component 0.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the newsid parameter in a messages action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3334|CVE-2009-3334]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_jbudgetsmagic&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JBudgetsMagic (&#039;&#039;&#039;com_jbudgetsmagic&#039;&#039;&#039;) component 0.3.2 through 0.4.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the bid parameter in a mybudget action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3332|CVE-2009-3332]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;[http://sopinet.com/jbudgetsmagic/index.php?option=com_remository&amp;amp;Itemid=5&amp;amp;lang=en Update to 0.4.1]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_surveymanager&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Focusplus Developments Survey Manager (&#039;&#039;&#039;com_surveymanager&#039;&#039;&#039;) component 1.5.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the stype parameter in an editsurvey action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3325|CVE-2009-3325]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_album&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Directory traversal vulnerability in the Roland Breedveld Album (&#039;&#039;&#039;com_album&#039;&#039;&#039;) component 1.14 for Joomla! allows remote attackers to access arbitrary directories and have unspecified other impact via a .. (&#039;&#039;&#039;dot dot&#039;&#039;&#039;) in the target parameter to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3318|CVE-2009-3318]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;com_jreservation&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the [http://extensions.joomla.org/extensions/vertical-markets/booking-a-reservation/9798 JReservation] (&#039;&#039;&#039;com_jreservation&#039;&#039;&#039;) component 1.0 and 1.5 for Joomla! allows remote attackers to execute arbitrary SQL commands via the pid parameter in a propertycpanel action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3316|CVE-2009-3316]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |  [http://www.jforjoomla.com Updated 28th] Jan fixed 13th Nov&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;IXXO Cart Standalone&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in IXXO Cart Standalone before 3.9.6.1, and the IXXO Cart component for Joomla! 1.0.x, allows remote attackers to execute arbitrary SQL commands via the parent parameter.&lt;br /&gt;
Published: 09/16/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3215|CVE-2009-3215]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_digifolio&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the DigiFolio (&#039;&#039;&#039;com_digifolio&#039;&#039;&#039;) component 1.52 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a project action to index.php.&lt;br /&gt;
Published: 09/15/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3193|CVE-2009-3193]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_aclassf&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Cross-site scripting (&#039;&#039;&#039;XSS&#039;&#039;&#039;) vulnerability in &#039;&#039;&#039;gmap.php&#039;&#039;&#039; in the Almond Classifieds (&#039;&#039;&#039;com_aclassf&#039;&#039;&#039;) component 7.5 for Joomla! allows remote attackers to inject arbitrary web script or HTML via the addr parameter.&lt;br /&gt;
Published: 09/10/2009&lt;br /&gt;
CVSS Severity: 4.3 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3155|CVE-2009-3155]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;   | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_aclassf&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Almond Classifieds (&#039;&#039;&#039;com_aclassf&#039;&#039;&#039;) component 7.5 for Joomla! allows remote attackers to execute arbitrary SQL commands via the replid parameter in a manw_repl add_form action to index.php, a different vector than [[NIST:CVE-2009-2567|CVE-2009-2567]].&lt;br /&gt;
Published: 09/10/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3154|CVE-2009-3154]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://www.almondsoft.com/alcl.html Developer latest component]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jabode&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in Jabode horoscope extension (&#039;&#039;&#039;com_jabode&#039;&#039;&#039;) for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a sign task to index.php.&lt;br /&gt;
Published: 09/08/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
|  [[NIST:CVE-2008-7169|CVE-2008-7169]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_gameserver&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Game Server (&#039;&#039;&#039;com_gameserver&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a gamepanel action to index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3063|CVE-2009-3063]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_artportal&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Artetics.com Art Portal (&#039;&#039;&#039;com_artportal&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the portalid parameter to index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3054|CVE-2009-3054]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;com_agora&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Directory traversal vulnerability in the Agora (&#039;&#039;&#039;com_agora&#039;&#039;&#039;) component 3.0.0b for Joomla! allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the action parameter to the avatars page, reachable through index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 6.8 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3053|CVE-2009-3053]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |&#039;&#039;&#039;[http://jvitals.com/index.php?option=com_rokdownloads&amp;amp;view=file&amp;amp;Itemid=108&amp;amp;id=282:agora-3-0 3.0.7]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_simpleshop&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Simple Shop Galore (&#039;&#039;&#039;com_simpleshop&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the section parameter in a section action to index.php, a different vulnerability than [[NIST:CVE-2008-2568|CVE-2008-2568]]. NOTE: this issue was disclosed by an unreliable researcher, so the details might be incorrect.&lt;br /&gt;
Published: 08/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-7033|CVE-2008-7033]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_groups&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Permis (&#039;&#039;&#039;com_groups&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a list action to index.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 08/17/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-2789|CVE-2009-2789]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;com_content&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the content component (&#039;&#039;&#039;com_content&#039;&#039;&#039;) 1.0.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the Itemid parameter in a blogcategory action to index.php.&lt;br /&gt;
Published: 08/10/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6923|CVE-2008-6923]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://developer.joomla.org/security/news/305-20091103-core-front-end-editor-issue-.html Resolution]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the last parameter to getChatRoom.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6883|CVE-2008-6883]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to use the xmlhttp.php script as an open HTTP proxy to hide network scanning activities or scan internal networks via a GET request with a full URL in the query string.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6882|CVE-2008-6882]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allow remote attackers to execute arbitrary SQL commands via the last parameter to (&#039;&#039;&#039;1&#039;&#039;&#039;) getChat.php, (&#039;&#039;&#039;2&#039;&#039;&#039;) getChatRoom.php, and (&#039;&#039;&#039;3&#039;&#039;&#039;) getSavedChatRooms.php.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6881|CVE-2008-6881]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;JUMI&#039;&#039;&#039;&lt;br /&gt;
|  There is a backdoor in JUMI that installs itself when JUMI is installed on your web site. It sends your credentials to a website, and sets up a back door for remote code execution.&lt;br /&gt;
Please remove JUMI2.0.5 immediately. &lt;br /&gt;
It will be simple enough to remove the compromised code from this download, but you need to do &lt;br /&gt;
a full security audit on your site as well as you have been compromised. Added November 2009&lt;br /&gt;
|  [http://code.google.com/p/jumi/updates/list Report]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://code.google.com/p/jumi/updates/list Jumi Update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_photoblog&#039;&#039;&#039;&lt;br /&gt;
|  Input Validation Error Added November 2009&lt;br /&gt;
|  [http://www.securityfocus.com/bid/36809/ 36809]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://webguerilla.net/downloads/3-components-for-joomla-1 webguerilla Photoblog alpha 3b]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jshop&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JShop (&#039;&#039;&#039;com_jshop&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the pid parameter in a product action to index.php.&lt;br /&gt;
Published: 11/02/2009&lt;br /&gt;
CVSS Severity: 7.5 &#039;&#039;&#039;(HIGH)&#039;&#039;&#039; &lt;br /&gt;
|  [[NIST:CVE-2009-3835|CVE-2009-3835]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;BF Survey Pro&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the &#039;&#039;&#039;BF Survey Pro&#039;&#039;&#039; v1.2.5 or lower  (fixed in version 1.2.6). &#039;&#039;&#039;BF Survey Basic v1.0&#039;&#039;&#039; (fixed in version 1.1). &#039;&#039;&#039;BF Quiz v1.1.1&#039;&#039;&#039; (fixed in version 1.2 or greater) Added November 2009&lt;br /&gt;
|  [http://www.tamlyncreative.com.au/software/forum/index.php?topic=357.0 tamlyncreative.com.au]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://www.tamlyncreative.com.au/software/forum/index.php?topic=357.0 update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;Joo!BB 0.9.1 &#039;&#039;&#039;&lt;br /&gt;
|  Summary: Persistent XSS/MySQL Injection vulnerabilities in Joo!BB 0.9.1 Added November 2009&lt;br /&gt;
|  [http://www.joobb.org/community/board/topic/700-MultipleXSSSQLInjectionVulnerabilities.html joob.org]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.joobb.org/downloads/components.html update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;sh404sef &#039;&#039;&#039;&lt;br /&gt;
|  Summary: sh404sef URI XSS Vulnerability  Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/sh404sef-uri-xss-vulnerability.html jeffchannell.com]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://extensions.siliana.com/en/2009060876/sh404SEF-and-url-rewriting/Interim-release-of-sh404sef-for-Joomla-1.5.x.html update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;AWD Wall 1.5&#039;&#039;&#039; &lt;br /&gt;
|  Summary &#039;&#039;&#039;AWD Wall 1.5&#039;&#039;&#039; Blind SQL Injection Vulnerability.The Joomla component AWD Wall 1.5 suffers from an SQL Injection vulnerability in its handling of the &#039;cbuser&#039; parameter.Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/awd-wall-15-blind-sql-injection-vulnerability.html Notice]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;[http://www.awdsolution.com/template_demo/testsite/index.php?option=com_content&amp;amp;view=article&amp;amp;id=48&amp;amp;Itemid=72 developer update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;EasyBook 2.0.0rc4&#039;&#039;&#039;&lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;EasyBook 2.0.0rc4&#039;&#039;&#039; suffers from multiple persistent XSS vulnerabilities. One seems fairly critical, while the others would take some incredible creativity to actively exploit. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/easybook-200rc4-multiple-xss-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;F!BB 1.5.96&#039;&#039;&#039; &lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;F!BB 1.5.96 RC&#039;&#039;&#039; suffers from multiple persistent XSS vulnerabilities, as well SQL Injection in its user search feature. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/fbb-1596-rc-multiple-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Testimonial Ku 2.0 Admin Panel&#039;&#039;&#039;&lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;Testimonial Ku 2.0&#039;&#039;&#039; is vulnerable to persistent XSS in the administrator panel. A malicious user can submit a testimonial containing &amp;lt;script&amp;gt; tags with absolutely no quotes and inject that script into the administrator panel through any of the available inputs except &amp;quot;email&amp;quot;. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/testimonial-ku-20-admin-panel-persistent-xss.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;MS Comment 0.8.0b&#039;&#039;&#039;&lt;br /&gt;
|  Summary &#039;&#039;&#039;MS Comment 0.8.0b for Joomla&#039;&#039;&#039;, a commenting plugin, suffers from an multiple vulnerabilities. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/ms-comment-080b-multiple-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;!JoomlaComment 4.0 beta1&#039;&#039;&#039;&lt;br /&gt;
|  Summary: &#039;&#039;&#039;!JoomlaComment 4.0 beta1&#039;&#039;&#039;, a commenting plugin, suffers from multiple XSS vulnerabilities. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/joomlacomment-40-beta1-multiple-xss-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://compojoom.com/blog/8-news/121-joomlacomment-40-rc1-released Developer Notice 4.0 rc1]&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;WebAmoeba Ticket System 3.0.0&#039;&#039;&#039;&lt;br /&gt;
|  Summary:  &#039;&#039;&#039;WebAmoeba Ticket System 3.0.0&#039;&#039;&#039;, a Joomla help desk component. The vulnerability is with the BBCode library used to parse BBCode tags, as it does not strip javascript: urls from [url] tags. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/webamoeba-ticket-system-300-bbcode-xss.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;Kunena 1.5.x&#039;&#039;&#039; &lt;br /&gt;
|Summary: This is an important security release and users are urged to update immediately. Five security issues and an Internet Explorer 8 table bug have been resolved in this release. This release also contains many other important bug fixes. Added 18 November 2009&lt;br /&gt;
|[http://www.kunena.com/blog/19-developer-blog/51-kunena-157-security-release-now-available Advisory]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://www.kunena.com/blog/19-developer-blog/52-kunena-158-service-release-now-available Latest 1.5.8 Version]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_siirler&#039;&#039;&#039;&lt;br /&gt;
|  Summary:  SQL injection vulnerability in the &#039;&#039;&#039;Q-Proje Siirler Bileseni (com_siirler)&#039;&#039;&#039; component 1.2 RC for Joomla! allows remote attackers to execute arbitrary SQL commands via the sid parameter in an sdetay action to index.php. Added 18 November 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3972 | CVE-2009-3972]]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;jTips (com_jtips)&#039;&#039;&#039;&lt;br /&gt;
|SUmmary:SQL injection vulnerability in the &#039;&#039;&#039;jTips (com_jtips)&#039;&#039;&#039; component 1.0.7 and 1.0.9 for Joomla! allows remote attackers to execute arbitrary SQL commands via the season parameter in a ladder action to index.php. Added 18 November 2009&lt;br /&gt;
| [[NIST:CVE-2009-3971 |CVE-2009-3971]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;NinjaMonials&#039;&#039;&#039;&lt;br /&gt;
| Summary: SQL injection vulnerability in the &#039;&#039;&#039;NinjaMonials (com_ninjacentral)&#039;&#039;&#039; component 1.1.0 for &#039;&#039;&#039;Joomla 1.0.x&#039;&#039;&#039; ! allows remote attackers to execute arbitrary SQL commands via the testimID parameter in a display action to index.php. Added 18 November 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3964 | CVE-2009-3964]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;  [http://ninjaforge.com/index.php?option=com_ninjacentral&amp;amp;page=show_package&amp;amp;id=14&amp;amp;Itemid=235 developer patch Ver 1.2]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;webee 1.1.1 &amp;amp;1.2&#039;&#039;&#039;&lt;br /&gt;
|Summary: &#039;&#039;&#039;webee 1.1.1,&#039;&#039;&#039; a Joomla commenting plugin, suffers from multiple vulnerabilities. &#039;&#039;&#039;webee has been updated to 1.2&#039;&#039;&#039; as of 12 November 2009 and&#039;&#039;&#039; still suffers&#039;&#039;&#039; from SQL Injection. XSS was not tested in 1.2. Added 19 November 2009&lt;br /&gt;
| [http://jeffchannell.com/Joomla/webee-111-multiple-vulnerabilities.html jeffchannell.com]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039; [http://extensions.joomla.org/extensions/contacts-and-feedback/articles-comments/10155 developer update ver2.0]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;iF Portfolio Nexus&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;&#039;&#039;iF Portfolio Nexus component for Joomla!&#039;&#039;&#039; is vulnerable to SQL injection. A remote attacker could send specially-crafted SQL statements using the id parameter, which could allow the attacker to view, add, modify or delete information in the back-end database. Nov 18, 2009&lt;br /&gt;
|[http://secunia.com/advisories/37408/ secunia.com 37408/]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.inertialfate.za.net/help/forums/topic?id=10&amp;amp;p=3#p172 iF Portfolio Nexus v1.1.1 released]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JoomClip&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;&#039;&#039;JoomClip component for Joomla!&#039;&#039;&#039; is vulnerable to SQL injection. A remote attacker could send specially-crafted SQL statements to the index.php script using the cat parameter, which could allow the attacker to view, add, modify or delete information in the back-end database.  Nov 18, 2009&lt;br /&gt;
|[http://secunia.com/advisories/37400/ secunia.com 37400/]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Joomla XML&#039;&#039;&#039;&lt;br /&gt;
|Summary: Joomla! before 1.5.15 allows remote attackers to read an extension&#039;s XML file, and thereby obtain the extension&#039;s version number, via a direct request.&lt;br /&gt;
Published: 11/16/2009&lt;br /&gt;
|[[NIST:CVE-2009-3946 | CVE-2009-3946]] &lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://developer.joomla.org/security/news/306-20091103-core-xml-file-read-issue.html Resolution]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Mygallery Remote SQL Injection Vulnerability&#039;&#039;&#039; &lt;br /&gt;
|Summary: Joomla Component mygallery ( farbinform_krell) Remote SQL Injection Vulnerability Added 27 Nov 2009 {{JVer|1.5}} NB: This could be an error in our database as the only one we could find was for wordpress.If anyone know of one for joomla please let us know..(poss joomlicious.com CM)&lt;br /&gt;
|[http://www.exploit-db.com] &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Extreme Google Calendar&#039;&#039;&#039;&lt;br /&gt;
|Summary: &#039;&#039;&#039;com_gcalendar 1.1.2&#039;&#039;&#039; (gcid) Remote SQL Injection Vulnerability&lt;br /&gt;
Remote SQL Injection were identified in Google Calendar Component [http://extensions.joomla.org/extensions/calendars-a-events/calendars/4188 Extension Link] Added 27 Nov 2009 &lt;br /&gt;
|[http://www.exploit-db.com reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;LyftenBloggie&#039;&#039;&#039;&lt;br /&gt;
| Summary: [http://www.lyften.com/products/lyftenbloggie.html LyftenBloggie] Component &amp;quot;author&amp;quot; SQL Injection Vulnerability LyftenBloggie 1.x Added 27 Nov 2009&lt;br /&gt;
|[http://secunia.com/advisories/product/28005/	 SA37499]&lt;br /&gt;
| [http://jeffchannell.com/Joomla/lyften-bloggie-sql-injection-fix.html Un official fix]. Developer fix not release at 30 Nov 09 &#039;&#039;&#039; [http://www.lyften.com/products/lyftenbloggie/extensions/download/id-20.html 1.0.4a (last update on Dec 28, 2009)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Sermon speaker&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://joomlacode.org/gf/project/sermon_speaker sermon speaker] sql vulnerability and password reset vulnerability version 3.2 and below&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://joomlacode.org/gf/project/sermon_speaker/forum/?action=ForumBrowse&amp;amp;forum_id=7897&amp;amp;_forum_action=ForumMessageBrowse&amp;amp;thread_id=15219 Developer fix] 30 Nov 2009&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://joomlacode.org/gf/project/musicgallery/ MusicGallery]&lt;br /&gt;
|Summary: [http://joomlacode.org/gf/project/musicgallery/ Component MusicGallery] SQL Injection Vulnerability 30 November {{JVer|1.5}}&lt;br /&gt;
|[[NIST:CVE-2009-4217 | CVE-2009-4217]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | [http://joomlacode.org/gf/project/musicgallery/ developer]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== December 2009 Compiled Reports ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Omilen Photo Gallery&#039;&#039;&#039;&lt;br /&gt;
|Summary: Directory traversal vulnerability in the [http://extensions.joomla.org/extensions/photos-&amp;amp;-images/photo-flash-gallery/6373/details Omilen Photo Gallery] (com_omphotogallery) component Beta 0.5 for Joomla! allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the controller parameter to index.php.&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4202 | CVE-2009-4202]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Seminar&#039;&#039;&#039;&lt;br /&gt;
|Summary: SQL injection vulnerability in the [http://seminar.vollmar.ws/ Seminar] (com_seminar) component 1.28 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a View_seminar action to index.php.&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4200 | CVE-2009-4200]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Mambo Resident&#039;&#039;&#039;&lt;br /&gt;
|Summary: Multiple SQL injection vulnerabilities in the Mambo Resident (aka Mos Res or com_mosres) component 1.0f for Mambo and Joomla!, when magic_quotes_gpc is disabled, allow remote attackers to execute arbitrary SQL commands via the (1) property_uid parameter in a viewproperty action to index.php and the (2) regID parameter in a showregion action to index.php. Mambo Resident component for v4.5.2 &#039;&#039;&#039;may only be for 1.0.xx versions of J!&#039;&#039;&#039;&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4199 | CVE-2009-4199]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.jomres.net/ Replacement Extension 08 dec 09]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;ProofReader&#039;&#039;&#039; &lt;br /&gt;
|Summary: Multiple cross-site scripting (XSS) vulnerabilities in index.php in the ProofReader (com_proofreader) component 1.0 RC9 and earlier for Joomla! allow remote attackers to inject arbitrary web script or HTML via the URI, which is not properly handled in (1) 404 or (2) error pages. Published: 12/02/2009 CVSS Severity: 4.3 (MEDIUM)&lt;br /&gt;
| [[NIST:CVE-2009-4157 | CVE-2009-4157]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Laoneo Google Calendar GCalendar&#039;&#039;&#039;&lt;br /&gt;
|Summary: SQL injection vulnerability in the [http://g4j.laoneo.net/content/extensions/download/cat_view/20-joomla-15x/21-gcalendar.html Google Calendar GCalendar] (com_gcalendar) component 1.1.2, 2.1.4, and possibly earlier versions for Joomla! allows remote attackers to execute arbitrary SQL commands via the gcid parameter. NOTE: some of these details are obtained from third party information. Published: 11/29/2009 CVSS Severity: 7.5 (HIGH) Note: There is already a listing for GCalendar 1.1.2&lt;br /&gt;
|[[NIST:CVE-2009-4099 | CVE-2009-4099]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | [http://g4j.laoneo.net/content/extensions/download/doc_details/28-gcalendar-suite-215.html Latest version GCalendar Suite 2.1.5]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;D4J eZine&#039;&#039;&#039;&lt;br /&gt;
|Summary: PHP remote file inclusion vulnerability in class/php/d4m_ajax_pagenav.php in the D4J eZine (com_ezine) component 2.1 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the GLOBALS mosConfig_absolute_path parameter. Published: 11/29/2009 CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|[[NIST:CVE-2009-4094 | CVE-2009-4094]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Quick News&#039;&#039;&#039;&lt;br /&gt;
| Summary: The Joomla [http://joomlacode.org/gf/project/quicknews/ Quick News component] suffers from a remote SQL injection vulnerability. added 1st Dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Joaktree component&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/genealogy/9842 Joaktree] Vulnerability : SQL injection/ added 1st Dec 09&lt;br /&gt;
|[http://securityreason.com/exploitalert/7508 7508]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://naastniels.nl/index.php/en/joaktree/downloads version 1.1 update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;mojoblog&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://www.joomlify.com/files/mojoblog/ MojoBlog] Multiple Remote File Include Vulnerability added 1st Dec 09 {{JVer|1.5}}&lt;br /&gt;
|[http://securityreason.com/exploitalert/7509 7509]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;YJ Whois&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/external-contents/domain-search/5774 YJ Whois] &#039;&#039;&#039;Low security risk&#039;&#039;&#039;,and fixesMalicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. Files affected is , modules/mod_yj_whois.php added 3 December 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.youjoomla.com/xss-security-patch-for-yj-whois.html Developer Notice and fix 03 dec 09]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;yt_color YOOOtheme&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.yootheme.com/ YT_color yootheme] Malicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. added 5 dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.yootheme.com/member-area/downloads/item/templates-15/xss-and-php-53-patches All members without an active membership can download the template patches here].&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;TP Whois&#039;&#039;&#039; &lt;br /&gt;
|summary: [http://www.templateplazza.com/view-details/tpwhois/183-component-tp-whois-for-joomla-1.5.x.html TP Whois ] Malicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. Added 3 december {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Refrence]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_job&#039;&#039;&#039;&lt;br /&gt;
|Summary: Component com_job ( showMoreUse) SQL injection vulnerability  Added 9th Dec&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/54626 Reference]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;JQuarks&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/contacts-and-feedback/quiz-a-surveys/10590 JQuarks] SQL injection vulnerability {{JVer|1.5}} added 8th dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | [http://www.iptechinside.com/labs/projects/list_files/jquarks Developer Update ]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Mamboleto Component 2.0 RC3&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.fernandosoares.com.br/index.php?option=com_docman&amp;amp;task=cat_view&amp;amp;gid=28&amp;amp;Itemid=28 Mamboleto Component 2.0 RC3]SQL injection vulnerability {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039; JS JOBS&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://www.joomshark.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=4&amp;amp;Itemid=8 JS JOBS] Joomla Component com_jsjobs 1.0.5.6 SQL Injection Vulnerabilities {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.joomsky.com/index.php?option=com_rokdownloads&amp;amp;view=folder&amp;amp;Itemid=3&amp;amp;id=2:components Developer update 1.0.5.7]&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;corePHP JPhoto&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/photos-a-images/photo-gallery/10365 &#039;corePHP&#039; JPhoto]SQL injection vulnerability {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://secunia.com/advisories/37676/ Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.corephp.com/blog/uber-fast-jphoto-security-release/ Developer Upgrade]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    | &#039;&#039;&#039;com_virtuemart&#039;&#039;&#039;&lt;br /&gt;
|Summary: &amp;quot;com_virtuemart&amp;quot; http://virtuemart.net/  &#039;&#039;&#039;Version : 1.0&#039;&#039;&#039; Vulnerability : SQL injection added Date : 07- dec -09 {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://virtuemart.net/ latest version]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039; Kide Shoutbox&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|Summary: The Kide Shoutbox (com_kide) component 0.4.6 for Joomla! does not properly perform authentication, which allows remote attackers to post messages with an arbitrary account name via an insertar action to index.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information. Added: December 08&lt;br /&gt;
|[[NIST:CVE-2009-4232 | CVE-2009-4232]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039; JoomPortfolio Component&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.joomplace.com/joomportfolio/joomportfolio.html JoomPortfolio] Input passed via the &amp;quot;secid&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_joomportfolio&amp;quot; and &amp;quot;task&amp;quot; is set to &amp;quot;showcat&amp;quot;) is not properly sanitised before being used in a SQL query. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code.The vulnerability is reported in version 1.0.0. Other versions may also be affected. Added: December 18 {{JVer|1.5}}&lt;br /&gt;
|[http://secunia.com/advisories/37838/ Reporting Site]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;City Portal (templates?)&#039;&#039;&#039;&lt;br /&gt;
|Summary:   City Portal Blind SQL Injection Vulnerability added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference] Possibly this [http://www.youjoomla.com/jclick-city-portal-joomla-template.html tempate]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;Event Manager&#039;&#039;&#039;&lt;br /&gt;
|Summary:  [http://www.jforjoomla.com/Joomla-Components/event-manager-15-component.html Event Manager] Blind SQL Injection Vulnerability EDB-ID: 10549&lt;br /&gt;
added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | com_zcalendar&lt;br /&gt;
|Summary:  com_zcalendar Blind SQL-injection Vulnerability&lt;br /&gt;
EDB-ID: 10548 added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;com_acmisc&#039;&#039;&#039;&lt;br /&gt;
|Summary:  com_acmisc SQL injection added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_digistore&#039;&#039;&#039;&lt;br /&gt;
|Summary:  com_digistore SQL injection EDB-ID: 10546 added: 2009-12-18  {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.ijoomla.com/ijoomla-digistore/ijoomla-digistore/ijoomla-digistore-change-log/ Update change log] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;com_jbook&#039;&#039;&#039;&lt;br /&gt;
|Summary:   com_jbook Blind SQL-injection EDB-ID: 10545 added: 2009-12-18 {{JVer|1.0}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;com_personel&#039;&#039;&#039;&lt;br /&gt;
|Summary: com_personel component for Joomla! is vulnerable to SQL injection.&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/54903 iss.net reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |  &#039;&#039;&#039;JEEMA Article Collection&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.forum.jeema.net/component/content/article/4-jeema-article-collection-component/13-about-jeema-article-collection.html JEEMA Article Collection] Input passed via the &amp;quot;catid&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_jeemaarticlecollection&amp;quot; and &amp;quot;view&amp;quot; is set to &amp;quot;longlook&amp;quot;) is not properly sanitised before being used in a SQL query. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code. version 1.0.0.1 {{JVer|1.5}} added 22 dec 09&lt;br /&gt;
| [http://secunia.com/advisories/37865/ secunia]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;    | [http://www.jeema.net/downloads/free-joomla-extensions/joomla-components/12-jeema-joomla-article-collection.htm fixed the same in the version v102.]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;HotBrackets Tournament Brackets &#039;&#039;&#039;&lt;br /&gt;
|Summary: The [http://extensions.joomla.org/extensions/sports-a-games/sports/10746 HotBrackets Tournament Brackets] component for Joomla! is prone to an SQL-injection vulnerability because it fails to sufficiently sanitize user-supplied data before using it in an SQL query. {{JVer|1.5}} added 22 dec &lt;br /&gt;
|[http://www.securityfocus.com/bid/37439/ Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;Car Manager&#039;&#039;&#039;&lt;br /&gt;
|Summary: http://webformatique.com/ com_carman Cross Site Scripting Vulnerability added 24 december 09{{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;Schools component&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;com_schools&#039; component for Joomla! is prone to an SQL-injection vulnerability because it fails to sufficiently sanitize user-supplied data before using it in an SQL query.&lt;br /&gt;
|[http://www.securityfocus.com/bid/37469 Reference] added 24 dec 09&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;webcamxp&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/communication/video-conference/4490 com_webcamxp] Cross Site Scripting Vulnerabilities  Last version 2008 {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;beeheard&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/contacts-and-feedback/testimonials-a-suggestions/10283 beeheard]  Blind SQL injection Vulnerability {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://beeheard.cmstactics.com/change-log Version 1.4.2] 04 Jan&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;jm-recommend&#039;&#039;&#039;&lt;br /&gt;
|jm-recommendCross Site Scripting Vulnerabilities. unable to locate on jed. {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | facileforms&lt;br /&gt;
| com_facileforms Cross Site Scripting Vulnerabilities. unable to locate on jed. Product considered retired.  {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;adagency&#039;&#039;&#039;&lt;br /&gt;
| [http://www.ijoomla.com/ijoomla-ad-agency/ijoomla-ad-agency/index/ adagency ]Vulnerabilities {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;com_intuit&#039;&#039;&#039;&lt;br /&gt;
|[http://www.san-diego-web-designer.com/new-file-download/item/root/aboutimage-igateway-for-joomla.html com_intuit]Local File Inclusion Vulnerability {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.securityfocus.com/bid/37494/discuss Retired]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;MemoryBook&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/calendars-a-events/birthdays-a-historic-events/10868 MemoryBook 1.2]  Multiple Vulnerabilities. requires: magic quotes OFF, user account {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;qpersonel&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/directory-a-documentation/thematic-directory/7049 qpersonel ] Cross Site Scripting Vulnerabilities {{JVer|1.0}}[[Image:http://extensions.joomla.org/images/jed/compat_15_legacy.png]] Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;opryknings point&#039;&#039;&#039; &lt;br /&gt;
|com_oprykningspoint_mc Cross Site Scripting Vulnerabilities {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;trabalhe conosco&#039;&#039;&#039;&lt;br /&gt;
|com_trabalhe_conosco Cross Site Scripting Vulnerabilities {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;DhForum&#039;&#039;&#039;&lt;br /&gt;
|com_dhforum SQL Injection Vulnerability. considered retired/EOL Dec. 27 {{JVer|1.0}}1.5 legacy&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;com_morfeoshow&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/photos-a-images/photo-gallery-add-ons/9810 morfeoshow] this was a false report &lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;  false report&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Run Digital Download rd-download&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7838 RD Download] Local File Disclosure Vulnerability  {{JVer|1.5}} Dec. 30 Version affected not disclosed.&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7838 Version 0.9 relased] &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== January 2010 Reported Vulnerable Extensions ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic or the [http://forum.joomla.org/viewforum.php?f=470 extensions] topic clearly marked with the first word in the title being &#039;&#039;Vulnerable&#039;&#039; where the security moderators or JSST team will respond. &lt;br /&gt;
&#039;&#039;This list is change protected, for updates or editing requests [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://docs.joomla.org/Vulnerable_Extensions_List Back To Top]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |JvideoDirect&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/multimedia/video-players-a-gallery/9501 Jvideodirect] SQLi Jan 29&lt;br /&gt;
|&lt;br /&gt;
|http://www.jvideodirect.com/ Update version 2.5&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JEvent search plugin&#039;&#039;&#039;&lt;br /&gt;
|Summary: JEvent search plugin for [http://extensions.joomla.org/extensions/calendars-a-events/events/95 JEvent] SQLi reported Jan 29&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.jevents.net/forum/viewtopic.php?f=17&amp;amp;t=3910#p15526 upgrade to 1.5.3b]&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;Kunena&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/communication/forum/7256/details kunena] re reported suffering SQLi in version 1.5.9 Jan 29 Confirmation Required &#039;&#039;&#039;Now found to be malicious&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://www.kunena.com/blog/19-developer-blog/51-kunena-157-security-release-now-available Versions 1.5.5 and below only]&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&#039;&#039;&#039;JE Quiz&#039;&#039;&#039;&lt;br /&gt;
|Summary : http://extensions.joomla.org/extensions/contacts-and-feedback/quiz-a-surveys/11212 JeQuiz SQLi reported 29 Jan&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;&amp;quot;   |&#039;&#039;&#039;idoblog&#039;&#039;&#039;&lt;br /&gt;
|summary: exploitable due to open file permissions. 28 Jan&lt;br /&gt;
|Private Notification&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://idojoomla.com/news.html build 35 released] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    |&#039;&#039;&#039;ccnewsletter&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://extensions.joomla.org/extensions/5112/details ccnewsletter Directory Traversal Vulnerability] Jan 28 &lt;br /&gt;
|Private Notification&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039; [http://www.chillcreations.com/en/blog/ccnewsletter-joomla-newsletter/ccnewsletter-106-security-release.html version 1.0.6 released 29 Jan]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   |&#039;&#039;&#039;Virtuemart 1.1.4&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/e-commerce/shopping-cart/129 virtuemart] Input var order_status_id is vulnerable to SQLi NB Requires Higher Level access before exploiting. Jan 27&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://forum.joomla.org/viewtopic.php?p=2027005#p2027005 developer patches]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JBDiary&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/calendars-a-events/events/11009 JBDiary] BLIND SQL Injection Vulnerabilities Jan 24 [http://www.jb-soft.nl/ http://www.jb-soft.nl/]&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | &#039;&#039;&#039; [http://www.jb-soft.nl/index.php?option=com_content&amp;amp;view=article&amp;amp;id=64 Developer Update 27 Jan]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JbPublishDownFp&#039;&#039;&#039;&lt;br /&gt;
|Sumary: [http://extensions.joomla.org/extensions/news-production/timed-content/6496 JbPublishDownFp] SQL Injection Vulnerability Jan 24 [http://www.jb-soft.nl http://www.jb-soft.nl]&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;  [http://www.jb-soft.nl/index.php?option=com_content&amp;amp;view=article&amp;amp;id=64 Developer Update Jan 27]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;com_casino&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/sports-a-games/tips-a-betts com_casino]&lt;br /&gt;
SQL Injection Vulnerabilities Jan24&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;Mochigames&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/search/mochigames com_Mochigames]&lt;br /&gt;
SQL Injection Vulnerabilities Jan24&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039; [http://www.yoflash.com/download.html mochigames_alpha052 Released]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;ContentBlogList&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/news-production/blog/10989 com_ContentBlogList] SQL Injection Vulnerability Jan 23&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |MailChimp for Joomla 1.5&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/bridges/mailing-a-newsletter-bridges/7836 MailChimp for Joomla 1.5]  jan 17&lt;br /&gt;
|Developer Statement&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;JoomlaXML&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/tools/design-tools/5020 JoomlaXML] malicious code insertion&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JVClouds3D SWF module&#039;&#039;&#039;&lt;br /&gt;
|[http://joomlapro.ru/3djvclouds JVClouds3D SWF module] Cross Site Scripting . jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55535 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JVClouds3D&#039;&#039;&#039;&lt;br /&gt;
|[http://joomlapro.ru/3djvclouds JVClouds3D module] Cross Site Scripting . jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55534 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;JA Showcase&#039;&#039;&#039;&lt;br /&gt;
|[http://www.joomlart.com/addons/components_and_modules/ja_showcase.html JA Showcase component] Directory Traversal jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55512 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;jprojects&#039;&#039;&#039;&lt;br /&gt;
|Summary:   Unknown Author com_j-projects Blind SQL Injection Vulnerability. Jan 10 detail update&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&#039;&#039;&#039;jEmbed-Embed Anything&#039;&#039;&#039;&lt;br /&gt;
|[http://www.joshprakash.com/index.php?option=com_docman&amp;amp;task=doc_details&amp;amp;gid=70 jEmbed-Embed Anything] A vulnerability has been discovered in the jEmbed-Embed Anything component for Joomla, which can be exploited by malicious people to conduct SQL injection attacks. Jan 10&lt;br /&gt;
|[http://secunia.com/advisories/38112 Secunia Advisory: SA38112] &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/3699/details Product considered retired]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    |&#039;&#039;&#039;perchagallery &#039;&#039;&#039;&lt;br /&gt;
|Summary: perchagallery  [http://extensions.joomla.org/extensions/photos-a-images/photo-gallery/10350 com_perchagallery] SQL Injection Vulnerability  Jan 7&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.percha.com/index.php?option=com_phocadownload&amp;amp;view=file&amp;amp;id=22:1.5&amp;amp;Itemid=20 Developer Update 1.5b]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0;  color:black&amp;quot;   |  &#039;&#039;&#039;CARTwebERP&#039;&#039;&#039;&lt;br /&gt;
|Summary:  [http://extensions.joomla.org/extensions/bridges/e-commerce-bridges/8753 CARTwebERP] Local File Inclusion Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://extensions.joomla.org/extensions/bridges/e-commerce-bridges/8753 1.56.76 (last update on Jan 11, 2010)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |   &#039;&#039;&#039;JoomlaBibleStudy&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/religion/3461 JoomlaBibleStudy] LFI Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | &#039;&#039;&#039;[http://joomlabiblestudy.org/invisible-downloads/category/3-component.html Developer reported update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;com_bfsurvey_basic and pro&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.tamlyncreative.com.au/software/ BFsurvey] SQL Injection Vulnerability ,LFI Vulnerability   Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.tamlyncreative.com.au/software/forum/index.php?topic=641.0 Developer Update announcement]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Alfresco&#039;&#039;&#039;&lt;br /&gt;
|Summary:  SQL Injection Vulnerability. Not believed to be Joomlatools extension Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;abbrev&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/directory-a-documentation/glossary-a-dictionary/4965 abbrev] Local File Inclusion Vulnerability Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;countries&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/development/6553 countries] SQL Injection Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |  &#039;&#039;&#039;Dedicated Component com_tpjobs&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.templateplazza.com/ tpjobs] SQL Injection Vulnerability unable to locate files probably template plaza  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;     | &#039;&#039;&#039;  [http://www.templateplazza.com/extensions-updates/tpjobs-component-update-v-1.1.html Developer Update] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Component com_doqment&#039;&#039;&#039;&lt;br /&gt;
|SQL Injection Vulnerability Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Component com_otzivi&#039;&#039;&#039; &lt;br /&gt;
|Blind SQL Injection Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;aprice&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://adeptweb.info/component/option,com_aprice/Itemid,109/ com_aprice] Component &#039;analog&#039; Parameter SQL Injection Vulnerability&lt;br /&gt;
|[http://www.securityfocus.com/bid/37575 Report]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;cartikads&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.cartikahosting.com com_cartikads] Remote File Upload Vulnerability &lt;br /&gt;
&#039;&#039;&#039;Mambo&#039;&#039;&#039; Open Source ads management component&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;Docman seller&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/e-commerce/subscriptions/5000 Document seller]  Input passed via the &amp;quot;id&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_dm_orders&amp;quot;, &amp;quot;task&amp;quot; is set to &amp;quot;order_form&amp;quot;, and &amp;quot;payment_method&amp;quot; is set to &amp;quot;Paypal&amp;quot;) is not properly sanitised before being used in SQL queries. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code.&lt;br /&gt;
|[http://secunia.com/advisories/38024/ secunia]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | [http://extensions.joomla.org/extensions/e-commerce/subscriptions/5000 Updated 10th Jan]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;ozio gallery&#039;&#039;&#039; &lt;br /&gt;
|summary: [http://extensions.joomla.org/extensions/photos-a-images/photo-flash-gallery/4883 Ozio Gallery2] SQLi eploit &lt;br /&gt;
|[http://www.viruslist.com/en/advisories/37974 Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   |[http://oziogallery.joomla.it/index.php?option=com_content&amp;amp;view=article&amp;amp;id=62%3Anuova-ozio-gallery-23-aggiornamento-di-sicurezza&amp;amp;catid=2%3Anotizie&amp;amp;Itemid=13&amp;amp;lang=en developer update Jan 11]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;RD-Autos Free&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/vertical-markets/vehicles/5458 RD-Autos Free ] This version is now commercial not free&lt;br /&gt;
|Private advisory to JED Jan 11&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039; Product Retired and replaced&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;DailyMeals&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/vertical-markets/food-a-beverage/4764 dailymeals] Local File Inclusion  Vulnerability  Jan 02&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;RD-Autos Pro&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/vertical-markets/vehicles/6357 RD Autos Pro]&lt;br /&gt;
|Private advisory to JED Jan 11&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;  Upgrade to  Latest version  be 2.0.2&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== New format Feed Starts Here ==&lt;br /&gt;
Please do not change your [http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions feed url], only the feed format has changed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== February, March, April, May, June 2010  Reported Vulnerable Extensions ==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic clearly marked with the first word in the title being &#039;&#039;Vulnerable Report&#039;&#039; where the security moderators or JSST team will respond. For a guide to the [http://docs.joomla.org/Vulnerable_Extensions_List_0210#Codes_used codes]&lt;br /&gt;
&lt;br /&gt;
[http://docs.joomla.org/Vulnerable_Extensions_List Previous Reports]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Date Added&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot; |&#039;&#039;&#039;Extension Update Link &amp;amp; Date&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== myblog controller    ==&lt;br /&gt;
|LFI  &lt;br /&gt;
http://www.azrul.com/ &lt;br /&gt;
|010710&lt;br /&gt;
|[http://www.azrul.com/  MyBlog 3.0.332] &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  joomanager    ==&lt;br /&gt;
|SQli Vulnerability&lt;br /&gt;
http://www.joomanager.com&lt;br /&gt;
|010710&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==  gamesbox   ==&lt;br /&gt;
|SQL Injection Vulnerability&lt;br /&gt;
http://www.jooforge.com/en/download/commercial/extensions/39-gamesbox&lt;br /&gt;
|010710&lt;br /&gt;
|upgrade to     1.0.10&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   wmtpic  ==&lt;br /&gt;
|www.webmaster-tips.net various&lt;br /&gt;
|010710&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== date converter    ==&lt;br /&gt;
|http://sourceforge.net/projects/date-converter/ sqli&lt;br /&gt;
|010710&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== Remository    ==&lt;br /&gt;
|http://remository.com/ LFI (proc)&lt;br /&gt;
|010710&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== real estate    ==&lt;br /&gt;
|http://www.opensourcetechnologies.com/demos/real-estate.html RFI&lt;br /&gt;
|210610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  jomsocial   ==&lt;br /&gt;
|Version: 1.6.288 Multiple XSS&lt;br /&gt;
|210610&lt;br /&gt;
|[http://www.jomsocial.com/blog/security-patch-for-jomsocial-16x.html 1.6.291 released] 220610&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  DOCman    ==&lt;br /&gt;
|DOCman 1.5.7 DOCman 1.4.0 none specific exploit&lt;br /&gt;
|210610&lt;br /&gt;
|[http://blog.joomlatools.eu/2010/06/docman-security-announcement.html developer announcement]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== eportfolio    ==&lt;br /&gt;
|http://www.joomplace.com/e-portfolio/e-portfolio-description.html Upload  Vulnerability&lt;br /&gt;
|200610&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  cinema   ==&lt;br /&gt;
|SQL injection&lt;br /&gt;
|190610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   Jreservation  ==&lt;br /&gt;
|http://jforjoomla.com/ SQLi Vulnerability&lt;br /&gt;
|190610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Super Messenger   ==&lt;br /&gt;
|axxis.gr xss &lt;br /&gt;
|190610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   joomdocs  ==&lt;br /&gt;
|http://joomclan.com/index.php/JoomDocs/ xss vulnerability&lt;br /&gt;
|190610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  RSComments 1.0.0   ==&lt;br /&gt;
|Persistent XSS NOTE: ONLY executes in backend!&lt;br /&gt;
|190610&lt;br /&gt;
|[http://www.rsjoomla.com/customer-support/documentations/96--general-overview-of-the-component/393-changelog.html Developer update announcement] 210610&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   Live Chat    ==&lt;br /&gt;
|http://www.joompolitan.com/livechat.html Multiple Remote Vulnerabilities &lt;br /&gt;
|190610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== Turtushout 0.11    ==&lt;br /&gt;
| http://www.turtus.org.ua/files?func=fileinfo&amp;amp;id=13 SQL Injection (again)&lt;br /&gt;
|190610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  BF Survey Pro Free   ==&lt;br /&gt;
|BF Survey Pro Free SQL Injection Exploit &lt;br /&gt;
|190610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  MisterEstate   ==&lt;br /&gt;
|http://www.misterestate.com/ Blind SQL Injection Exploit &lt;br /&gt;
|190610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  RSMonials    ==&lt;br /&gt;
|http://www.rswebsols.com/downloads/category/14-download-rsmonials-all?download=23%3Adownload-rsmonials-component XSS Exploit&lt;br /&gt;
|190610&lt;br /&gt;
|Believed to be 1.5.1 version&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==  RSComments 1.0.0   ==&lt;br /&gt;
|RS Comments 1.0.0 Multiple XSS Vulnerabilities http://www.rsjoomla.com (relisted)&lt;br /&gt;
|180610&lt;br /&gt;
|[http://www.rsjoomla.com/customer-support/documentations/96--general-overview-of-the-component/393-changelog.html Developer update announcement] 210610&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Answers v2.3beta   ==&lt;br /&gt;
|Multiple Vulnerabilities http://extensions.joomla.org/extensions/communication/forum/12652&lt;br /&gt;
|180610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Gallery XML 1.1   ==&lt;br /&gt;
|Multiple Vulnerabilities&lt;br /&gt;
http://extensions.joomla.org/extensions/photos-a-images/photo-gallery/12504&lt;br /&gt;
|180610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  JFaq 1.2   ==&lt;br /&gt;
|JFaq 1.2 Multiple Vulnerabilities&lt;br /&gt;
|180610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Listbingo 1.3   ==&lt;br /&gt;
|Multiple Vulnerabilities&lt;br /&gt;
http://extensions.joomla.org/extensions/ads-a-affiliates/classified-ads/12062&lt;br /&gt;
|180610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== PowerMail Pro    ==&lt;br /&gt;
|givesight.org PowerMail Pro Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== Alpha User Points    ==&lt;br /&gt;
|www.alphaplug.com LFI&lt;br /&gt;
|180610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Magic Updater   ==&lt;br /&gt;
|http://software.realtyna.com/ RFI&lt;br /&gt;
|170610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   recruitmentmanager  ==&lt;br /&gt;
|http://recruitment.focusdev.co.uk Upload Vulnerability&lt;br /&gt;
|130610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Info Line (MT_ILine)    ==&lt;br /&gt;
|http://extensions.joomla.org/extensions/news-display/news-tickers-a-scrollers/8425 reports of shell scripts in download file&lt;br /&gt;
|120610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Search Log   ==&lt;br /&gt;
|http://www.kanich.net/radio/site/searchlog/searchlog-download SQLi&lt;br /&gt;
|080610&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==  iJoobi   ==&lt;br /&gt;
|Numerous reports under investigation, please contact [www.ijoobi.com]for more information.jtickets, jsubscription SQL Injection Vulnerability, &lt;br /&gt;
jstore SQL Injection Vulnerability, jnewsletter SQL Injection, jmarket SQL Injection Vulnerability, jcommunity SQL Injection, jsubscription SQL Injection,   &lt;br /&gt;
|090610&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Ads manager  Annonce   ==&lt;br /&gt;
|http://joomla.clubnautiquemarine.fr/ &lt;br /&gt;
Upload Vulnerability&lt;br /&gt;
| 05/06/10&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  lead article    ==&lt;br /&gt;
|http://www.leadya.co.il/ SQLi&lt;br /&gt;
|050610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Search Log   ==&lt;br /&gt;
|http://www.kanich.net search log sqli&lt;br /&gt;
|050610&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  djartgallery   ==&lt;br /&gt;
|http://www.design-joomla.eu Multiple Vul&lt;br /&gt;
|05/06/10&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== Gallery 2 Bridge    ==&lt;br /&gt;
|[http://trac.4theweb.nl/g2bridge g2bridge] LFI vulnerability&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  jsjobs   ==&lt;br /&gt;
|[http://www.joomsky.com jsjobs] SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   JE Poll  ==&lt;br /&gt;
|http://slideshow.joomlaextensions.co.in/ SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  MyCar   ==&lt;br /&gt;
|http://www.unisoft.me/extensions/ sqli ID&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  MediQnA   ==&lt;br /&gt;
|MediQnA LFI vulnerability version : v1.1&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   JE Job  ==&lt;br /&gt;
|http://joomlaextensions.co.in/ LFI SQLi&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  BF Quiz   ==&lt;br /&gt;
|SQL Injection Exploit Version(s) = 1.3.0&lt;br /&gt;
|&lt;br /&gt;
|[http://www.tamlyncreative.com.au/software/forum/index.php?topic=729.0 Developer update to BF Quiz v1.3.1]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Ozio Gallery 2  ==&lt;br /&gt;
|DT and open email relay&lt;br /&gt;
|280510&lt;br /&gt;
|[http://oziogallery.joomla.it/index.php?option=com_content&amp;amp;view=article&amp;amp;id=65:rilasciata-la-versione-ozio-gallery-25&amp;amp;catid=2:notizie&amp;amp;Itemid=13&amp;amp;lang=en Developer update and security release] 010610&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  SectionEx   ==&lt;br /&gt;
|Stack Ideas section Ex LFI&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  ActiveHelper LiveHelp    ==&lt;br /&gt;
|XSS in [http://extensions.joomla.org/extensions/communication/chat/12492 LiveHelp] &lt;br /&gt;
|200510&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
==  RS Comments   ==&lt;br /&gt;
|XSS Vulnerability &lt;br /&gt;
|&lt;br /&gt;
|[http://www.rsjoomla.com/customer-support/documentations/96--general-overview-of-the-component/393-changelog.html - fix posted 210510]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  BCA RSS Feed   ==&lt;br /&gt;
|LFI and other vulnerabilities&lt;br /&gt;
|&lt;br /&gt;
|Since changed its name to NinjaRss &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
== SimpleDownload    ==&lt;br /&gt;
|http://extensions.joomla.org/extensions/directory-a-documentation/downloads/10717 various exploits&lt;br /&gt;
|160510&lt;br /&gt;
|updated version (version 0.9.6)&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
==  JE Quotation Form   ==&lt;br /&gt;
|http://joomlaextensions.co.in/free-download/doc_download/11-je-quotation-form.html  LFI&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  konsultasi   ==&lt;br /&gt;
|SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== Aardvertiser    ==&lt;br /&gt;
|Local File Inclusion Vulnerability	&lt;br /&gt;
http://extensions.joomla.org/extensions/ads-a-affiliates/classified-ads/9454&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Seber Cart    ==&lt;br /&gt;
|Local File Disclosure Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|[http://www.sebercart.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=158 Developer Update 140510]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  FDione Form Wizard   ==&lt;br /&gt;
|lfi vulnerability	&lt;br /&gt;
|140510 200510&lt;br /&gt;
|[http://dionesoft.com Update to Dione Form Wizard (v. 1.0.4)].&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Custom PHP Pages  ==&lt;br /&gt;
|http://extensions.joomla.org/extensions/edition/custom-code-in-content/5057 LFI Vulnerability		&lt;br /&gt;
|&lt;br /&gt;
|[http://fijiwebdesign.com Developer declares not vulnerable 140510]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Camp26 Visitor    ==&lt;br /&gt;
|RFI www.camp26.biz&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    iJoomla News Portal  ==&lt;br /&gt;
|RFI SID&lt;br /&gt;
|&lt;br /&gt;
|[http://www.ijoomla.com/forum/index.php/topic,4480.0.html Update to 1.5.10]&lt;br /&gt;
|-&lt;br /&gt;
|   |&lt;br /&gt;
&lt;br /&gt;
==  article Factory Manager   ==&lt;br /&gt;
|RFI &amp;amp; Input Validation Error http://www.thefactory.ro/shop/joomla-components/article-manager.html&lt;br /&gt;
|may 2010&lt;br /&gt;
|can not reproduce and unproven, http://www.thefactory.ro&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Table JX Component    ==&lt;br /&gt;
|http://www.toolsjx.com/ Table JX Component XSS&lt;br /&gt;
|060510 - update 130510&lt;br /&gt;
|Version: 1.5.5 considered unsafe&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   JE Property  ==&lt;br /&gt;
|JE Property Finder Upload Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   Noticeboard  ==&lt;br /&gt;
|Noticeboard for Joomla &amp;quot;controller&amp;quot; Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==SmartSite     ==&lt;br /&gt;
|SmartSite com_smartsite Local File Inclusion Vulnerability &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  ABC    ==&lt;br /&gt;
|ABC SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|reported as updated to JED 290410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  htmlcoderhelper graphics   ==&lt;br /&gt;
|htmlcoderhelper graphics v1.0.6 LFI Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
== Ultimate Portfolio    ==&lt;br /&gt;
|Ultimate Portfolio  Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  huruhelpdesk   ==&lt;br /&gt;
|http://www.huruhelpdesk.net sqli injection &lt;br /&gt;
|&lt;br /&gt;
|[http://www.huruhelpdesk.net/forums/8-announcements/392--sql-injection-reveals-user-md5-password-hash Reported fix]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Archery Scores   ==&lt;br /&gt;
| [http://lispeltuut.org/ Archery Scores (com_archeryscores) v1.0.6 LFI Vulnerability]&lt;br /&gt;
&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  ZiMB Manager   ==&lt;br /&gt;
|Joomla Component ZiMB Manager Local File Inclusion Vulnerability&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Matamko   ==&lt;br /&gt;
|Matamko Local File Inclusion Vulnerability&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Multiple Root   ==&lt;br /&gt;
|Multiple Root Local File Inclusion Vulnerability http://joomlacomponent.inetlanka.com/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Multiple Map   ==&lt;br /&gt;
|Multiple Map Local File Inclusion Vulnerability joomlacomponent.inetlanka.com&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   Contact Us Draw Root Map  ==&lt;br /&gt;
|Draw Root Map Local File Inclusion Vulnerability joomlacomponent.inetlanka.com&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  iF surfALERT   ==&lt;br /&gt;
|[http://www.inertialfate.za.net/ iF surfALERT] Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   GBU FACEBOOK  ==&lt;br /&gt;
|GBU FACEBOOK SQL injection vulnerability http://www.gbugrafici.nl/gbufacebook/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   jnewspaper  ==&lt;br /&gt;
|jnewspaper (cid) SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JTM Reseller   ==&lt;br /&gt;
|TM Reseller SQL injection vulnerability&lt;br /&gt;
|&lt;br /&gt;
|[http://jtmreseller.com/ Developer Update] &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  media Mall Factory   ==&lt;br /&gt;
|SQLi&lt;br /&gt;
|200410&lt;br /&gt;
| [http://www.thefactory.ro/contact-us/product-update-request.html Solution: update to 1.0.5] &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Gadget Factory  ==&lt;br /&gt;
|LFi&lt;br /&gt;
|200410&lt;br /&gt;
|[http://www.thefactory.ro/contact-us/product-update-request.html Solution: update to 1.5.1]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Deluxe Blog Factory   ==&lt;br /&gt;
|SQLi&lt;br /&gt;
|200410&lt;br /&gt;
|[http://www.thefactory.ro/contact-us/product-update-request.html update to 1.1.2]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
== MT Fire Eagle ==&lt;br /&gt;
&lt;br /&gt;
|LFI http://joomlacode.org/gf/project/jfireeagle/frs/ http://www.moto-treks.com&lt;br /&gt;
| 190410&lt;br /&gt;
| product considered retired and to be replaced by dev&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==  com properties   ==&lt;br /&gt;
| http://com-property.com/ SQL I&lt;br /&gt;
|&lt;br /&gt;
|[http://www.com-property.com/images/fbfiles/files/properties-20100413.txt developer announced fix]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Sweetykeeper   ==&lt;br /&gt;
|Sweetykeeper Local File Inclusion Vulnerability  http://www.joomlacorner.com/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  jvehicles   ==&lt;br /&gt;
|SQL Injection http://jvehicles.com&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  worldrates   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  cvmaker   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  advertising   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   horoscope  ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   webtv  ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  diary   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Multi-Venue Restaurant Menu Manager (MVRMM)  ==&lt;br /&gt;
|http://www.focusdev.co.uk/ &lt;br /&gt;
|120410 &lt;br /&gt;
||[http://extensions.joomla.org/extensions/vertical-markets/food-a-beverage/10015 Version 1.5.2 Stable Update 4]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Memory Book   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   TRAVELbook  ==&lt;br /&gt;
| http://www.demo-page.de/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
== AlphaUserPoints    ==&lt;br /&gt;
|&lt;br /&gt;
|[http://www.alphaplug.com/index.php/downloads.html?func=fileinfo&amp;amp;id=31 developer upgrade]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JprojectMan   ==&lt;br /&gt;
|LFI http://extensions.joomla.org/extensions/communities-a-groupware/project-a-task-management/5676&lt;br /&gt;
|110410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   CKForms  ==&lt;br /&gt;
|1.3.4 release - Important LFI security fix [http://joomlacode.org/gf/project/ckforms/news/?action=NewsThreadView&amp;amp;id=2814 ]&lt;br /&gt;
|07-04-10 &lt;br /&gt;
|[http://ckforms.cookex.eu/download/download.php upgrade]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   econtentsite  ==&lt;br /&gt;
|LFI&lt;br /&gt;
|040410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    Jvehicles ==&lt;br /&gt;
|ID&lt;br /&gt;
|040410&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  smestorage   ==&lt;br /&gt;
|[http://www.smestorage.com SMEStorage] LFI&lt;br /&gt;
&lt;br /&gt;
|Updated 29 March 10&lt;br /&gt;
|[http://gelembjuk.com/index.php?option=com_content&amp;amp;view=section&amp;amp;layout=blog&amp;amp;id=1&amp;amp;Itemid=55 developer fix] to 1.1&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JE Tooltip   ==&lt;br /&gt;
|[http://joomlaextensions.co.in/formcreator/ JE Tooltip] LFI&lt;br /&gt;
|Updated 23 March &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Gift Exchange Beta   ==&lt;br /&gt;
|[http://extensions.joomla.org/extensions/communities-a-groupware/membership/11680 Gift exchange] SQLi&lt;br /&gt;
|Updated 23 March &lt;br /&gt;
|[http://socialables.com/28-Jomsocial/Gift-Exchange/flypage.tpl.html upgrade beta 1.0.1]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  RokDownloads  ==&lt;br /&gt;
|[[http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7967 LFI]] &lt;br /&gt;
|15 march 2010&lt;br /&gt;
||upgrade to [http://www.rockettheme.com/extensions-updates/638-rokdownloads-10-released version 1.0]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    gigcalender   ==&lt;br /&gt;
&lt;br /&gt;
|SQLi [http://extensions.joomla.org/extensions/calendars-a-events/events/97)http://extensions.joomla.org/extensions/calendars-a-events/events/97 gigcalender]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    heza content   ==&lt;br /&gt;
|SQLi [http://extensions.joomla.org/extensions/structure-a-navigation/sections-a-categories/10427)http://extensions.joomla.org/extensions/structure-a-navigation/sections-a-categories/10427  heza content]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   juliaportfolio   ==&lt;br /&gt;
|LFI [http://extensions.joomla.org/extensions/directory-&amp;amp;-documentation/portfolio/8519/details juliaportfolio]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  Flash Magazine Deluxe   ==&lt;br /&gt;
|SQL Injection Vulnerability.&lt;br /&gt;
|Feb 25&lt;br /&gt;
|&#039;&#039;&#039;[http://www.joomplace.com/flash-magazine-deluxe/flash-magazine-deluxe-description.html Developer Update Version 2.0.11 09/03/10]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  SqlReport   ==&lt;br /&gt;
|Sqlreport has a sql/RFI exploit. awaiting confirmation on exact developer.&lt;br /&gt;
|Feb 20&lt;br /&gt;
|&#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  Scriptegrator   ==&lt;br /&gt;
|Core Design [http://www.greatjoomla.com/extensions/plugins/core-design-scriptegrator-plugin.html Scriptegrator] RFI exploit&lt;br /&gt;
|Feb 20&lt;br /&gt;
|[http://www.greatjoomla.com/extensions/plugins/core-design-scriptegrator-plugin.html Dev Upgrade announcement]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  AllVideos 3.1  ==&lt;br /&gt;
|&lt;br /&gt;
A vulnerability discovered in versions 3.0. and 3.1 of the plugin can be exploited by malicious people to disclose potentially sensitive information. For security reasons we will not be providing further details to safeguard users of affected versions. http://www.joomlaworks.gr/content/view/77/34/]|&lt;br /&gt;
|17 Feb&lt;br /&gt;
| [http://joomlaworks.googlecode.com/files/plg_jw_allvideos-v3.3_j1.5.zip Version 3.3 release 18th]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  RW Cards   ==&lt;br /&gt;
| [http://extensions.joomla.org/extensions/3430/details RW Card] LFI and ID exploit [http://www.weberr.de/ Dev Site]&lt;br /&gt;
|180210&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;  [http://www.weberr.de/index.php/forum.html?func=view&amp;amp;catid=5&amp;amp;id=1939&amp;amp;limit=6 developer update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
== Yelp ==&lt;br /&gt;
| SQLi - Unable to locate developer. Possibly a custom extension.&lt;br /&gt;
|Feb 01 &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  &#039;&#039;&#039;Autartitarot&#039;&#039;&#039;   ==&lt;br /&gt;
|Directory Traversal. Back end access required&lt;br /&gt;
| Feb 05&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039; Please upgrade to [http://www.autartica.be/en/autartitarot version 1.0.4]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  communitypolls   ==&lt;br /&gt;
|LFI - [http://www.corejoomla.com/ community polls] &lt;br /&gt;
|Feb 17&lt;br /&gt;
||upgrade to [http://www.corejoomla.com/ version 1.5.3]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This list is change protected, for updates or additions [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Codes used ==&lt;br /&gt;
SQLi - SQL injection [http://en.wikipedia.org/wiki/Code_injection#SQL_injection wikipedia]&lt;br /&gt;
&lt;br /&gt;
LFI - Local File Inclusion [http://www.scribd.com/doc/6498408/Remote-and-Local-File-Inclusion-Explained scribd]&lt;br /&gt;
&lt;br /&gt;
RFI - Remote file inclusion [http://en.wikipedia.org/wiki/Remote_File_Inclusion wikipedia]&lt;br /&gt;
&lt;br /&gt;
DT - Directory Traversal [http://en.wikipedia.org/wiki/Directory_traversal wikipedia]&lt;br /&gt;
&lt;br /&gt;
ID = Information Disclosure: account information or sensitive information publicly viewable&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Actions &amp;amp; WIP ==&lt;br /&gt;
&lt;br /&gt;
[http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions RSS feed] completed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to feed VEL direct to twitter&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
The RSS feed is currently fed by item entry order and not by date fixed. &lt;br /&gt;
List as discussed in  [[jtopic:455746]] by [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=67439 PhilD] editing by [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Category:Security]]&lt;br /&gt;
[[Category:Security_FAQ]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Hidabe</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived:Vulnerable_Extensions_List&amp;diff=28374</id>
		<title>Archived:Vulnerable Extensions List</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived:Vulnerable_Extensions_List&amp;diff=28374"/>
		<updated>2010-06-03T08:44:37Z</updated>

		<summary type="html">&lt;p&gt;Hidabe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
== Check and Report.  ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic or the [http://forum.joomla.org/viewforum.php?f=470 extensions] topic clearly marked with the first word in the title being &#039;&#039;Vulnerable&#039;&#039; where the security moderators or JSST team will respond. &lt;br /&gt;
This list is change protected, for updates or editing requests [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
*If you are seeing this page on any site other than [http://docs.joomla.org/Vulnerable_Extensions_List the Offical Joomla Documentation] you may be seeing an out of date version or experiencing [http://en.wikipedia.org/wiki/Plagiarism plagiary] and the links may not work properly&lt;br /&gt;
&lt;br /&gt;
== How to use this list ==&lt;br /&gt;
&#039;&#039;&#039;Items will be removed after a suitable period and not on resolution&#039;&#039;&#039;&lt;br /&gt;
All known vulnerable extensions are the listed in the first column. Any in &amp;lt;span style=&amp;quot;background:red; color:white&amp;quot;&amp;gt;a red box &amp;lt;/span&amp;gt;are high where we have not been given a fix for. Alert Advisory details in the centre column (the date is in American format mm/dd/yyyy). &lt;br /&gt;
The link to the advisory notice. &lt;br /&gt;
Finally a link to the notice about any &amp;lt;span style=&amp;quot;background:#cef2e0; color:black&amp;quot;&amp;gt;update with link&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;background:red; color:white&amp;quot;&amp;gt;&#039;&#039;&#039;Not Known&#039;&#039;&#039; &amp;lt;/span&amp;gt; where none is known.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This list is compiled from found information and may not be an up to date accurate list&#039;&#039;&#039; &#039;&#039;We do &#039;&#039;&#039;NOT&#039;&#039;&#039; promise to test or validate these reports. We do &#039;&#039;&#039;NOT&#039;&#039;&#039; guarantee the quality or effectiveness of any updates reported to us or listed here.&#039;&#039;&lt;br /&gt;
To sign up for the feed please [http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions follow this link]&lt;br /&gt;
&lt;br /&gt;
== November 2009 Compiled Vulnerability Reports. ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Items are not in any particular order.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_ajaxchat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: PHP remote file inclusion vulnerability in Fiji Web Design Ajax Chat (&#039;&#039;&#039;com_ajaxchat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the GLOBALS[mosConfig_absolute_path] parameter to tests/ajcuser.php.New version release December 22,2009&lt;br /&gt;
Published: october 28 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3822|CVE-2009-3822]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/communication/chat/10767 update v 1.1]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_booklibrary&#039;&#039;&#039;&lt;br /&gt;
|  PHP remote file inclusion vulnerability in doc/releasenote.php in the BookLibrary (&#039;&#039;&#039;com_booklibrary&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the mosConfig_absolute_path parameter, a different vector than [[NIST:CVE-2009-2637|CVE-2009-2637]]. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 10/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|  [[NIST:CVE-2009-3817|CVE-2009-3817]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;[http://ordasoft.com/Download/Joomla1.0-extensions/Joomla1.0-components/View-category.html developer site updates]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|   style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_foobla_suggestions&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the foobla Suggestions (&#039;&#039;&#039;com_foobla_suggestions&#039;&#039;&#039;) component 1.5.11 for Joomla! allows remote attackers to execute arbitrary SQL commands via the idea_id parameter to index.php.&lt;br /&gt;
Published: 10/11/2009&lt;br /&gt;
CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|  [[NIST:CVE-2009-3669|CVE-2009-3669]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://foobla.com/news/latest/fixed-foobla-suggestions-for-joomla-idea_id-sql-injection-vulnerability.html developer reported upgrade]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_djcatalog&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the DJ-Catalog (&#039;&#039;&#039;com_djcatalog&#039;&#039;&#039;) component for Joomla! allow remote attackers to execute arbitrary SQL commands via the (1) id parameter in a showItem action and (2) cid parameter in a show action to index.php.&lt;br /&gt;
Published: 10/11/2009&lt;br /&gt;
CVSS Severity: 6.8 (MEDIUM)&lt;br /&gt;
|  [[NIST:CVE-2009-3661|CVE-2009-3661]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_cbresumebuilder&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JoomlaCache CB Resume Builder (&#039;&#039;&#039;&#039;&#039;&#039;com_cbresumebuilder&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the group_id parameter in a group_members action to index.php.&lt;br /&gt;
Published: 10/09/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3645|CVE-2009-3645]] &lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://www.joomlacache.com/commercial-extensions/security-update.html Developer Update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;com_soundset&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Soundset (&#039;&#039;&#039;com_soundset&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the cat_id parameter to index.php.&lt;br /&gt;
Published: 10/09/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3644|CVE-2009-3644]]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;com_sportfusion&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Kinfusion SportFusion (&#039;&#039;&#039;com_sportfusion&#039;&#039;&#039;) component 0.2.2 through 0.2.3 for Joomla! allows remote attackers to execute arbitrary SQL commands via the cid[0] parameter in a teamdetail action to index.php.&lt;br /&gt;
Published: 09/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3491|CVE-2009-3491]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_icrmbasic&#039;&#039;&#039;&lt;br /&gt;
|  Summary: A certain interface in the iCRM Basic (&#039;&#039;&#039;com_icrmbasic&#039;&#039;&#039;) component 1.4.2.31 for Joomla! does not require administrative authentication, which has unspecified impact and remote attack vectors. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 09/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3481|CVE-2009-3481]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_mytube&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the MyRemote Video Gallery (&#039;&#039;&#039;com_mytube&#039;&#039;&#039;) component 1.0 Beta for Joomla! allows remote attackers to execute arbitrary SQL commands via the user_id parameter in a videos action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3446|CVE-2009-3446]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_fastball&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Fastball (&#039;&#039;&#039;com_fastball&#039;&#039;&#039;) component 1.1.0 through 1.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the league parameter to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3443|CVE-2009-3443]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://www.fastballproductions.com   latest version] 1.2.1 &lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_facebook&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JoomlaFacebook (&#039;&#039;&#039;com_facebook&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a student action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3438|CVE-2009-3438]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_tupinambis&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Tupinambis (&#039;&#039;&#039;com_tupinambis&#039;&#039;&#039;) component 1.0 for Mambo and Joomla! allows remote attackers to execute arbitrary SQL commands via the proyecto parameter in a verproyecto action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3434|CVE-2009-3434]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_idoblog&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the IDoBlog (&#039;&#039;&#039;com_idoblog&#039;&#039;&#039;) component 1.1 build 30 for Joomla! allows remote attackers to execute arbitrary SQL commands via the userid parameter in a profile action to index.php, a different vector than [[NIST:CVE-2008-2627|CVE-2008-2627]].&lt;br /&gt;
Published: 09/25/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3417|CVE-2009-3417]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |&#039;&#039;&#039;[http://idojoomla.com/download.html/ &#039;&#039;&#039;New Version v 1.1&#039;&#039;&#039; (build 32)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_hbssearch&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Cross-site scripting (&#039;&#039;&#039;XSS&#039;&#039;&#039;) vulnerability in the Hotel Booking Reservation System (&#039;&#039;&#039;aka HBS or com_hbssearch&#039;&#039;&#039;) component for Joomla! allows remote attackers to inject arbitrary web script or HTML via the adult parameter in a showhoteldetails action to index.php.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 4.3 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3368|CVE-2009-3368]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_hbssearch&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the Hotel Booking Reservation System (&#039;&#039;&#039;aka HBS or com_hbssearch&#039;&#039;&#039;) component for Joomla! allow remote attackers to execute arbitrary SQL commands via the (&#039;&#039;&#039;1&#039;&#039;&#039;) h_id, (&#039;&#039;&#039;2&#039;&#039;&#039;) id, and (&#039;&#039;&#039;3&#039;&#039;&#039;) rid parameters to longDesc.php, and the h_id parameter to (&#039;&#039;&#039;4&#039;&#039;&#039;) detail.php, (&#039;&#039;&#039;5&#039;&#039;&#039;) detail1.php, (&#039;&#039;&#039;6&#039;&#039;&#039;) detail2.php, (&#039;&#039;&#039;7&#039;&#039;&#039;) detail3.php, (&#039;&#039;&#039;8&#039;&#039;&#039;) detail4.php, (&#039;&#039;&#039;9&#039;&#039;&#039;) detail5.php, (&#039;&#039;&#039;10&#039;&#039;&#039;) detail6.php, (&#039;&#039;&#039;11&#039;&#039;&#039;) detail7.php, and (&#039;&#039;&#039;12&#039;&#039;&#039;) detail8.php, different vectors than [[NIST:CVE-2008-5865|CVE-2008-5865]], [[NIST:CVE-2008-5874|CVE-2008-5874]], and [[NIST:CVE-2008-5875|CVE-2008-5875]].&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3357|CVE-2009-3357]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_alphauserpoints&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in frontend/assets/ajax/checkusername.php in the AlphaUserPoints (&#039;&#039;&#039;com_alphauserpoints&#039;&#039;&#039;) component 1.5.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the username2points parameter.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3342|CVE-2009-3342]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://www.alphaplug.com/index.php/news/142-alphauserpoints-153-released.html 1.5.3]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;TurtuShout&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the TurtuShout component 0.11 for Joomla! allows remote attackers to execute arbitrary SQL commands via the Name field.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3335|CVE-2009-3335]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jinc&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Lhacky! Extensions Cave Joomla! Integrated Newsletters Component (&#039;&#039;&#039;aka JINC or com_jinc&#039;&#039;&#039;) component 0.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the newsid parameter in a messages action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3334|CVE-2009-3334]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_jbudgetsmagic&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JBudgetsMagic (&#039;&#039;&#039;com_jbudgetsmagic&#039;&#039;&#039;) component 0.3.2 through 0.4.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the bid parameter in a mybudget action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3332|CVE-2009-3332]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;[http://sopinet.com/jbudgetsmagic/index.php?option=com_remository&amp;amp;Itemid=5&amp;amp;lang=en Update to 0.4.1]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_surveymanager&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Focusplus Developments Survey Manager (&#039;&#039;&#039;com_surveymanager&#039;&#039;&#039;) component 1.5.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the stype parameter in an editsurvey action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3325|CVE-2009-3325]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_album&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Directory traversal vulnerability in the Roland Breedveld Album (&#039;&#039;&#039;com_album&#039;&#039;&#039;) component 1.14 for Joomla! allows remote attackers to access arbitrary directories and have unspecified other impact via a .. (&#039;&#039;&#039;dot dot&#039;&#039;&#039;) in the target parameter to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3318|CVE-2009-3318]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;com_jreservation&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the [http://extensions.joomla.org/extensions/vertical-markets/booking-a-reservation/9798 JReservation] (&#039;&#039;&#039;com_jreservation&#039;&#039;&#039;) component 1.0 and 1.5 for Joomla! allows remote attackers to execute arbitrary SQL commands via the pid parameter in a propertycpanel action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3316|CVE-2009-3316]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |  [http://www.jforjoomla.com Updated 28th] Jan fixed 13th Nov&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;IXXO Cart Standalone&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in IXXO Cart Standalone before 3.9.6.1, and the IXXO Cart component for Joomla! 1.0.x, allows remote attackers to execute arbitrary SQL commands via the parent parameter.&lt;br /&gt;
Published: 09/16/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3215|CVE-2009-3215]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_digifolio&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the DigiFolio (&#039;&#039;&#039;com_digifolio&#039;&#039;&#039;) component 1.52 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a project action to index.php.&lt;br /&gt;
Published: 09/15/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3193|CVE-2009-3193]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_aclassf&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Cross-site scripting (&#039;&#039;&#039;XSS&#039;&#039;&#039;) vulnerability in &#039;&#039;&#039;gmap.php&#039;&#039;&#039; in the Almond Classifieds (&#039;&#039;&#039;com_aclassf&#039;&#039;&#039;) component 7.5 for Joomla! allows remote attackers to inject arbitrary web script or HTML via the addr parameter.&lt;br /&gt;
Published: 09/10/2009&lt;br /&gt;
CVSS Severity: 4.3 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3155|CVE-2009-3155]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;   | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_aclassf&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Almond Classifieds (&#039;&#039;&#039;com_aclassf&#039;&#039;&#039;) component 7.5 for Joomla! allows remote attackers to execute arbitrary SQL commands via the replid parameter in a manw_repl add_form action to index.php, a different vector than [[NIST:CVE-2009-2567|CVE-2009-2567]].&lt;br /&gt;
Published: 09/10/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3154|CVE-2009-3154]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://www.almondsoft.com/alcl.html Developer latest component]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jabode&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in Jabode horoscope extension (&#039;&#039;&#039;com_jabode&#039;&#039;&#039;) for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a sign task to index.php.&lt;br /&gt;
Published: 09/08/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
|  [[NIST:CVE-2008-7169|CVE-2008-7169]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_gameserver&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Game Server (&#039;&#039;&#039;com_gameserver&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a gamepanel action to index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3063|CVE-2009-3063]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_artportal&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Artetics.com Art Portal (&#039;&#039;&#039;com_artportal&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the portalid parameter to index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3054|CVE-2009-3054]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;com_agora&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Directory traversal vulnerability in the Agora (&#039;&#039;&#039;com_agora&#039;&#039;&#039;) component 3.0.0b for Joomla! allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the action parameter to the avatars page, reachable through index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 6.8 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3053|CVE-2009-3053]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |&#039;&#039;&#039;[http://jvitals.com/index.php?option=com_rokdownloads&amp;amp;view=file&amp;amp;Itemid=108&amp;amp;id=282:agora-3-0 3.0.7]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_simpleshop&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Simple Shop Galore (&#039;&#039;&#039;com_simpleshop&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the section parameter in a section action to index.php, a different vulnerability than [[NIST:CVE-2008-2568|CVE-2008-2568]]. NOTE: this issue was disclosed by an unreliable researcher, so the details might be incorrect.&lt;br /&gt;
Published: 08/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-7033|CVE-2008-7033]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_groups&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Permis (&#039;&#039;&#039;com_groups&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a list action to index.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 08/17/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-2789|CVE-2009-2789]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;com_content&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the content component (&#039;&#039;&#039;com_content&#039;&#039;&#039;) 1.0.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the Itemid parameter in a blogcategory action to index.php.&lt;br /&gt;
Published: 08/10/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6923|CVE-2008-6923]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://developer.joomla.org/security/news/305-20091103-core-front-end-editor-issue-.html Resolution]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the last parameter to getChatRoom.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6883|CVE-2008-6883]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to use the xmlhttp.php script as an open HTTP proxy to hide network scanning activities or scan internal networks via a GET request with a full URL in the query string.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6882|CVE-2008-6882]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allow remote attackers to execute arbitrary SQL commands via the last parameter to (&#039;&#039;&#039;1&#039;&#039;&#039;) getChat.php, (&#039;&#039;&#039;2&#039;&#039;&#039;) getChatRoom.php, and (&#039;&#039;&#039;3&#039;&#039;&#039;) getSavedChatRooms.php.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6881|CVE-2008-6881]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;JUMI&#039;&#039;&#039;&lt;br /&gt;
|  There is a backdoor in JUMI that installs itself when JUMI is installed on your web site. It sends your credentials to a website, and sets up a back door for remote code execution.&lt;br /&gt;
Please remove JUMI2.0.5 immediately. &lt;br /&gt;
It will be simple enough to remove the compromised code from this download, but you need to do &lt;br /&gt;
a full security audit on your site as well as you have been compromised. Added November 2009&lt;br /&gt;
|  [http://code.google.com/p/jumi/updates/list Report]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://code.google.com/p/jumi/updates/list Jumi Update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_photoblog&#039;&#039;&#039;&lt;br /&gt;
|  Input Validation Error Added November 2009&lt;br /&gt;
|  [http://www.securityfocus.com/bid/36809/ 36809]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://webguerilla.net/downloads/3-components-for-joomla-1 webguerilla Photoblog alpha 3b]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jshop&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JShop (&#039;&#039;&#039;com_jshop&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the pid parameter in a product action to index.php.&lt;br /&gt;
Published: 11/02/2009&lt;br /&gt;
CVSS Severity: 7.5 &#039;&#039;&#039;(HIGH)&#039;&#039;&#039; &lt;br /&gt;
|  [[NIST:CVE-2009-3835|CVE-2009-3835]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;BF Survey Pro&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the &#039;&#039;&#039;BF Survey Pro&#039;&#039;&#039; v1.2.5 or lower  (fixed in version 1.2.6). &#039;&#039;&#039;BF Survey Basic v1.0&#039;&#039;&#039; (fixed in version 1.1). &#039;&#039;&#039;BF Quiz v1.1.1&#039;&#039;&#039; (fixed in version 1.2 or greater) Added November 2009&lt;br /&gt;
|  [http://www.tamlyncreative.com.au/software/forum/index.php?topic=357.0 tamlyncreative.com.au]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://www.tamlyncreative.com.au/software/forum/index.php?topic=357.0 update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;Joo!BB 0.9.1 &#039;&#039;&#039;&lt;br /&gt;
|  Summary: Persistent XSS/MySQL Injection vulnerabilities in Joo!BB 0.9.1 Added November 2009&lt;br /&gt;
|  [http://www.joobb.org/community/board/topic/700-MultipleXSSSQLInjectionVulnerabilities.html joob.org]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.joobb.org/downloads/components.html update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;sh404sef &#039;&#039;&#039;&lt;br /&gt;
|  Summary: sh404sef URI XSS Vulnerability  Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/sh404sef-uri-xss-vulnerability.html jeffchannell.com]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://extensions.siliana.com/en/2009060876/sh404SEF-and-url-rewriting/Interim-release-of-sh404sef-for-Joomla-1.5.x.html update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;AWD Wall 1.5&#039;&#039;&#039; &lt;br /&gt;
|  Summary &#039;&#039;&#039;AWD Wall 1.5&#039;&#039;&#039; Blind SQL Injection Vulnerability.The Joomla component AWD Wall 1.5 suffers from an SQL Injection vulnerability in its handling of the &#039;cbuser&#039; parameter.Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/awd-wall-15-blind-sql-injection-vulnerability.html Notice]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;[http://www.awdsolution.com/template_demo/testsite/index.php?option=com_content&amp;amp;view=article&amp;amp;id=48&amp;amp;Itemid=72 developer update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;EasyBook 2.0.0rc4&#039;&#039;&#039;&lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;EasyBook 2.0.0rc4&#039;&#039;&#039; suffers from multiple persistent XSS vulnerabilities. One seems fairly critical, while the others would take some incredible creativity to actively exploit. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/easybook-200rc4-multiple-xss-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;F!BB 1.5.96&#039;&#039;&#039; &lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;F!BB 1.5.96 RC&#039;&#039;&#039; suffers from multiple persistent XSS vulnerabilities, as well SQL Injection in its user search feature. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/fbb-1596-rc-multiple-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Testimonial Ku 2.0 Admin Panel&#039;&#039;&#039;&lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;Testimonial Ku 2.0&#039;&#039;&#039; is vulnerable to persistent XSS in the administrator panel. A malicious user can submit a testimonial containing &amp;lt;script&amp;gt; tags with absolutely no quotes and inject that script into the administrator panel through any of the available inputs except &amp;quot;email&amp;quot;. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/testimonial-ku-20-admin-panel-persistent-xss.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;MS Comment 0.8.0b&#039;&#039;&#039;&lt;br /&gt;
|  Summary &#039;&#039;&#039;MS Comment 0.8.0b for Joomla&#039;&#039;&#039;, a commenting plugin, suffers from an multiple vulnerabilities. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/ms-comment-080b-multiple-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;!JoomlaComment 4.0 beta1&#039;&#039;&#039;&lt;br /&gt;
|  Summary: &#039;&#039;&#039;!JoomlaComment 4.0 beta1&#039;&#039;&#039;, a commenting plugin, suffers from multiple XSS vulnerabilities. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/joomlacomment-40-beta1-multiple-xss-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://compojoom.com/blog/8-news/121-joomlacomment-40-rc1-released Developer Notice 4.0 rc1]&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;WebAmoeba Ticket System 3.0.0&#039;&#039;&#039;&lt;br /&gt;
|  Summary:  &#039;&#039;&#039;WebAmoeba Ticket System 3.0.0&#039;&#039;&#039;, a Joomla help desk component. The vulnerability is with the BBCode library used to parse BBCode tags, as it does not strip javascript: urls from [url] tags. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/webamoeba-ticket-system-300-bbcode-xss.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;Kunena 1.5.x&#039;&#039;&#039; &lt;br /&gt;
|Summary: This is an important security release and users are urged to update immediately. Five security issues and an Internet Explorer 8 table bug have been resolved in this release. This release also contains many other important bug fixes. Added 18 November 2009&lt;br /&gt;
|[http://www.kunena.com/blog/19-developer-blog/51-kunena-157-security-release-now-available Advisory]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://www.kunena.com/blog/19-developer-blog/52-kunena-158-service-release-now-available Latest 1.5.8 Version]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_siirler&#039;&#039;&#039;&lt;br /&gt;
|  Summary:  SQL injection vulnerability in the &#039;&#039;&#039;Q-Proje Siirler Bileseni (com_siirler)&#039;&#039;&#039; component 1.2 RC for Joomla! allows remote attackers to execute arbitrary SQL commands via the sid parameter in an sdetay action to index.php. Added 18 November 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3972 | CVE-2009-3972]]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;jTips (com_jtips)&#039;&#039;&#039;&lt;br /&gt;
|SUmmary:SQL injection vulnerability in the &#039;&#039;&#039;jTips (com_jtips)&#039;&#039;&#039; component 1.0.7 and 1.0.9 for Joomla! allows remote attackers to execute arbitrary SQL commands via the season parameter in a ladder action to index.php. Added 18 November 2009&lt;br /&gt;
| [[NIST:CVE-2009-3971 |CVE-2009-3971]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;NinjaMonials&#039;&#039;&#039;&lt;br /&gt;
| Summary: SQL injection vulnerability in the &#039;&#039;&#039;NinjaMonials (com_ninjacentral)&#039;&#039;&#039; component 1.1.0 for &#039;&#039;&#039;Joomla 1.0.x&#039;&#039;&#039; ! allows remote attackers to execute arbitrary SQL commands via the testimID parameter in a display action to index.php. Added 18 November 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3964 | CVE-2009-3964]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;  [http://ninjaforge.com/index.php?option=com_ninjacentral&amp;amp;page=show_package&amp;amp;id=14&amp;amp;Itemid=235 developer patch Ver 1.2]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;webee 1.1.1 &amp;amp;1.2&#039;&#039;&#039;&lt;br /&gt;
|Summary: &#039;&#039;&#039;webee 1.1.1,&#039;&#039;&#039; a Joomla commenting plugin, suffers from multiple vulnerabilities. &#039;&#039;&#039;webee has been updated to 1.2&#039;&#039;&#039; as of 12 November 2009 and&#039;&#039;&#039; still suffers&#039;&#039;&#039; from SQL Injection. XSS was not tested in 1.2. Added 19 November 2009&lt;br /&gt;
| [http://jeffchannell.com/Joomla/webee-111-multiple-vulnerabilities.html jeffchannell.com]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039; [http://extensions.joomla.org/extensions/contacts-and-feedback/articles-comments/10155 developer update ver2.0]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;iF Portfolio Nexus&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;&#039;&#039;iF Portfolio Nexus component for Joomla!&#039;&#039;&#039; is vulnerable to SQL injection. A remote attacker could send specially-crafted SQL statements using the id parameter, which could allow the attacker to view, add, modify or delete information in the back-end database. Nov 18, 2009&lt;br /&gt;
|[http://secunia.com/advisories/37408/ secunia.com 37408/]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.inertialfate.za.net/help/forums/topic?id=10&amp;amp;p=3#p172 iF Portfolio Nexus v1.1.1 released]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JoomClip&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;&#039;&#039;JoomClip component for Joomla!&#039;&#039;&#039; is vulnerable to SQL injection. A remote attacker could send specially-crafted SQL statements to the index.php script using the cat parameter, which could allow the attacker to view, add, modify or delete information in the back-end database.  Nov 18, 2009&lt;br /&gt;
|[http://secunia.com/advisories/37400/ secunia.com 37400/]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Joomla XML&#039;&#039;&#039;&lt;br /&gt;
|Summary: Joomla! before 1.5.15 allows remote attackers to read an extension&#039;s XML file, and thereby obtain the extension&#039;s version number, via a direct request.&lt;br /&gt;
Published: 11/16/2009&lt;br /&gt;
|[[NIST:CVE-2009-3946 | CVE-2009-3946]] &lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://developer.joomla.org/security/news/306-20091103-core-xml-file-read-issue.html Resolution]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Mygallery Remote SQL Injection Vulnerability&#039;&#039;&#039; &lt;br /&gt;
|Summary: Joomla Component mygallery ( farbinform_krell) Remote SQL Injection Vulnerability Added 27 Nov 2009 {{JVer|1.5}} NB: This could be an error in our database as the only one we could find was for wordpress.If anyone know of one for joomla please let us know..(poss joomlicious.com CM)&lt;br /&gt;
|[http://www.exploit-db.com] &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Extreme Google Calendar&#039;&#039;&#039;&lt;br /&gt;
|Summary: &#039;&#039;&#039;com_gcalendar 1.1.2&#039;&#039;&#039; (gcid) Remote SQL Injection Vulnerability&lt;br /&gt;
Remote SQL Injection were identified in Google Calendar Component [http://extensions.joomla.org/extensions/calendars-a-events/calendars/4188 Extension Link] Added 27 Nov 2009 &lt;br /&gt;
|[http://www.exploit-db.com reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;LyftenBloggie&#039;&#039;&#039;&lt;br /&gt;
| Summary: [http://www.lyften.com/products/lyftenbloggie.html LyftenBloggie] Component &amp;quot;author&amp;quot; SQL Injection Vulnerability LyftenBloggie 1.x Added 27 Nov 2009&lt;br /&gt;
|[http://secunia.com/advisories/product/28005/	 SA37499]&lt;br /&gt;
| [http://jeffchannell.com/Joomla/lyften-bloggie-sql-injection-fix.html Un official fix]. Developer fix not release at 30 Nov 09 &#039;&#039;&#039; [http://www.lyften.com/products/lyftenbloggie/extensions/download/id-20.html 1.0.4a (last update on Dec 28, 2009)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Sermon speaker&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://joomlacode.org/gf/project/sermon_speaker sermon speaker] sql vulnerability and password reset vulnerability version 3.2 and below&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://joomlacode.org/gf/project/sermon_speaker/forum/?action=ForumBrowse&amp;amp;forum_id=7897&amp;amp;_forum_action=ForumMessageBrowse&amp;amp;thread_id=15219 Developer fix] 30 Nov 2009&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://joomlacode.org/gf/project/musicgallery/ MusicGallery]&lt;br /&gt;
|Summary: [http://joomlacode.org/gf/project/musicgallery/ Component MusicGallery] SQL Injection Vulnerability 30 November {{JVer|1.5}}&lt;br /&gt;
|[[NIST:CVE-2009-4217 | CVE-2009-4217]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | [http://joomlacode.org/gf/project/musicgallery/ developer]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== December 2009 Compiled Reports ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Omilen Photo Gallery&#039;&#039;&#039;&lt;br /&gt;
|Summary: Directory traversal vulnerability in the [http://extensions.joomla.org/extensions/photos-&amp;amp;-images/photo-flash-gallery/6373/details Omilen Photo Gallery] (com_omphotogallery) component Beta 0.5 for Joomla! allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the controller parameter to index.php.&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4202 | CVE-2009-4202]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Seminar&#039;&#039;&#039;&lt;br /&gt;
|Summary: SQL injection vulnerability in the [http://seminar.vollmar.ws/ Seminar] (com_seminar) component 1.28 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a View_seminar action to index.php.&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4200 | CVE-2009-4200]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Mambo Resident&#039;&#039;&#039;&lt;br /&gt;
|Summary: Multiple SQL injection vulnerabilities in the Mambo Resident (aka Mos Res or com_mosres) component 1.0f for Mambo and Joomla!, when magic_quotes_gpc is disabled, allow remote attackers to execute arbitrary SQL commands via the (1) property_uid parameter in a viewproperty action to index.php and the (2) regID parameter in a showregion action to index.php. Mambo Resident component for v4.5.2 &#039;&#039;&#039;may only be for 1.0.xx versions of J!&#039;&#039;&#039;&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4199 | CVE-2009-4199]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.jomres.net/ Replacement Extension 08 dec 09]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;ProofReader&#039;&#039;&#039; &lt;br /&gt;
|Summary: Multiple cross-site scripting (XSS) vulnerabilities in index.php in the ProofReader (com_proofreader) component 1.0 RC9 and earlier for Joomla! allow remote attackers to inject arbitrary web script or HTML via the URI, which is not properly handled in (1) 404 or (2) error pages. Published: 12/02/2009 CVSS Severity: 4.3 (MEDIUM)&lt;br /&gt;
| [[NIST:CVE-2009-4157 | CVE-2009-4157]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Laoneo Google Calendar GCalendar&#039;&#039;&#039;&lt;br /&gt;
|Summary: SQL injection vulnerability in the [http://g4j.laoneo.net/content/extensions/download/cat_view/20-joomla-15x/21-gcalendar.html Google Calendar GCalendar] (com_gcalendar) component 1.1.2, 2.1.4, and possibly earlier versions for Joomla! allows remote attackers to execute arbitrary SQL commands via the gcid parameter. NOTE: some of these details are obtained from third party information. Published: 11/29/2009 CVSS Severity: 7.5 (HIGH) Note: There is already a listing for GCalendar 1.1.2&lt;br /&gt;
|[[NIST:CVE-2009-4099 | CVE-2009-4099]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | [http://g4j.laoneo.net/content/extensions/download/doc_details/28-gcalendar-suite-215.html Latest version GCalendar Suite 2.1.5]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;D4J eZine&#039;&#039;&#039;&lt;br /&gt;
|Summary: PHP remote file inclusion vulnerability in class/php/d4m_ajax_pagenav.php in the D4J eZine (com_ezine) component 2.1 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the GLOBALS mosConfig_absolute_path parameter. Published: 11/29/2009 CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|[[NIST:CVE-2009-4094 | CVE-2009-4094]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Quick News&#039;&#039;&#039;&lt;br /&gt;
| Summary: The Joomla [http://joomlacode.org/gf/project/quicknews/ Quick News component] suffers from a remote SQL injection vulnerability. added 1st Dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Joaktree component&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/genealogy/9842 Joaktree] Vulnerability : SQL injection/ added 1st Dec 09&lt;br /&gt;
|[http://securityreason.com/exploitalert/7508 7508]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://naastniels.nl/index.php/en/joaktree/downloads version 1.1 update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;mojoblog&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://www.joomlify.com/files/mojoblog/ MojoBlog] Multiple Remote File Include Vulnerability added 1st Dec 09 {{JVer|1.5}}&lt;br /&gt;
|[http://securityreason.com/exploitalert/7509 7509]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;YJ Whois&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/external-contents/domain-search/5774 YJ Whois] &#039;&#039;&#039;Low security risk&#039;&#039;&#039;,and fixesMalicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. Files affected is , modules/mod_yj_whois.php added 3 December 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.youjoomla.com/xss-security-patch-for-yj-whois.html Developer Notice and fix 03 dec 09]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;yt_color YOOOtheme&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.yootheme.com/ YT_color yootheme] Malicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. added 5 dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.yootheme.com/member-area/downloads/item/templates-15/xss-and-php-53-patches All members without an active membership can download the template patches here].&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;TP Whois&#039;&#039;&#039; &lt;br /&gt;
|summary: [http://www.templateplazza.com/view-details/tpwhois/183-component-tp-whois-for-joomla-1.5.x.html TP Whois ] Malicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. Added 3 december {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Refrence]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_job&#039;&#039;&#039;&lt;br /&gt;
|Summary: Component com_job ( showMoreUse) SQL injection vulnerability  Added 9th Dec&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/54626 Reference]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;JQuarks&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/contacts-and-feedback/quiz-a-surveys/10590 JQuarks] SQL injection vulnerability {{JVer|1.5}} added 8th dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | [http://www.iptechinside.com/labs/projects/list_files/jquarks Developer Update ]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Mamboleto Component 2.0 RC3&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.fernandosoares.com.br/index.php?option=com_docman&amp;amp;task=cat_view&amp;amp;gid=28&amp;amp;Itemid=28 Mamboleto Component 2.0 RC3]SQL injection vulnerability {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039; JS JOBS&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://www.joomshark.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=4&amp;amp;Itemid=8 JS JOBS] Joomla Component com_jsjobs 1.0.5.6 SQL Injection Vulnerabilities {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.joomsky.com/index.php?option=com_rokdownloads&amp;amp;view=folder&amp;amp;Itemid=3&amp;amp;id=2:components Developer update 1.0.5.7]&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;corePHP JPhoto&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/photos-a-images/photo-gallery/10365 &#039;corePHP&#039; JPhoto]SQL injection vulnerability {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://secunia.com/advisories/37676/ Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.corephp.com/blog/uber-fast-jphoto-security-release/ Developer Upgrade]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    | &#039;&#039;&#039;com_virtuemart&#039;&#039;&#039;&lt;br /&gt;
|Summary: &amp;quot;com_virtuemart&amp;quot; http://virtuemart.net/  &#039;&#039;&#039;Version : 1.0&#039;&#039;&#039; Vulnerability : SQL injection added Date : 07- dec -09 {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://virtuemart.net/ latest version]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039; Kide Shoutbox&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|Summary: The Kide Shoutbox (com_kide) component 0.4.6 for Joomla! does not properly perform authentication, which allows remote attackers to post messages with an arbitrary account name via an insertar action to index.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information. Added: December 08&lt;br /&gt;
|[[NIST:CVE-2009-4232 | CVE-2009-4232]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039; JoomPortfolio Component&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.joomplace.com/joomportfolio/joomportfolio.html JoomPortfolio] Input passed via the &amp;quot;secid&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_joomportfolio&amp;quot; and &amp;quot;task&amp;quot; is set to &amp;quot;showcat&amp;quot;) is not properly sanitised before being used in a SQL query. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code.The vulnerability is reported in version 1.0.0. Other versions may also be affected. Added: December 18 {{JVer|1.5}}&lt;br /&gt;
|[http://secunia.com/advisories/37838/ Reporting Site]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;City Portal (templates?)&#039;&#039;&#039;&lt;br /&gt;
|Summary:   City Portal Blind SQL Injection Vulnerability added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference] Possibly this [http://www.youjoomla.com/jclick-city-portal-joomla-template.html tempate]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;Event Manager&#039;&#039;&#039;&lt;br /&gt;
|Summary:  [http://www.jforjoomla.com/Joomla-Components/event-manager-15-component.html Event Manager] Blind SQL Injection Vulnerability EDB-ID: 10549&lt;br /&gt;
added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | com_zcalendar&lt;br /&gt;
|Summary:  com_zcalendar Blind SQL-injection Vulnerability&lt;br /&gt;
EDB-ID: 10548 added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;com_acmisc&#039;&#039;&#039;&lt;br /&gt;
|Summary:  com_acmisc SQL injection added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_digistore&#039;&#039;&#039;&lt;br /&gt;
|Summary:  com_digistore SQL injection EDB-ID: 10546 added: 2009-12-18  {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.ijoomla.com/ijoomla-digistore/ijoomla-digistore/ijoomla-digistore-change-log/ Update change log] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;com_jbook&#039;&#039;&#039;&lt;br /&gt;
|Summary:   com_jbook Blind SQL-injection EDB-ID: 10545 added: 2009-12-18 {{JVer|1.0}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;com_personel&#039;&#039;&#039;&lt;br /&gt;
|Summary: com_personel component for Joomla! is vulnerable to SQL injection.&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/54903 iss.net reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |  &#039;&#039;&#039;JEEMA Article Collection&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.forum.jeema.net/component/content/article/4-jeema-article-collection-component/13-about-jeema-article-collection.html JEEMA Article Collection] Input passed via the &amp;quot;catid&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_jeemaarticlecollection&amp;quot; and &amp;quot;view&amp;quot; is set to &amp;quot;longlook&amp;quot;) is not properly sanitised before being used in a SQL query. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code. version 1.0.0.1 {{JVer|1.5}} added 22 dec 09&lt;br /&gt;
| [http://secunia.com/advisories/37865/ secunia]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;    | [http://www.jeema.net/downloads/free-joomla-extensions/joomla-components/12-jeema-joomla-article-collection.htm fixed the same in the version v102.]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;HotBrackets Tournament Brackets &#039;&#039;&#039;&lt;br /&gt;
|Summary: The [http://extensions.joomla.org/extensions/sports-a-games/sports/10746 HotBrackets Tournament Brackets] component for Joomla! is prone to an SQL-injection vulnerability because it fails to sufficiently sanitize user-supplied data before using it in an SQL query. {{JVer|1.5}} added 22 dec &lt;br /&gt;
|[http://www.securityfocus.com/bid/37439/ Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;Car Manager&#039;&#039;&#039;&lt;br /&gt;
|Summary: http://webformatique.com/ com_carman Cross Site Scripting Vulnerability added 24 december 09{{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;Schools component&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;com_schools&#039; component for Joomla! is prone to an SQL-injection vulnerability because it fails to sufficiently sanitize user-supplied data before using it in an SQL query.&lt;br /&gt;
|[http://www.securityfocus.com/bid/37469 Reference] added 24 dec 09&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;webcamxp&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/communication/video-conference/4490 com_webcamxp] Cross Site Scripting Vulnerabilities  Last version 2008 {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;beeheard&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/contacts-and-feedback/testimonials-a-suggestions/10283 beeheard]  Blind SQL injection Vulnerability {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://beeheard.cmstactics.com/change-log Version 1.4.2] 04 Jan&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;jm-recommend&#039;&#039;&#039;&lt;br /&gt;
|jm-recommendCross Site Scripting Vulnerabilities. unable to locate on jed. {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | facileforms&lt;br /&gt;
| com_facileforms Cross Site Scripting Vulnerabilities. unable to locate on jed. Product considered retired.  {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;adagency&#039;&#039;&#039;&lt;br /&gt;
| [http://www.ijoomla.com/ijoomla-ad-agency/ijoomla-ad-agency/index/ adagency ]Vulnerabilities {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;com_intuit&#039;&#039;&#039;&lt;br /&gt;
|[http://www.san-diego-web-designer.com/new-file-download/item/root/aboutimage-igateway-for-joomla.html com_intuit]Local File Inclusion Vulnerability {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.securityfocus.com/bid/37494/discuss Retired]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;MemoryBook&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/calendars-a-events/birthdays-a-historic-events/10868 MemoryBook 1.2]  Multiple Vulnerabilities. requires: magic quotes OFF, user account {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;qpersonel&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/directory-a-documentation/thematic-directory/7049 qpersonel ] Cross Site Scripting Vulnerabilities {{JVer|1.0}}[[Image:http://extensions.joomla.org/images/jed/compat_15_legacy.png]] Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;opryknings point&#039;&#039;&#039; &lt;br /&gt;
|com_oprykningspoint_mc Cross Site Scripting Vulnerabilities {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;trabalhe conosco&#039;&#039;&#039;&lt;br /&gt;
|com_trabalhe_conosco Cross Site Scripting Vulnerabilities {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;DhForum&#039;&#039;&#039;&lt;br /&gt;
|com_dhforum SQL Injection Vulnerability. considered retired/EOL Dec. 27 {{JVer|1.0}}1.5 legacy&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;com_morfeoshow&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/photos-a-images/photo-gallery-add-ons/9810 morfeoshow] this was a false report &lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;  false report&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Run Digital Download rd-download&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7838 RD Download] Local File Disclosure Vulnerability  {{JVer|1.5}} Dec. 30 Version affected not disclosed.&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7838 Version 0.9 relased] &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== January 2010 Reported Vulnerable Extensions ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic or the [http://forum.joomla.org/viewforum.php?f=470 extensions] topic clearly marked with the first word in the title being &#039;&#039;Vulnerable&#039;&#039; where the security moderators or JSST team will respond. &lt;br /&gt;
&#039;&#039;This list is change protected, for updates or editing requests [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://docs.joomla.org/Vulnerable_Extensions_List Back To Top]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |JvideoDirect&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/multimedia/video-players-a-gallery/9501 Jvideodirect] SQLi Jan 29&lt;br /&gt;
|&lt;br /&gt;
|http://www.jvideodirect.com/ Update version 2.5&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JEvent search plugin&#039;&#039;&#039;&lt;br /&gt;
|Summary: JEvent search plugin for [http://extensions.joomla.org/extensions/calendars-a-events/events/95 JEvent] SQLi reported Jan 29&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.jevents.net/forum/viewtopic.php?f=17&amp;amp;t=3910#p15526 upgrade to 1.5.3b]&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;Kunena&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/communication/forum/7256/details kunena] re reported suffering SQLi in version 1.5.9 Jan 29 Confirmation Required &#039;&#039;&#039;Now found to be malicious&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://www.kunena.com/blog/19-developer-blog/51-kunena-157-security-release-now-available Versions 1.5.5 and below only]&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&#039;&#039;&#039;JE Quiz&#039;&#039;&#039;&lt;br /&gt;
|Summary : http://extensions.joomla.org/extensions/contacts-and-feedback/quiz-a-surveys/11212 JeQuiz SQLi reported 29 Jan&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;&amp;quot;   |&#039;&#039;&#039;idoblog&#039;&#039;&#039;&lt;br /&gt;
|summary: exploitable due to open file permissions. 28 Jan&lt;br /&gt;
|Private Notification&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://idojoomla.com/news.html build 35 released] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    |&#039;&#039;&#039;ccnewsletter&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://extensions.joomla.org/extensions/5112/details ccnewsletter Directory Traversal Vulnerability] Jan 28 &lt;br /&gt;
|Private Notification&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039; [http://www.chillcreations.com/en/blog/ccnewsletter-joomla-newsletter/ccnewsletter-106-security-release.html version 1.0.6 released 29 Jan]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   |&#039;&#039;&#039;Virtuemart 1.1.4&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/e-commerce/shopping-cart/129 virtuemart] Input var order_status_id is vulnerable to SQLi NB Requires Higher Level access before exploiting. Jan 27&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://forum.joomla.org/viewtopic.php?p=2027005#p2027005 developer patches]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JBDiary&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/calendars-a-events/events/11009 JBDiary] BLIND SQL Injection Vulnerabilities Jan 24 [http://www.jb-soft.nl/ http://www.jb-soft.nl/]&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | &#039;&#039;&#039; [http://www.jb-soft.nl/index.php?option=com_content&amp;amp;view=article&amp;amp;id=64 Developer Update 27 Jan]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JbPublishDownFp&#039;&#039;&#039;&lt;br /&gt;
|Sumary: [http://extensions.joomla.org/extensions/news-production/timed-content/6496 JbPublishDownFp] SQL Injection Vulnerability Jan 24 [http://www.jb-soft.nl http://www.jb-soft.nl]&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;  [http://www.jb-soft.nl/index.php?option=com_content&amp;amp;view=article&amp;amp;id=64 Developer Update Jan 27]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;com_casino&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/sports-a-games/tips-a-betts com_casino]&lt;br /&gt;
SQL Injection Vulnerabilities Jan24&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;Mochigames&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/search/mochigames com_Mochigames]&lt;br /&gt;
SQL Injection Vulnerabilities Jan24&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039; [http://www.yoflash.com/download.html mochigames_alpha052 Released]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;ContentBlogList&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/news-production/blog/10989 com_ContentBlogList] SQL Injection Vulnerability Jan 23&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |MailChimp for Joomla 1.5&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/bridges/mailing-a-newsletter-bridges/7836 MailChimp for Joomla 1.5]  jan 17&lt;br /&gt;
|Developer Statement&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;JoomlaXML&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/tools/design-tools/5020 JoomlaXML] malicious code insertion&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JVClouds3D SWF module&#039;&#039;&#039;&lt;br /&gt;
|[http://joomlapro.ru/3djvclouds JVClouds3D SWF module] Cross Site Scripting . jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55535 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JVClouds3D&#039;&#039;&#039;&lt;br /&gt;
|[http://joomlapro.ru/3djvclouds JVClouds3D module] Cross Site Scripting . jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55534 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;JA Showcase&#039;&#039;&#039;&lt;br /&gt;
|[http://www.joomlart.com/addons/components_and_modules/ja_showcase.html JA Showcase component] Directory Traversal jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55512 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;jprojects&#039;&#039;&#039;&lt;br /&gt;
|Summary:   Unknown Author com_j-projects Blind SQL Injection Vulnerability. Jan 10 detail update&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&#039;&#039;&#039;jEmbed-Embed Anything&#039;&#039;&#039;&lt;br /&gt;
|[http://www.joshprakash.com/index.php?option=com_docman&amp;amp;task=doc_details&amp;amp;gid=70 jEmbed-Embed Anything] A vulnerability has been discovered in the jEmbed-Embed Anything component for Joomla, which can be exploited by malicious people to conduct SQL injection attacks. Jan 10&lt;br /&gt;
|[http://secunia.com/advisories/38112 Secunia Advisory: SA38112] &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/3699/details Product considered retired]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    |&#039;&#039;&#039;perchagallery &#039;&#039;&#039;&lt;br /&gt;
|Summary: perchagallery  [http://extensions.joomla.org/extensions/photos-a-images/photo-gallery/10350 com_perchagallery] SQL Injection Vulnerability  Jan 7&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.percha.com/index.php?option=com_phocadownload&amp;amp;view=file&amp;amp;id=22:1.5&amp;amp;Itemid=20 Developer Update 1.5b]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0;  color:black&amp;quot;   |  &#039;&#039;&#039;CARTwebERP&#039;&#039;&#039;&lt;br /&gt;
|Summary:  [http://extensions.joomla.org/extensions/bridges/e-commerce-bridges/8753 CARTwebERP] Local File Inclusion Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://extensions.joomla.org/extensions/bridges/e-commerce-bridges/8753 1.56.76 (last update on Jan 11, 2010)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |   &#039;&#039;&#039;JoomlaBibleStudy&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/religion/3461 JoomlaBibleStudy] LFI Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | &#039;&#039;&#039;[http://joomlabiblestudy.org/invisible-downloads/category/3-component.html Developer reported update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;com_bfsurvey_basic and pro&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.tamlyncreative.com.au/software/ BFsurvey] SQL Injection Vulnerability ,LFI Vulnerability   Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.tamlyncreative.com.au/software/forum/index.php?topic=641.0 Developer Update announcement]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Alfresco&#039;&#039;&#039;&lt;br /&gt;
|Summary:  SQL Injection Vulnerability. Not believed to be Joomlatools extension Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;abbrev&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/directory-a-documentation/glossary-a-dictionary/4965 abbrev] Local File Inclusion Vulnerability Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;countries&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/development/6553 countries] SQL Injection Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |  &#039;&#039;&#039;Dedicated Component com_tpjobs&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.templateplazza.com/ tpjobs] SQL Injection Vulnerability unable to locate files probably template plaza  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;     | &#039;&#039;&#039;  [http://www.templateplazza.com/extensions-updates/tpjobs-component-update-v-1.1.html Developer Update] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Component com_doqment&#039;&#039;&#039;&lt;br /&gt;
|SQL Injection Vulnerability Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Component com_otzivi&#039;&#039;&#039; &lt;br /&gt;
|Blind SQL Injection Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;aprice&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://adeptweb.info/component/option,com_aprice/Itemid,109/ com_aprice] Component &#039;analog&#039; Parameter SQL Injection Vulnerability&lt;br /&gt;
|[http://www.securityfocus.com/bid/37575 Report]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;cartikads&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.cartikahosting.com com_cartikads] Remote File Upload Vulnerability &lt;br /&gt;
&#039;&#039;&#039;Mambo&#039;&#039;&#039; Open Source ads management component&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;Docman seller&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/e-commerce/subscriptions/5000 Document seller]  Input passed via the &amp;quot;id&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_dm_orders&amp;quot;, &amp;quot;task&amp;quot; is set to &amp;quot;order_form&amp;quot;, and &amp;quot;payment_method&amp;quot; is set to &amp;quot;Paypal&amp;quot;) is not properly sanitised before being used in SQL queries. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code.&lt;br /&gt;
|[http://secunia.com/advisories/38024/ secunia]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | [http://extensions.joomla.org/extensions/e-commerce/subscriptions/5000 Updated 10th Jan]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;ozio gallery&#039;&#039;&#039; &lt;br /&gt;
|summary: [http://extensions.joomla.org/extensions/photos-a-images/photo-flash-gallery/4883 Ozio Gallery2] SQLi eploit &lt;br /&gt;
|[http://www.viruslist.com/en/advisories/37974 Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   |[http://oziogallery.joomla.it/index.php?option=com_content&amp;amp;view=article&amp;amp;id=62%3Anuova-ozio-gallery-23-aggiornamento-di-sicurezza&amp;amp;catid=2%3Anotizie&amp;amp;Itemid=13&amp;amp;lang=en developer update Jan 11]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;RD-Autos Free&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/vertical-markets/vehicles/5458 RD-Autos Free ] This version is now commercial not free&lt;br /&gt;
|Private advisory to JED Jan 11&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039; Product Retired and replaced&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;DailyMeals&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/vertical-markets/food-a-beverage/4764 dailymeals] Local File Inclusion  Vulnerability  Jan 02&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;RD-Autos Pro&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/vertical-markets/vehicles/6357 RD Autos Pro]&lt;br /&gt;
|Private advisory to JED Jan 11&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;  Upgrade to  Latest version  be 2.0.2&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== New format Feed Starts Here ==&lt;br /&gt;
Please do not change your [http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions feed url], only the feed format has changed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== February, March, April, May 2010  Reported Vulnerable Extensions ==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic clearly marked with the first word in the title being &#039;&#039;Vulnerable Report&#039;&#039; where the security moderators or JSST team will respond. For a guide to the [http://docs.joomla.org/Vulnerable_Extensions_List_0210#Codes_used codes]&lt;br /&gt;
&lt;br /&gt;
[http://docs.joomla.org/Vulnerable_Extensions_List Previous Reports]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Date Added&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot; |&#039;&#039;&#039;Extension Update Link &amp;amp; Date&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   JE Poll  ==&lt;br /&gt;
|http://slideshow.joomlaextensions.co.in/ SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  MyCar   ==&lt;br /&gt;
|http://www.unisoft.me/extensions/ sqli ID&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  MediQnA   ==&lt;br /&gt;
|MediQnA LFI vulnerability version : v1.1&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   JE Job  ==&lt;br /&gt;
|http://joomlaextensions.co.in/ LFI SQLi&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  BF Quiz   ==&lt;br /&gt;
|SQL Injection Exploit Version(s) = 1.3.0&lt;br /&gt;
|&lt;br /&gt;
|[http://www.tamlyncreative.com.au/software/forum/index.php?topic=729.0 Developer update to BF Quiz v1.3.1]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Ozio Gallery 2  ==&lt;br /&gt;
|DT and open email relay&lt;br /&gt;
|280510&lt;br /&gt;
|[http://oziogallery.joomla.it/index.php?option=com_content&amp;amp;view=article&amp;amp;id=65:rilasciata-la-versione-ozio-gallery-25&amp;amp;catid=2:notizie&amp;amp;Itemid=13&amp;amp;lang=en Developer update and security release] 010610&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  SectionEx   ==&lt;br /&gt;
|Stack Ideas section Ex LFI&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  ActiveHelper LiveHelp    ==&lt;br /&gt;
|XSS in [http://extensions.joomla.org/extensions/communication/chat/12492 LiveHelp] &lt;br /&gt;
|200510&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
==  RS Comments   ==&lt;br /&gt;
|XSS Vulnerability &lt;br /&gt;
|&lt;br /&gt;
|http://www.rsjoomla.com/customer-support/documentations/96--general-overview-of-the-component/393-changelog.html - fix posted 210510&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  BCA RSS Feed   ==&lt;br /&gt;
|LFI and other vulnerabilities&lt;br /&gt;
|&lt;br /&gt;
|Since changed its name to NinjaRss &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
== SimpleDownload    ==&lt;br /&gt;
|http://extensions.joomla.org/extensions/directory-a-documentation/downloads/10717 various exploits&lt;br /&gt;
|160510&lt;br /&gt;
|updated version (version 0.9.6)&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
==  JE Quotation Form   ==&lt;br /&gt;
|http://joomlaextensions.co.in/free-download/doc_download/11-je-quotation-form.html  LFI&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  konsultasi   ==&lt;br /&gt;
|SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== Aardvertiser    ==&lt;br /&gt;
|Local File Inclusion Vulnerability	&lt;br /&gt;
http://extensions.joomla.org/extensions/ads-a-affiliates/classified-ads/9454&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Seber Cart    ==&lt;br /&gt;
|Local File Disclosure Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|[http://www.sebercart.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=158 Developer Update 140510]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  FDione Form Wizard   ==&lt;br /&gt;
|lfi vulnerability	&lt;br /&gt;
|140510 200510&lt;br /&gt;
|[dionesoft.com Update to Dione Form Wizard (v. 1.0.4)].&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Custom PHP Pages  ==&lt;br /&gt;
|http://extensions.joomla.org/extensions/edition/custom-code-in-content/5057 LFI Vulnerability		&lt;br /&gt;
|&lt;br /&gt;
|[fijiwebdesign.com Developer declares not vulnerable 140510]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Camp26 Visitor    ==&lt;br /&gt;
|RFI www.camp26.biz&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    iJoomla News Portal  ==&lt;br /&gt;
|RFI SID&lt;br /&gt;
|&lt;br /&gt;
|[http://www.ijoomla.com/forum/index.php/topic,4480.0.html Update to 1.5.10]&lt;br /&gt;
|-&lt;br /&gt;
|   |&lt;br /&gt;
&lt;br /&gt;
==  article Factory Manager   ==&lt;br /&gt;
|RFI &amp;amp; Input Validation Error http://www.thefactory.ro/shop/joomla-components/article-manager.html&lt;br /&gt;
|may 2010&lt;br /&gt;
|can not reproduce and unproven, http://www.thefactory.ro&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Table JX Component    ==&lt;br /&gt;
|http://www.toolsjx.com/ Table JX Component XSS&lt;br /&gt;
|060510 - update 130510&lt;br /&gt;
|Version: 1.5.5 considered unsafe&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   JE Property  ==&lt;br /&gt;
|JE Property Finder Upload Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   Noticeboard  ==&lt;br /&gt;
|Noticeboard for Joomla &amp;quot;controller&amp;quot; Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==SmartSite     ==&lt;br /&gt;
|SmartSite com_smartsite Local File Inclusion Vulnerability &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  ABC    ==&lt;br /&gt;
|ABC SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|reported as updated to JED 290410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  htmlcoderhelper graphics   ==&lt;br /&gt;
|htmlcoderhelper graphics v1.0.6 LFI Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
== Ultimate Portfolio    ==&lt;br /&gt;
|Ultimate Portfolio  Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  huruhelpdesk   ==&lt;br /&gt;
|http://www.huruhelpdesk.net sqli injection &lt;br /&gt;
|&lt;br /&gt;
|[http://www.huruhelpdesk.net/forums/8-announcements/392--sql-injection-reveals-user-md5-password-hash Reported fix]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Archery Scores   ==&lt;br /&gt;
| [http://lispeltuut.org/ Archery Scores (com_archeryscores) v1.0.6 LFI Vulnerability]&lt;br /&gt;
&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  ZiMB Manager   ==&lt;br /&gt;
|Joomla Component ZiMB Manager Local File Inclusion Vulnerability&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Matamko   ==&lt;br /&gt;
|Matamko Local File Inclusion Vulnerability&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Multiple Root   ==&lt;br /&gt;
|Multiple Root Local File Inclusion Vulnerability http://joomlacomponent.inetlanka.com/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Multiple Map   ==&lt;br /&gt;
|Multiple Map Local File Inclusion Vulnerability joomlacomponent.inetlanka.com&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   Contact Us Draw Root Map  ==&lt;br /&gt;
|Draw Root Map Local File Inclusion Vulnerability joomlacomponent.inetlanka.com&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  iF surfALERT   ==&lt;br /&gt;
|[http://www.inertialfate.za.net/ iF surfALERT] Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   GBU FACEBOOK  ==&lt;br /&gt;
|GBU FACEBOOK SQL injection vulnerability http://www.gbugrafici.nl/gbufacebook/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   jnewspaper  ==&lt;br /&gt;
|jnewspaper (cid) SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JTM Reseller   ==&lt;br /&gt;
|TM Reseller SQL injection vulnerability&lt;br /&gt;
|&lt;br /&gt;
|[http://jtmreseller.com/ Developer Update] &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  media Mall Factory   ==&lt;br /&gt;
|SQLi&lt;br /&gt;
|200410&lt;br /&gt;
| [http://www.thefactory.ro/contact-us/product-update-request.html Solution: update to 1.0.5] &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Gadget Factory  ==&lt;br /&gt;
|LFi&lt;br /&gt;
|200410&lt;br /&gt;
|[http://www.thefactory.ro/contact-us/product-update-request.html Solution: update to 1.5.1]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Deluxe Blog Factory   ==&lt;br /&gt;
|SQLi&lt;br /&gt;
|200410&lt;br /&gt;
|[http://www.thefactory.ro/contact-us/product-update-request.html update to 1.1.2]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
== MT Fire Eagle ==&lt;br /&gt;
&lt;br /&gt;
|LFI http://joomlacode.org/gf/project/jfireeagle/frs/ http://www.moto-treks.com&lt;br /&gt;
| 190410&lt;br /&gt;
| product considered retired and to be replaced by dev&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==  com properties   ==&lt;br /&gt;
| http://com-property.com/ SQL I&lt;br /&gt;
|&lt;br /&gt;
|[http://www.com-property.com/images/fbfiles/files/properties-20100413.txt developer announced fix]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Sweetykeeper   ==&lt;br /&gt;
|Sweetykeeper Local File Inclusion Vulnerability  http://www.joomlacorner.com/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  jvehicles   ==&lt;br /&gt;
|SQL Injection http://jvehicles.com&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  worldrates   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  cvmaker   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  advertising   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   horoscope  ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   webtv  ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  diary   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Multi-Venue Restaurant Menu Manager (MVRMM)  ==&lt;br /&gt;
|http://www.focusdev.co.uk/ &lt;br /&gt;
|120410 &lt;br /&gt;
||[http://extensions.joomla.org/extensions/vertical-markets/food-a-beverage/10015 Version 1.5.2 Stable Update 4]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Memory Book   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   TRAVELbook  ==&lt;br /&gt;
| http://www.demo-page.de/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
== AlphaUserPoints    ==&lt;br /&gt;
|&lt;br /&gt;
|[http://www.alphaplug.com/index.php/downloads.html?func=fileinfo&amp;amp;id=31 developer upgrade]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JprojectMan   ==&lt;br /&gt;
|LFI http://extensions.joomla.org/extensions/communities-a-groupware/project-a-task-management/5676&lt;br /&gt;
|110410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   CKForms  ==&lt;br /&gt;
|1.3.4 release - Important LFI security fix [http://joomlacode.org/gf/project/ckforms/news/?action=NewsThreadView&amp;amp;id=2814 ]&lt;br /&gt;
|07-04-10 &lt;br /&gt;
|[http://ckforms.cookex.eu/download/download.php upgrade]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   econtentsite  ==&lt;br /&gt;
|LFI&lt;br /&gt;
|040410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    Jvehicles ==&lt;br /&gt;
|ID&lt;br /&gt;
|040410&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  smestorage   ==&lt;br /&gt;
|[http://www.smestorage.com SMEStorage] LFI&lt;br /&gt;
&lt;br /&gt;
|Updated 29 March 10&lt;br /&gt;
|[http://gelembjuk.com/index.php?option=com_content&amp;amp;view=section&amp;amp;layout=blog&amp;amp;id=1&amp;amp;Itemid=55 developer fix] to 1.1&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JE Tooltip   ==&lt;br /&gt;
|[http://joomlaextensions.co.in/formcreator/ JE Tooltip] LFI&lt;br /&gt;
|Updated 23 March &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Gift Exchange Beta   ==&lt;br /&gt;
|[http://extensions.joomla.org/extensions/communities-a-groupware/membership/11680 Gift exchange] SQLi&lt;br /&gt;
|Updated 23 March &lt;br /&gt;
|[http://socialables.com/28-Jomsocial/Gift-Exchange/flypage.tpl.html upgrade beta 1.0.1]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  RokDownloads  ==&lt;br /&gt;
|[[http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7967 LFI]] &lt;br /&gt;
|15 march 2010&lt;br /&gt;
||upgrade to [http://www.rockettheme.com/extensions-updates/638-rokdownloads-10-released version 1.0]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    gigcalender   ==&lt;br /&gt;
&lt;br /&gt;
|SQLi [http://extensions.joomla.org/extensions/calendars-a-events/events/97)http://extensions.joomla.org/extensions/calendars-a-events/events/97 gigcalender]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    heza content   ==&lt;br /&gt;
|SQLi [http://extensions.joomla.org/extensions/structure-a-navigation/sections-a-categories/10427)http://extensions.joomla.org/extensions/structure-a-navigation/sections-a-categories/10427  heza content]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   juliaportfolio   ==&lt;br /&gt;
|LFI [http://extensions.joomla.org/extensions/directory-&amp;amp;-documentation/portfolio/8519/details juliaportfolio]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  Flash Magazine Deluxe   ==&lt;br /&gt;
|SQL Injection Vulnerability.&lt;br /&gt;
|Feb 25&lt;br /&gt;
|&#039;&#039;&#039;[http://www.joomplace.com/flash-magazine-deluxe/flash-magazine-deluxe-description.html Developer Update Version 2.0.11 09/03/10]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  SqlReport   ==&lt;br /&gt;
|Sqlreport has a sql/RFI exploit. awaiting confirmation on exact developer.&lt;br /&gt;
|Feb 20&lt;br /&gt;
|&#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  Scriptegrator   ==&lt;br /&gt;
|Core Design [http://www.greatjoomla.com/extensions/plugins/core-design-scriptegrator-plugin.html Scriptegrator] RFI exploit&lt;br /&gt;
|Feb 20&lt;br /&gt;
|[http://www.greatjoomla.com/extensions/plugins/core-design-scriptegrator-plugin.html Dev Upgrade announcement]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  AllVideos 3.1  ==&lt;br /&gt;
|&lt;br /&gt;
A vulnerability discovered in versions 3.0. and 3.1 of the plugin can be exploited by malicious people to disclose potentially sensitive information. For security reasons we will not be providing further details to safeguard users of affected versions. http://www.joomlaworks.gr/content/view/77/34/]|&lt;br /&gt;
|17 Feb&lt;br /&gt;
| [http://joomlaworks.googlecode.com/files/plg_jw_allvideos-v3.3_j1.5.zip Version 3.3 release 18th]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  RW Cards   ==&lt;br /&gt;
| [http://extensions.joomla.org/extensions/3430/details RW Card] LFI and ID exploit [http://www.weberr.de/ Dev Site]&lt;br /&gt;
|180210&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;  [http://www.weberr.de/index.php/forum.html?func=view&amp;amp;catid=5&amp;amp;id=1939&amp;amp;limit=6 developer update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
== Yelp ==&lt;br /&gt;
| SQLi - Unable to locate developer. Possibly a custom extension.&lt;br /&gt;
|Feb 01 &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  &#039;&#039;&#039;Autartitarot&#039;&#039;&#039;   ==&lt;br /&gt;
|Directory Traversal. Back end access required&lt;br /&gt;
| Feb 05&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039; Please upgrade to [http://www.autartica.be/en/autartitarot version 1.0.4]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  communitypolls   ==&lt;br /&gt;
|LFI - [http://www.corejoomla.com/ community polls] &lt;br /&gt;
|Feb 17&lt;br /&gt;
||upgrade to [http://www.corejoomla.com/ version 1.5.3]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This list is change protected, for updates or additions [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Codes used ==&lt;br /&gt;
SQLi - SQL injection [http://en.wikipedia.org/wiki/Code_injection#SQL_injection wikipedia]&lt;br /&gt;
&lt;br /&gt;
LFI - Local File Inclusion [http://www.scribd.com/doc/6498408/Remote-and-Local-File-Inclusion-Explained scribd]&lt;br /&gt;
&lt;br /&gt;
RFI - Remote file inclusion [http://en.wikipedia.org/wiki/Remote_File_Inclusion wikipedia]&lt;br /&gt;
&lt;br /&gt;
DT - Directory Traversal [http://en.wikipedia.org/wiki/Directory_traversal wikipedia]&lt;br /&gt;
&lt;br /&gt;
ID = Information Disclosure: account information or sensitive information publicly viewable&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Developers - How to get yourself removed from the VEL ==&lt;br /&gt;
&lt;br /&gt;
Resolved items will be removed after a suitable period and not on resolution&lt;br /&gt;
&lt;br /&gt;
Please solve the issues and:&lt;br /&gt;
&lt;br /&gt;
* If JED listed &lt;br /&gt;
Attach the new zip file at your actual JED listing.&lt;br /&gt;
&lt;br /&gt;
Change the extension version at JED listing.&lt;br /&gt;
&lt;br /&gt;
Contact the JED by mail back with a notice and ask them republish your listing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* If not JED listed. &lt;br /&gt;
Inform us by PM of the link to your resolution notice on your website.&lt;br /&gt;
&lt;br /&gt;
== Future Actions &amp;amp; WIP ==&lt;br /&gt;
&lt;br /&gt;
[http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions RSS feed] completed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to feed VEL direct to twitter&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
The RSS feed is currently fed by item entry order and not by date fixed. &lt;br /&gt;
List as discussed in  [[jtopic:455746]] by [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=67439 PhilD] editing by [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Category:Security]]&lt;br /&gt;
[[Category:Security_FAQ]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Hidabe</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived:Vulnerable_Extensions_List&amp;diff=28373</id>
		<title>Archived:Vulnerable Extensions List</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived:Vulnerable_Extensions_List&amp;diff=28373"/>
		<updated>2010-06-03T08:43:31Z</updated>

		<summary type="html">&lt;p&gt;Hidabe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
== Check and Report.  ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic or the [http://forum.joomla.org/viewforum.php?f=470 extensions] topic clearly marked with the first word in the title being &#039;&#039;Vulnerable&#039;&#039; where the security moderators or JSST team will respond. &lt;br /&gt;
This list is change protected, for updates or editing requests [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
*If you are seeing this page on any site other than [http://docs.joomla.org/Vulnerable_Extensions_List the Offical Joomla Documentation] you may be seeing an out of date version or experiencing [http://en.wikipedia.org/wiki/Plagiarism plagiary] and the links may not work properly&lt;br /&gt;
&lt;br /&gt;
== How to use this list ==&lt;br /&gt;
&#039;&#039;&#039;Items will be removed after a suitable period and not on resolution&#039;&#039;&#039;&lt;br /&gt;
All known vulnerable extensions are the listed in the first column. Any in &amp;lt;span style=&amp;quot;background:red; color:white&amp;quot;&amp;gt;a red box &amp;lt;/span&amp;gt;are high where we have not been given a fix for. Alert Advisory details in the centre column (the date is in American format mm/dd/yyyy). &lt;br /&gt;
The link to the advisory notice. &lt;br /&gt;
Finally a link to the notice about any &amp;lt;span style=&amp;quot;background:#cef2e0; color:black&amp;quot;&amp;gt;update with link&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;background:red; color:white&amp;quot;&amp;gt;&#039;&#039;&#039;Not Known&#039;&#039;&#039; &amp;lt;/span&amp;gt; where none is known.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This list is compiled from found information and may not be an up to date accurate list&#039;&#039;&#039; &#039;&#039;We do &#039;&#039;&#039;NOT&#039;&#039;&#039; promise to test or validate these reports. We do &#039;&#039;&#039;NOT&#039;&#039;&#039; guarantee the quality or effectiveness of any updates reported to us or listed here.&#039;&#039;&lt;br /&gt;
To sign up for the feed please [http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions follow this link]&lt;br /&gt;
&lt;br /&gt;
== November 2009 Compiled Vulnerability Reports. ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Items are not in any particular order.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_ajaxchat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: PHP remote file inclusion vulnerability in Fiji Web Design Ajax Chat (&#039;&#039;&#039;com_ajaxchat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the GLOBALS[mosConfig_absolute_path] parameter to tests/ajcuser.php.New version release December 22,2009&lt;br /&gt;
Published: october 28 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3822|CVE-2009-3822]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/communication/chat/10767 update v 1.1]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_booklibrary&#039;&#039;&#039;&lt;br /&gt;
|  PHP remote file inclusion vulnerability in doc/releasenote.php in the BookLibrary (&#039;&#039;&#039;com_booklibrary&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the mosConfig_absolute_path parameter, a different vector than [[NIST:CVE-2009-2637|CVE-2009-2637]]. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 10/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|  [[NIST:CVE-2009-3817|CVE-2009-3817]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;[http://ordasoft.com/Download/Joomla1.0-extensions/Joomla1.0-components/View-category.html developer site updates]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|   style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_foobla_suggestions&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the foobla Suggestions (&#039;&#039;&#039;com_foobla_suggestions&#039;&#039;&#039;) component 1.5.11 for Joomla! allows remote attackers to execute arbitrary SQL commands via the idea_id parameter to index.php.&lt;br /&gt;
Published: 10/11/2009&lt;br /&gt;
CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|  [[NIST:CVE-2009-3669|CVE-2009-3669]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://foobla.com/news/latest/fixed-foobla-suggestions-for-joomla-idea_id-sql-injection-vulnerability.html developer reported upgrade]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_djcatalog&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the DJ-Catalog (&#039;&#039;&#039;com_djcatalog&#039;&#039;&#039;) component for Joomla! allow remote attackers to execute arbitrary SQL commands via the (1) id parameter in a showItem action and (2) cid parameter in a show action to index.php.&lt;br /&gt;
Published: 10/11/2009&lt;br /&gt;
CVSS Severity: 6.8 (MEDIUM)&lt;br /&gt;
|  [[NIST:CVE-2009-3661|CVE-2009-3661]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_cbresumebuilder&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JoomlaCache CB Resume Builder (&#039;&#039;&#039;&#039;&#039;&#039;com_cbresumebuilder&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the group_id parameter in a group_members action to index.php.&lt;br /&gt;
Published: 10/09/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3645|CVE-2009-3645]] &lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://www.joomlacache.com/commercial-extensions/security-update.html Developer Update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;com_soundset&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Soundset (&#039;&#039;&#039;com_soundset&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the cat_id parameter to index.php.&lt;br /&gt;
Published: 10/09/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3644|CVE-2009-3644]]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;com_sportfusion&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Kinfusion SportFusion (&#039;&#039;&#039;com_sportfusion&#039;&#039;&#039;) component 0.2.2 through 0.2.3 for Joomla! allows remote attackers to execute arbitrary SQL commands via the cid[0] parameter in a teamdetail action to index.php.&lt;br /&gt;
Published: 09/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3491|CVE-2009-3491]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_icrmbasic&#039;&#039;&#039;&lt;br /&gt;
|  Summary: A certain interface in the iCRM Basic (&#039;&#039;&#039;com_icrmbasic&#039;&#039;&#039;) component 1.4.2.31 for Joomla! does not require administrative authentication, which has unspecified impact and remote attack vectors. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 09/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3481|CVE-2009-3481]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_mytube&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the MyRemote Video Gallery (&#039;&#039;&#039;com_mytube&#039;&#039;&#039;) component 1.0 Beta for Joomla! allows remote attackers to execute arbitrary SQL commands via the user_id parameter in a videos action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3446|CVE-2009-3446]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_fastball&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Fastball (&#039;&#039;&#039;com_fastball&#039;&#039;&#039;) component 1.1.0 through 1.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the league parameter to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3443|CVE-2009-3443]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://www.fastballproductions.com   latest version] 1.2.1 &lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_facebook&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JoomlaFacebook (&#039;&#039;&#039;com_facebook&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a student action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3438|CVE-2009-3438]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_tupinambis&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Tupinambis (&#039;&#039;&#039;com_tupinambis&#039;&#039;&#039;) component 1.0 for Mambo and Joomla! allows remote attackers to execute arbitrary SQL commands via the proyecto parameter in a verproyecto action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3434|CVE-2009-3434]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_idoblog&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the IDoBlog (&#039;&#039;&#039;com_idoblog&#039;&#039;&#039;) component 1.1 build 30 for Joomla! allows remote attackers to execute arbitrary SQL commands via the userid parameter in a profile action to index.php, a different vector than [[NIST:CVE-2008-2627|CVE-2008-2627]].&lt;br /&gt;
Published: 09/25/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3417|CVE-2009-3417]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |&#039;&#039;&#039;[http://idojoomla.com/download.html/ &#039;&#039;&#039;New Version v 1.1&#039;&#039;&#039; (build 32)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_hbssearch&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Cross-site scripting (&#039;&#039;&#039;XSS&#039;&#039;&#039;) vulnerability in the Hotel Booking Reservation System (&#039;&#039;&#039;aka HBS or com_hbssearch&#039;&#039;&#039;) component for Joomla! allows remote attackers to inject arbitrary web script or HTML via the adult parameter in a showhoteldetails action to index.php.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 4.3 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3368|CVE-2009-3368]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_hbssearch&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the Hotel Booking Reservation System (&#039;&#039;&#039;aka HBS or com_hbssearch&#039;&#039;&#039;) component for Joomla! allow remote attackers to execute arbitrary SQL commands via the (&#039;&#039;&#039;1&#039;&#039;&#039;) h_id, (&#039;&#039;&#039;2&#039;&#039;&#039;) id, and (&#039;&#039;&#039;3&#039;&#039;&#039;) rid parameters to longDesc.php, and the h_id parameter to (&#039;&#039;&#039;4&#039;&#039;&#039;) detail.php, (&#039;&#039;&#039;5&#039;&#039;&#039;) detail1.php, (&#039;&#039;&#039;6&#039;&#039;&#039;) detail2.php, (&#039;&#039;&#039;7&#039;&#039;&#039;) detail3.php, (&#039;&#039;&#039;8&#039;&#039;&#039;) detail4.php, (&#039;&#039;&#039;9&#039;&#039;&#039;) detail5.php, (&#039;&#039;&#039;10&#039;&#039;&#039;) detail6.php, (&#039;&#039;&#039;11&#039;&#039;&#039;) detail7.php, and (&#039;&#039;&#039;12&#039;&#039;&#039;) detail8.php, different vectors than [[NIST:CVE-2008-5865|CVE-2008-5865]], [[NIST:CVE-2008-5874|CVE-2008-5874]], and [[NIST:CVE-2008-5875|CVE-2008-5875]].&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3357|CVE-2009-3357]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_alphauserpoints&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in frontend/assets/ajax/checkusername.php in the AlphaUserPoints (&#039;&#039;&#039;com_alphauserpoints&#039;&#039;&#039;) component 1.5.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the username2points parameter.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3342|CVE-2009-3342]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://www.alphaplug.com/index.php/news/142-alphauserpoints-153-released.html 1.5.3]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;TurtuShout&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the TurtuShout component 0.11 for Joomla! allows remote attackers to execute arbitrary SQL commands via the Name field.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3335|CVE-2009-3335]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jinc&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Lhacky! Extensions Cave Joomla! Integrated Newsletters Component (&#039;&#039;&#039;aka JINC or com_jinc&#039;&#039;&#039;) component 0.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the newsid parameter in a messages action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3334|CVE-2009-3334]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;com_jbudgetsmagic&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JBudgetsMagic (&#039;&#039;&#039;com_jbudgetsmagic&#039;&#039;&#039;) component 0.3.2 through 0.4.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the bid parameter in a mybudget action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3332|CVE-2009-3332]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;[http://sopinet.com/jbudgetsmagic/index.php?option=com_remository&amp;amp;Itemid=5&amp;amp;lang=en Update to 0.4.1]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_surveymanager&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Focusplus Developments Survey Manager (&#039;&#039;&#039;com_surveymanager&#039;&#039;&#039;) component 1.5.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the stype parameter in an editsurvey action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3325|CVE-2009-3325]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_album&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Directory traversal vulnerability in the Roland Breedveld Album (&#039;&#039;&#039;com_album&#039;&#039;&#039;) component 1.14 for Joomla! allows remote attackers to access arbitrary directories and have unspecified other impact via a .. (&#039;&#039;&#039;dot dot&#039;&#039;&#039;) in the target parameter to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3318|CVE-2009-3318]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;com_jreservation&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the [http://extensions.joomla.org/extensions/vertical-markets/booking-a-reservation/9798 JReservation] (&#039;&#039;&#039;com_jreservation&#039;&#039;&#039;) component 1.0 and 1.5 for Joomla! allows remote attackers to execute arbitrary SQL commands via the pid parameter in a propertycpanel action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3316|CVE-2009-3316]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |  [http://www.jforjoomla.com Updated 28th] Jan fixed 13th Nov&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;IXXO Cart Standalone&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in IXXO Cart Standalone before 3.9.6.1, and the IXXO Cart component for Joomla! 1.0.x, allows remote attackers to execute arbitrary SQL commands via the parent parameter.&lt;br /&gt;
Published: 09/16/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3215|CVE-2009-3215]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_digifolio&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the DigiFolio (&#039;&#039;&#039;com_digifolio&#039;&#039;&#039;) component 1.52 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a project action to index.php.&lt;br /&gt;
Published: 09/15/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3193|CVE-2009-3193]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_aclassf&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Cross-site scripting (&#039;&#039;&#039;XSS&#039;&#039;&#039;) vulnerability in &#039;&#039;&#039;gmap.php&#039;&#039;&#039; in the Almond Classifieds (&#039;&#039;&#039;com_aclassf&#039;&#039;&#039;) component 7.5 for Joomla! allows remote attackers to inject arbitrary web script or HTML via the addr parameter.&lt;br /&gt;
Published: 09/10/2009&lt;br /&gt;
CVSS Severity: 4.3 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3155|CVE-2009-3155]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;   | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_aclassf&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Almond Classifieds (&#039;&#039;&#039;com_aclassf&#039;&#039;&#039;) component 7.5 for Joomla! allows remote attackers to execute arbitrary SQL commands via the replid parameter in a manw_repl add_form action to index.php, a different vector than [[NIST:CVE-2009-2567|CVE-2009-2567]].&lt;br /&gt;
Published: 09/10/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3154|CVE-2009-3154]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://www.almondsoft.com/alcl.html Developer latest component]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jabode&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in Jabode horoscope extension (&#039;&#039;&#039;com_jabode&#039;&#039;&#039;) for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a sign task to index.php.&lt;br /&gt;
Published: 09/08/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
|  [[NIST:CVE-2008-7169|CVE-2008-7169]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_gameserver&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Game Server (&#039;&#039;&#039;com_gameserver&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a gamepanel action to index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3063|CVE-2009-3063]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_artportal&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Artetics.com Art Portal (&#039;&#039;&#039;com_artportal&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the portalid parameter to index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3054|CVE-2009-3054]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;com_agora&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Directory traversal vulnerability in the Agora (&#039;&#039;&#039;com_agora&#039;&#039;&#039;) component 3.0.0b for Joomla! allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the action parameter to the avatars page, reachable through index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 6.8 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3053|CVE-2009-3053]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |&#039;&#039;&#039;[http://jvitals.com/index.php?option=com_rokdownloads&amp;amp;view=file&amp;amp;Itemid=108&amp;amp;id=282:agora-3-0 3.0.7]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_simpleshop&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Simple Shop Galore (&#039;&#039;&#039;com_simpleshop&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the section parameter in a section action to index.php, a different vulnerability than [[NIST:CVE-2008-2568|CVE-2008-2568]]. NOTE: this issue was disclosed by an unreliable researcher, so the details might be incorrect.&lt;br /&gt;
Published: 08/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-7033|CVE-2008-7033]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_groups&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Permis (&#039;&#039;&#039;com_groups&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a list action to index.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 08/17/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-2789|CVE-2009-2789]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;com_content&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the content component (&#039;&#039;&#039;com_content&#039;&#039;&#039;) 1.0.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the Itemid parameter in a blogcategory action to index.php.&lt;br /&gt;
Published: 08/10/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6923|CVE-2008-6923]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://developer.joomla.org/security/news/305-20091103-core-front-end-editor-issue-.html Resolution]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the last parameter to getChatRoom.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6883|CVE-2008-6883]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to use the xmlhttp.php script as an open HTTP proxy to hide network scanning activities or scan internal networks via a GET request with a full URL in the query string.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6882|CVE-2008-6882]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allow remote attackers to execute arbitrary SQL commands via the last parameter to (&#039;&#039;&#039;1&#039;&#039;&#039;) getChat.php, (&#039;&#039;&#039;2&#039;&#039;&#039;) getChatRoom.php, and (&#039;&#039;&#039;3&#039;&#039;&#039;) getSavedChatRooms.php.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6881|CVE-2008-6881]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;JUMI&#039;&#039;&#039;&lt;br /&gt;
|  There is a backdoor in JUMI that installs itself when JUMI is installed on your web site. It sends your credentials to a website, and sets up a back door for remote code execution.&lt;br /&gt;
Please remove JUMI2.0.5 immediately. &lt;br /&gt;
It will be simple enough to remove the compromised code from this download, but you need to do &lt;br /&gt;
a full security audit on your site as well as you have been compromised. Added November 2009&lt;br /&gt;
|  [http://code.google.com/p/jumi/updates/list Report]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://code.google.com/p/jumi/updates/list Jumi Update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_photoblog&#039;&#039;&#039;&lt;br /&gt;
|  Input Validation Error Added November 2009&lt;br /&gt;
|  [http://www.securityfocus.com/bid/36809/ 36809]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://webguerilla.net/downloads/3-components-for-joomla-1 webguerilla Photoblog alpha 3b]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jshop&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JShop (&#039;&#039;&#039;com_jshop&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the pid parameter in a product action to index.php.&lt;br /&gt;
Published: 11/02/2009&lt;br /&gt;
CVSS Severity: 7.5 &#039;&#039;&#039;(HIGH)&#039;&#039;&#039; &lt;br /&gt;
|  [[NIST:CVE-2009-3835|CVE-2009-3835]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;BF Survey Pro&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the &#039;&#039;&#039;BF Survey Pro&#039;&#039;&#039; v1.2.5 or lower  (fixed in version 1.2.6). &#039;&#039;&#039;BF Survey Basic v1.0&#039;&#039;&#039; (fixed in version 1.1). &#039;&#039;&#039;BF Quiz v1.1.1&#039;&#039;&#039; (fixed in version 1.2 or greater) Added November 2009&lt;br /&gt;
|  [http://www.tamlyncreative.com.au/software/forum/index.php?topic=357.0 tamlyncreative.com.au]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://www.tamlyncreative.com.au/software/forum/index.php?topic=357.0 update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;Joo!BB 0.9.1 &#039;&#039;&#039;&lt;br /&gt;
|  Summary: Persistent XSS/MySQL Injection vulnerabilities in Joo!BB 0.9.1 Added November 2009&lt;br /&gt;
|  [http://www.joobb.org/community/board/topic/700-MultipleXSSSQLInjectionVulnerabilities.html joob.org]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.joobb.org/downloads/components.html update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;sh404sef &#039;&#039;&#039;&lt;br /&gt;
|  Summary: sh404sef URI XSS Vulnerability  Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/sh404sef-uri-xss-vulnerability.html jeffchannell.com]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://extensions.siliana.com/en/2009060876/sh404SEF-and-url-rewriting/Interim-release-of-sh404sef-for-Joomla-1.5.x.html update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;AWD Wall 1.5&#039;&#039;&#039; &lt;br /&gt;
|  Summary &#039;&#039;&#039;AWD Wall 1.5&#039;&#039;&#039; Blind SQL Injection Vulnerability.The Joomla component AWD Wall 1.5 suffers from an SQL Injection vulnerability in its handling of the &#039;cbuser&#039; parameter.Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/awd-wall-15-blind-sql-injection-vulnerability.html Notice]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;[http://www.awdsolution.com/template_demo/testsite/index.php?option=com_content&amp;amp;view=article&amp;amp;id=48&amp;amp;Itemid=72 developer update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;EasyBook 2.0.0rc4&#039;&#039;&#039;&lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;EasyBook 2.0.0rc4&#039;&#039;&#039; suffers from multiple persistent XSS vulnerabilities. One seems fairly critical, while the others would take some incredible creativity to actively exploit. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/easybook-200rc4-multiple-xss-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;F!BB 1.5.96&#039;&#039;&#039; &lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;F!BB 1.5.96 RC&#039;&#039;&#039; suffers from multiple persistent XSS vulnerabilities, as well SQL Injection in its user search feature. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/fbb-1596-rc-multiple-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Testimonial Ku 2.0 Admin Panel&#039;&#039;&#039;&lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;Testimonial Ku 2.0&#039;&#039;&#039; is vulnerable to persistent XSS in the administrator panel. A malicious user can submit a testimonial containing &amp;lt;script&amp;gt; tags with absolutely no quotes and inject that script into the administrator panel through any of the available inputs except &amp;quot;email&amp;quot;. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/testimonial-ku-20-admin-panel-persistent-xss.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;MS Comment 0.8.0b&#039;&#039;&#039;&lt;br /&gt;
|  Summary &#039;&#039;&#039;MS Comment 0.8.0b for Joomla&#039;&#039;&#039;, a commenting plugin, suffers from an multiple vulnerabilities. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/ms-comment-080b-multiple-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;!JoomlaComment 4.0 beta1&#039;&#039;&#039;&lt;br /&gt;
|  Summary: &#039;&#039;&#039;!JoomlaComment 4.0 beta1&#039;&#039;&#039;, a commenting plugin, suffers from multiple XSS vulnerabilities. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/joomlacomment-40-beta1-multiple-xss-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://compojoom.com/blog/8-news/121-joomlacomment-40-rc1-released Developer Notice 4.0 rc1]&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;WebAmoeba Ticket System 3.0.0&#039;&#039;&#039;&lt;br /&gt;
|  Summary:  &#039;&#039;&#039;WebAmoeba Ticket System 3.0.0&#039;&#039;&#039;, a Joomla help desk component. The vulnerability is with the BBCode library used to parse BBCode tags, as it does not strip javascript: urls from [url] tags. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/webamoeba-ticket-system-300-bbcode-xss.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;Kunena 1.5.x&#039;&#039;&#039; &lt;br /&gt;
|Summary: This is an important security release and users are urged to update immediately. Five security issues and an Internet Explorer 8 table bug have been resolved in this release. This release also contains many other important bug fixes. Added 18 November 2009&lt;br /&gt;
|[http://www.kunena.com/blog/19-developer-blog/51-kunena-157-security-release-now-available Advisory]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://www.kunena.com/blog/19-developer-blog/52-kunena-158-service-release-now-available Latest 1.5.8 Version]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_siirler&#039;&#039;&#039;&lt;br /&gt;
|  Summary:  SQL injection vulnerability in the &#039;&#039;&#039;Q-Proje Siirler Bileseni (com_siirler)&#039;&#039;&#039; component 1.2 RC for Joomla! allows remote attackers to execute arbitrary SQL commands via the sid parameter in an sdetay action to index.php. Added 18 November 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3972 | CVE-2009-3972]]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;jTips (com_jtips)&#039;&#039;&#039;&lt;br /&gt;
|SUmmary:SQL injection vulnerability in the &#039;&#039;&#039;jTips (com_jtips)&#039;&#039;&#039; component 1.0.7 and 1.0.9 for Joomla! allows remote attackers to execute arbitrary SQL commands via the season parameter in a ladder action to index.php. Added 18 November 2009&lt;br /&gt;
| [[NIST:CVE-2009-3971 |CVE-2009-3971]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;NinjaMonials&#039;&#039;&#039;&lt;br /&gt;
| Summary: SQL injection vulnerability in the &#039;&#039;&#039;NinjaMonials (com_ninjacentral)&#039;&#039;&#039; component 1.1.0 for &#039;&#039;&#039;Joomla 1.0.x&#039;&#039;&#039; ! allows remote attackers to execute arbitrary SQL commands via the testimID parameter in a display action to index.php. Added 18 November 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3964 | CVE-2009-3964]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;  [http://ninjaforge.com/index.php?option=com_ninjacentral&amp;amp;page=show_package&amp;amp;id=14&amp;amp;Itemid=235 developer patch Ver 1.2]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;webee 1.1.1 &amp;amp;1.2&#039;&#039;&#039;&lt;br /&gt;
|Summary: &#039;&#039;&#039;webee 1.1.1,&#039;&#039;&#039; a Joomla commenting plugin, suffers from multiple vulnerabilities. &#039;&#039;&#039;webee has been updated to 1.2&#039;&#039;&#039; as of 12 November 2009 and&#039;&#039;&#039; still suffers&#039;&#039;&#039; from SQL Injection. XSS was not tested in 1.2. Added 19 November 2009&lt;br /&gt;
| [http://jeffchannell.com/Joomla/webee-111-multiple-vulnerabilities.html jeffchannell.com]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039; [http://extensions.joomla.org/extensions/contacts-and-feedback/articles-comments/10155 developer update ver2.0]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;iF Portfolio Nexus&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;&#039;&#039;iF Portfolio Nexus component for Joomla!&#039;&#039;&#039; is vulnerable to SQL injection. A remote attacker could send specially-crafted SQL statements using the id parameter, which could allow the attacker to view, add, modify or delete information in the back-end database. Nov 18, 2009&lt;br /&gt;
|[http://secunia.com/advisories/37408/ secunia.com 37408/]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.inertialfate.za.net/help/forums/topic?id=10&amp;amp;p=3#p172 iF Portfolio Nexus v1.1.1 released]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JoomClip&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;&#039;&#039;JoomClip component for Joomla!&#039;&#039;&#039; is vulnerable to SQL injection. A remote attacker could send specially-crafted SQL statements to the index.php script using the cat parameter, which could allow the attacker to view, add, modify or delete information in the back-end database.  Nov 18, 2009&lt;br /&gt;
|[http://secunia.com/advisories/37400/ secunia.com 37400/]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Joomla XML&#039;&#039;&#039;&lt;br /&gt;
|Summary: Joomla! before 1.5.15 allows remote attackers to read an extension&#039;s XML file, and thereby obtain the extension&#039;s version number, via a direct request.&lt;br /&gt;
Published: 11/16/2009&lt;br /&gt;
|[[NIST:CVE-2009-3946 | CVE-2009-3946]] &lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://developer.joomla.org/security/news/306-20091103-core-xml-file-read-issue.html Resolution]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Mygallery Remote SQL Injection Vulnerability&#039;&#039;&#039; &lt;br /&gt;
|Summary: Joomla Component mygallery ( farbinform_krell) Remote SQL Injection Vulnerability Added 27 Nov 2009 {{JVer|1.5}} NB: This could be an error in our database as the only one we could find was for wordpress.If anyone know of one for joomla please let us know..(poss joomlicious.com CM)&lt;br /&gt;
|[http://www.exploit-db.com] &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Extreme Google Calendar&#039;&#039;&#039;&lt;br /&gt;
|Summary: &#039;&#039;&#039;com_gcalendar 1.1.2&#039;&#039;&#039; (gcid) Remote SQL Injection Vulnerability&lt;br /&gt;
Remote SQL Injection were identified in Google Calendar Component [http://extensions.joomla.org/extensions/calendars-a-events/calendars/4188 Extension Link] Added 27 Nov 2009 &lt;br /&gt;
|[http://www.exploit-db.com reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;LyftenBloggie&#039;&#039;&#039;&lt;br /&gt;
| Summary: [http://www.lyften.com/products/lyftenbloggie.html LyftenBloggie] Component &amp;quot;author&amp;quot; SQL Injection Vulnerability LyftenBloggie 1.x Added 27 Nov 2009&lt;br /&gt;
|[http://secunia.com/advisories/product/28005/	 SA37499]&lt;br /&gt;
| [http://jeffchannell.com/Joomla/lyften-bloggie-sql-injection-fix.html Un official fix]. Developer fix not release at 30 Nov 09 &#039;&#039;&#039; [http://www.lyften.com/products/lyftenbloggie/extensions/download/id-20.html 1.0.4a (last update on Dec 28, 2009)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Sermon speaker&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://joomlacode.org/gf/project/sermon_speaker sermon speaker] sql vulnerability and password reset vulnerability version 3.2 and below&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://joomlacode.org/gf/project/sermon_speaker/forum/?action=ForumBrowse&amp;amp;forum_id=7897&amp;amp;_forum_action=ForumMessageBrowse&amp;amp;thread_id=15219 Developer fix] 30 Nov 2009&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://joomlacode.org/gf/project/musicgallery/ MusicGallery]&lt;br /&gt;
|Summary: [http://joomlacode.org/gf/project/musicgallery/ Component MusicGallery] SQL Injection Vulnerability 30 November {{JVer|1.5}}&lt;br /&gt;
|[[NIST:CVE-2009-4217 | CVE-2009-4217]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | [http://joomlacode.org/gf/project/musicgallery/ developer]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== December 2009 Compiled Reports ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Omilen Photo Gallery&#039;&#039;&#039;&lt;br /&gt;
|Summary: Directory traversal vulnerability in the [http://extensions.joomla.org/extensions/photos-&amp;amp;-images/photo-flash-gallery/6373/details Omilen Photo Gallery] (com_omphotogallery) component Beta 0.5 for Joomla! allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the controller parameter to index.php.&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4202 | CVE-2009-4202]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Seminar&#039;&#039;&#039;&lt;br /&gt;
|Summary: SQL injection vulnerability in the [http://seminar.vollmar.ws/ Seminar] (com_seminar) component 1.28 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a View_seminar action to index.php.&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4200 | CVE-2009-4200]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Mambo Resident&#039;&#039;&#039;&lt;br /&gt;
|Summary: Multiple SQL injection vulnerabilities in the Mambo Resident (aka Mos Res or com_mosres) component 1.0f for Mambo and Joomla!, when magic_quotes_gpc is disabled, allow remote attackers to execute arbitrary SQL commands via the (1) property_uid parameter in a viewproperty action to index.php and the (2) regID parameter in a showregion action to index.php. Mambo Resident component for v4.5.2 &#039;&#039;&#039;may only be for 1.0.xx versions of J!&#039;&#039;&#039;&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4199 | CVE-2009-4199]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.jomres.net/ Replacement Extension 08 dec 09]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;ProofReader&#039;&#039;&#039; &lt;br /&gt;
|Summary: Multiple cross-site scripting (XSS) vulnerabilities in index.php in the ProofReader (com_proofreader) component 1.0 RC9 and earlier for Joomla! allow remote attackers to inject arbitrary web script or HTML via the URI, which is not properly handled in (1) 404 or (2) error pages. Published: 12/02/2009 CVSS Severity: 4.3 (MEDIUM)&lt;br /&gt;
| [[NIST:CVE-2009-4157 | CVE-2009-4157]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Laoneo Google Calendar GCalendar&#039;&#039;&#039;&lt;br /&gt;
|Summary: SQL injection vulnerability in the [http://g4j.laoneo.net/content/extensions/download/cat_view/20-joomla-15x/21-gcalendar.html Google Calendar GCalendar] (com_gcalendar) component 1.1.2, 2.1.4, and possibly earlier versions for Joomla! allows remote attackers to execute arbitrary SQL commands via the gcid parameter. NOTE: some of these details are obtained from third party information. Published: 11/29/2009 CVSS Severity: 7.5 (HIGH) Note: There is already a listing for GCalendar 1.1.2&lt;br /&gt;
|[[NIST:CVE-2009-4099 | CVE-2009-4099]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | [http://g4j.laoneo.net/content/extensions/download/doc_details/28-gcalendar-suite-215.html Latest version GCalendar Suite 2.1.5]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;D4J eZine&#039;&#039;&#039;&lt;br /&gt;
|Summary: PHP remote file inclusion vulnerability in class/php/d4m_ajax_pagenav.php in the D4J eZine (com_ezine) component 2.1 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the GLOBALS mosConfig_absolute_path parameter. Published: 11/29/2009 CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|[[NIST:CVE-2009-4094 | CVE-2009-4094]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Quick News&#039;&#039;&#039;&lt;br /&gt;
| Summary: The Joomla [http://joomlacode.org/gf/project/quicknews/ Quick News component] suffers from a remote SQL injection vulnerability. added 1st Dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Joaktree component&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/genealogy/9842 Joaktree] Vulnerability : SQL injection/ added 1st Dec 09&lt;br /&gt;
|[http://securityreason.com/exploitalert/7508 7508]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://naastniels.nl/index.php/en/joaktree/downloads version 1.1 update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;mojoblog&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://www.joomlify.com/files/mojoblog/ MojoBlog] Multiple Remote File Include Vulnerability added 1st Dec 09 {{JVer|1.5}}&lt;br /&gt;
|[http://securityreason.com/exploitalert/7509 7509]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;YJ Whois&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/external-contents/domain-search/5774 YJ Whois] &#039;&#039;&#039;Low security risk&#039;&#039;&#039;,and fixesMalicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. Files affected is , modules/mod_yj_whois.php added 3 December 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.youjoomla.com/xss-security-patch-for-yj-whois.html Developer Notice and fix 03 dec 09]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;yt_color YOOOtheme&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.yootheme.com/ YT_color yootheme] Malicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. added 5 dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.yootheme.com/member-area/downloads/item/templates-15/xss-and-php-53-patches All members without an active membership can download the template patches here].&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;TP Whois&#039;&#039;&#039; &lt;br /&gt;
|summary: [http://www.templateplazza.com/view-details/tpwhois/183-component-tp-whois-for-joomla-1.5.x.html TP Whois ] Malicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. Added 3 december {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Refrence]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_job&#039;&#039;&#039;&lt;br /&gt;
|Summary: Component com_job ( showMoreUse) SQL injection vulnerability  Added 9th Dec&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/54626 Reference]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;JQuarks&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/contacts-and-feedback/quiz-a-surveys/10590 JQuarks] SQL injection vulnerability {{JVer|1.5}} added 8th dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | [http://www.iptechinside.com/labs/projects/list_files/jquarks Developer Update ]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Mamboleto Component 2.0 RC3&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.fernandosoares.com.br/index.php?option=com_docman&amp;amp;task=cat_view&amp;amp;gid=28&amp;amp;Itemid=28 Mamboleto Component 2.0 RC3]SQL injection vulnerability {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039; JS JOBS&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://www.joomshark.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=4&amp;amp;Itemid=8 JS JOBS] Joomla Component com_jsjobs 1.0.5.6 SQL Injection Vulnerabilities {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.joomsky.com/index.php?option=com_rokdownloads&amp;amp;view=folder&amp;amp;Itemid=3&amp;amp;id=2:components Developer update 1.0.5.7]&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;corePHP JPhoto&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/photos-a-images/photo-gallery/10365 &#039;corePHP&#039; JPhoto]SQL injection vulnerability {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://secunia.com/advisories/37676/ Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.corephp.com/blog/uber-fast-jphoto-security-release/ Developer Upgrade]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    | &#039;&#039;&#039;com_virtuemart&#039;&#039;&#039;&lt;br /&gt;
|Summary: &amp;quot;com_virtuemart&amp;quot; http://virtuemart.net/  &#039;&#039;&#039;Version : 1.0&#039;&#039;&#039; Vulnerability : SQL injection added Date : 07- dec -09 {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://virtuemart.net/ latest version]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039; Kide Shoutbox&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|Summary: The Kide Shoutbox (com_kide) component 0.4.6 for Joomla! does not properly perform authentication, which allows remote attackers to post messages with an arbitrary account name via an insertar action to index.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information. Added: December 08&lt;br /&gt;
|[[NIST:CVE-2009-4232 | CVE-2009-4232]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039; JoomPortfolio Component&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.joomplace.com/joomportfolio/joomportfolio.html JoomPortfolio] Input passed via the &amp;quot;secid&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_joomportfolio&amp;quot; and &amp;quot;task&amp;quot; is set to &amp;quot;showcat&amp;quot;) is not properly sanitised before being used in a SQL query. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code.The vulnerability is reported in version 1.0.0. Other versions may also be affected. Added: December 18 {{JVer|1.5}}&lt;br /&gt;
|[http://secunia.com/advisories/37838/ Reporting Site]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;City Portal (templates?)&#039;&#039;&#039;&lt;br /&gt;
|Summary:   City Portal Blind SQL Injection Vulnerability added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference] Possibly this [http://www.youjoomla.com/jclick-city-portal-joomla-template.html tempate]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;Event Manager&#039;&#039;&#039;&lt;br /&gt;
|Summary:  [http://www.jforjoomla.com/Joomla-Components/event-manager-15-component.html Event Manager] Blind SQL Injection Vulnerability EDB-ID: 10549&lt;br /&gt;
added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | com_zcalendar&lt;br /&gt;
|Summary:  com_zcalendar Blind SQL-injection Vulnerability&lt;br /&gt;
EDB-ID: 10548 added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;com_acmisc&#039;&#039;&#039;&lt;br /&gt;
|Summary:  com_acmisc SQL injection added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_digistore&#039;&#039;&#039;&lt;br /&gt;
|Summary:  com_digistore SQL injection EDB-ID: 10546 added: 2009-12-18  {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.ijoomla.com/ijoomla-digistore/ijoomla-digistore/ijoomla-digistore-change-log/ Update change log] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;com_jbook&#039;&#039;&#039;&lt;br /&gt;
|Summary:   com_jbook Blind SQL-injection EDB-ID: 10545 added: 2009-12-18 {{JVer|1.0}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;com_personel&#039;&#039;&#039;&lt;br /&gt;
|Summary: com_personel component for Joomla! is vulnerable to SQL injection.&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/54903 iss.net reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |  &#039;&#039;&#039;JEEMA Article Collection&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.forum.jeema.net/component/content/article/4-jeema-article-collection-component/13-about-jeema-article-collection.html JEEMA Article Collection] Input passed via the &amp;quot;catid&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_jeemaarticlecollection&amp;quot; and &amp;quot;view&amp;quot; is set to &amp;quot;longlook&amp;quot;) is not properly sanitised before being used in a SQL query. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code. version 1.0.0.1 {{JVer|1.5}} added 22 dec 09&lt;br /&gt;
| [http://secunia.com/advisories/37865/ secunia]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;    | [http://www.jeema.net/downloads/free-joomla-extensions/joomla-components/12-jeema-joomla-article-collection.htm fixed the same in the version v102.]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;HotBrackets Tournament Brackets &#039;&#039;&#039;&lt;br /&gt;
|Summary: The [http://extensions.joomla.org/extensions/sports-a-games/sports/10746 HotBrackets Tournament Brackets] component for Joomla! is prone to an SQL-injection vulnerability because it fails to sufficiently sanitize user-supplied data before using it in an SQL query. {{JVer|1.5}} added 22 dec &lt;br /&gt;
|[http://www.securityfocus.com/bid/37439/ Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;Car Manager&#039;&#039;&#039;&lt;br /&gt;
|Summary: http://webformatique.com/ com_carman Cross Site Scripting Vulnerability added 24 december 09{{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;Schools component&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;com_schools&#039; component for Joomla! is prone to an SQL-injection vulnerability because it fails to sufficiently sanitize user-supplied data before using it in an SQL query.&lt;br /&gt;
|[http://www.securityfocus.com/bid/37469 Reference] added 24 dec 09&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;webcamxp&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/communication/video-conference/4490 com_webcamxp] Cross Site Scripting Vulnerabilities  Last version 2008 {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;beeheard&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/contacts-and-feedback/testimonials-a-suggestions/10283 beeheard]  Blind SQL injection Vulnerability {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://beeheard.cmstactics.com/change-log Version 1.4.2] 04 Jan&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;jm-recommend&#039;&#039;&#039;&lt;br /&gt;
|jm-recommendCross Site Scripting Vulnerabilities. unable to locate on jed. {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | facileforms&lt;br /&gt;
| com_facileforms Cross Site Scripting Vulnerabilities. unable to locate on jed. Product considered retired.  {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;adagency&#039;&#039;&#039;&lt;br /&gt;
| [http://www.ijoomla.com/ijoomla-ad-agency/ijoomla-ad-agency/index/ adagency ]Vulnerabilities {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;com_intuit&#039;&#039;&#039;&lt;br /&gt;
|[http://www.san-diego-web-designer.com/new-file-download/item/root/aboutimage-igateway-for-joomla.html com_intuit]Local File Inclusion Vulnerability {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.securityfocus.com/bid/37494/discuss Retired]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;MemoryBook&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/calendars-a-events/birthdays-a-historic-events/10868 MemoryBook 1.2]  Multiple Vulnerabilities. requires: magic quotes OFF, user account {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;qpersonel&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/directory-a-documentation/thematic-directory/7049 qpersonel ] Cross Site Scripting Vulnerabilities {{JVer|1.0}}[[Image:http://extensions.joomla.org/images/jed/compat_15_legacy.png]] Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;opryknings point&#039;&#039;&#039; &lt;br /&gt;
|com_oprykningspoint_mc Cross Site Scripting Vulnerabilities {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;trabalhe conosco&#039;&#039;&#039;&lt;br /&gt;
|com_trabalhe_conosco Cross Site Scripting Vulnerabilities {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;DhForum&#039;&#039;&#039;&lt;br /&gt;
|com_dhforum SQL Injection Vulnerability. considered retired/EOL Dec. 27 {{JVer|1.0}}1.5 legacy&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;com_morfeoshow&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/photos-a-images/photo-gallery-add-ons/9810 morfeoshow] this was a false report &lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;  false report&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Run Digital Download rd-download&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7838 RD Download] Local File Disclosure Vulnerability  {{JVer|1.5}} Dec. 30 Version affected not disclosed.&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7838 Version 0.9 relased] &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== January 2010 Reported Vulnerable Extensions ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic or the [http://forum.joomla.org/viewforum.php?f=470 extensions] topic clearly marked with the first word in the title being &#039;&#039;Vulnerable&#039;&#039; where the security moderators or JSST team will respond. &lt;br /&gt;
&#039;&#039;This list is change protected, for updates or editing requests [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://docs.joomla.org/Vulnerable_Extensions_List Back To Top]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |JvideoDirect&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/multimedia/video-players-a-gallery/9501 Jvideodirect] SQLi Jan 29&lt;br /&gt;
|&lt;br /&gt;
|http://www.jvideodirect.com/ Update version 2.5&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JEvent search plugin&#039;&#039;&#039;&lt;br /&gt;
|Summary: JEvent search plugin for [http://extensions.joomla.org/extensions/calendars-a-events/events/95 JEvent] SQLi reported Jan 29&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.jevents.net/forum/viewtopic.php?f=17&amp;amp;t=3910#p15526 upgrade to 1.5.3b]&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;Kunena&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/communication/forum/7256/details kunena] re reported suffering SQLi in version 1.5.9 Jan 29 Confirmation Required &#039;&#039;&#039;Now found to be malicious&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://www.kunena.com/blog/19-developer-blog/51-kunena-157-security-release-now-available Versions 1.5.5 and below only]&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&#039;&#039;&#039;JE Quiz&#039;&#039;&#039;&lt;br /&gt;
|Summary : http://extensions.joomla.org/extensions/contacts-and-feedback/quiz-a-surveys/11212 JeQuiz SQLi reported 29 Jan&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;&amp;quot;   |&#039;&#039;&#039;idoblog&#039;&#039;&#039;&lt;br /&gt;
|summary: exploitable due to open file permissions. 28 Jan&lt;br /&gt;
|Private Notification&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://idojoomla.com/news.html build 35 released] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    |&#039;&#039;&#039;ccnewsletter&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://extensions.joomla.org/extensions/5112/details ccnewsletter Directory Traversal Vulnerability] Jan 28 &lt;br /&gt;
|Private Notification&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039; [http://www.chillcreations.com/en/blog/ccnewsletter-joomla-newsletter/ccnewsletter-106-security-release.html version 1.0.6 released 29 Jan]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   |&#039;&#039;&#039;Virtuemart 1.1.4&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/e-commerce/shopping-cart/129 virtuemart] Input var order_status_id is vulnerable to SQLi NB Requires Higher Level access before exploiting. Jan 27&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://forum.joomla.org/viewtopic.php?p=2027005#p2027005 developer patches]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JBDiary&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/calendars-a-events/events/11009 JBDiary] BLIND SQL Injection Vulnerabilities Jan 24 [http://www.jb-soft.nl/ http://www.jb-soft.nl/]&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | &#039;&#039;&#039; [http://www.jb-soft.nl/index.php?option=com_content&amp;amp;view=article&amp;amp;id=64 Developer Update 27 Jan]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JbPublishDownFp&#039;&#039;&#039;&lt;br /&gt;
|Sumary: [http://extensions.joomla.org/extensions/news-production/timed-content/6496 JbPublishDownFp] SQL Injection Vulnerability Jan 24 [http://www.jb-soft.nl http://www.jb-soft.nl]&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;  [http://www.jb-soft.nl/index.php?option=com_content&amp;amp;view=article&amp;amp;id=64 Developer Update Jan 27]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;com_casino&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/sports-a-games/tips-a-betts com_casino]&lt;br /&gt;
SQL Injection Vulnerabilities Jan24&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;Mochigames&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/search/mochigames com_Mochigames]&lt;br /&gt;
SQL Injection Vulnerabilities Jan24&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039; [http://www.yoflash.com/download.html mochigames_alpha052 Released]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;ContentBlogList&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/news-production/blog/10989 com_ContentBlogList] SQL Injection Vulnerability Jan 23&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |MailChimp for Joomla 1.5&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/bridges/mailing-a-newsletter-bridges/7836 MailChimp for Joomla 1.5]  jan 17&lt;br /&gt;
|Developer Statement&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;JoomlaXML&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/tools/design-tools/5020 JoomlaXML] malicious code insertion&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JVClouds3D SWF module&#039;&#039;&#039;&lt;br /&gt;
|[http://joomlapro.ru/3djvclouds JVClouds3D SWF module] Cross Site Scripting . jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55535 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JVClouds3D&#039;&#039;&#039;&lt;br /&gt;
|[http://joomlapro.ru/3djvclouds JVClouds3D module] Cross Site Scripting . jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55534 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;JA Showcase&#039;&#039;&#039;&lt;br /&gt;
|[http://www.joomlart.com/addons/components_and_modules/ja_showcase.html JA Showcase component] Directory Traversal jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55512 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;jprojects&#039;&#039;&#039;&lt;br /&gt;
|Summary:   Unknown Author com_j-projects Blind SQL Injection Vulnerability. Jan 10 detail update&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&#039;&#039;&#039;jEmbed-Embed Anything&#039;&#039;&#039;&lt;br /&gt;
|[http://www.joshprakash.com/index.php?option=com_docman&amp;amp;task=doc_details&amp;amp;gid=70 jEmbed-Embed Anything] A vulnerability has been discovered in the jEmbed-Embed Anything component for Joomla, which can be exploited by malicious people to conduct SQL injection attacks. Jan 10&lt;br /&gt;
|[http://secunia.com/advisories/38112 Secunia Advisory: SA38112] &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/3699/details Product considered retired]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    |&#039;&#039;&#039;perchagallery &#039;&#039;&#039;&lt;br /&gt;
|Summary: perchagallery  [http://extensions.joomla.org/extensions/photos-a-images/photo-gallery/10350 com_perchagallery] SQL Injection Vulnerability  Jan 7&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.percha.com/index.php?option=com_phocadownload&amp;amp;view=file&amp;amp;id=22:1.5&amp;amp;Itemid=20 Developer Update 1.5b]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0;  color:black&amp;quot;   |  &#039;&#039;&#039;CARTwebERP&#039;&#039;&#039;&lt;br /&gt;
|Summary:  [http://extensions.joomla.org/extensions/bridges/e-commerce-bridges/8753 CARTwebERP] Local File Inclusion Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://extensions.joomla.org/extensions/bridges/e-commerce-bridges/8753 1.56.76 (last update on Jan 11, 2010)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |   &#039;&#039;&#039;JoomlaBibleStudy&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/religion/3461 JoomlaBibleStudy] LFI Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | &#039;&#039;&#039;[http://joomlabiblestudy.org/invisible-downloads/category/3-component.html Developer reported update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;com_bfsurvey_basic and pro&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.tamlyncreative.com.au/software/ BFsurvey] SQL Injection Vulnerability ,LFI Vulnerability   Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.tamlyncreative.com.au/software/forum/index.php?topic=641.0 Developer Update announcement]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Alfresco&#039;&#039;&#039;&lt;br /&gt;
|Summary:  SQL Injection Vulnerability. Not believed to be Joomlatools extension Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;abbrev&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/directory-a-documentation/glossary-a-dictionary/4965 abbrev] Local File Inclusion Vulnerability Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;countries&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/development/6553 countries] SQL Injection Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |  &#039;&#039;&#039;Dedicated Component com_tpjobs&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.templateplazza.com/ tpjobs] SQL Injection Vulnerability unable to locate files probably template plaza  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;     | &#039;&#039;&#039;  [http://www.templateplazza.com/extensions-updates/tpjobs-component-update-v-1.1.html Developer Update] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Component com_doqment&#039;&#039;&#039;&lt;br /&gt;
|SQL Injection Vulnerability Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Component com_otzivi&#039;&#039;&#039; &lt;br /&gt;
|Blind SQL Injection Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;aprice&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://adeptweb.info/component/option,com_aprice/Itemid,109/ com_aprice] Component &#039;analog&#039; Parameter SQL Injection Vulnerability&lt;br /&gt;
|[http://www.securityfocus.com/bid/37575 Report]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;cartikads&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.cartikahosting.com com_cartikads] Remote File Upload Vulnerability &lt;br /&gt;
&#039;&#039;&#039;Mambo&#039;&#039;&#039; Open Source ads management component&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;Docman seller&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/e-commerce/subscriptions/5000 Document seller]  Input passed via the &amp;quot;id&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_dm_orders&amp;quot;, &amp;quot;task&amp;quot; is set to &amp;quot;order_form&amp;quot;, and &amp;quot;payment_method&amp;quot; is set to &amp;quot;Paypal&amp;quot;) is not properly sanitised before being used in SQL queries. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code.&lt;br /&gt;
|[http://secunia.com/advisories/38024/ secunia]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | [http://extensions.joomla.org/extensions/e-commerce/subscriptions/5000 Updated 10th Jan]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;ozio gallery&#039;&#039;&#039; &lt;br /&gt;
|summary: [http://extensions.joomla.org/extensions/photos-a-images/photo-flash-gallery/4883 Ozio Gallery2] SQLi eploit &lt;br /&gt;
|[http://www.viruslist.com/en/advisories/37974 Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   |[http://oziogallery.joomla.it/index.php?option=com_content&amp;amp;view=article&amp;amp;id=62%3Anuova-ozio-gallery-23-aggiornamento-di-sicurezza&amp;amp;catid=2%3Anotizie&amp;amp;Itemid=13&amp;amp;lang=en developer update Jan 11]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;RD-Autos Free&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/vertical-markets/vehicles/5458 RD-Autos Free ] This version is now commercial not free&lt;br /&gt;
|Private advisory to JED Jan 11&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039; Product Retired and replaced&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;DailyMeals&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/vertical-markets/food-a-beverage/4764 dailymeals] Local File Inclusion  Vulnerability  Jan 02&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;RD-Autos Pro&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/vertical-markets/vehicles/6357 RD Autos Pro]&lt;br /&gt;
|Private advisory to JED Jan 11&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;  Upgrade to  Latest version  be 2.0.2&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== New format Feed Starts Here ==&lt;br /&gt;
Please do not change your [http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions feed url], only the feed format has changed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== February, March, April, May 2010  Reported Vulnerable Extensions ==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic clearly marked with the first word in the title being &#039;&#039;Vulnerable Report&#039;&#039; where the security moderators or JSST team will respond. For a guide to the [http://docs.joomla.org/Vulnerable_Extensions_List_0210#Codes_used codes]&lt;br /&gt;
&lt;br /&gt;
[http://docs.joomla.org/Vulnerable_Extensions_List Previous Reports]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Date Added&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot; |&#039;&#039;&#039;Extension Update Link &amp;amp; Date&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   JE Poll  ==&lt;br /&gt;
|http://slideshow.joomlaextensions.co.in/ SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  MyCar   ==&lt;br /&gt;
|http://www.unisoft.me/extensions/ sqli ID&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  MediQnA   ==&lt;br /&gt;
|MediQnA LFI vulnerability version : v1.1&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   JE Job  ==&lt;br /&gt;
|http://joomlaextensions.co.in/ LFI SQLi&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  BF Quiz   ==&lt;br /&gt;
|SQL Injection Exploit Version(s) = 1.3.0&lt;br /&gt;
|&lt;br /&gt;
|[http://www.tamlyncreative.com.au/software/forum/index.php?topic=729.0 Developer update to BF Quiz v1.3.1]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Ozio Gallery 2  ==&lt;br /&gt;
|DT and open email relay&lt;br /&gt;
|280510&lt;br /&gt;
|[http://oziogallery.joomla.it/index.php?option=com_content&amp;amp;view=article&amp;amp;id=65:rilasciata-la-versione-ozio-gallery-25&amp;amp;catid=2:notizie&amp;amp;Itemid=13&amp;amp;lang=en Developer update and security release] 010610&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  SectionEx   ==&lt;br /&gt;
|Stack Ideas section Ex LFI&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  ActiveHelper LiveHelp    ==&lt;br /&gt;
|XSS in [http://extensions.joomla.org/extensions/communication/chat/12492 LiveHelp] &lt;br /&gt;
|200510&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
==  RS Comments   ==&lt;br /&gt;
|XSS Vulnerability &lt;br /&gt;
|&lt;br /&gt;
|http://www.rsjoomla.com/customer-support/documentations/96--general-overview-of-the-component/393-changelog.html - fix posted 210510&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  BCA RSS Feed   ==&lt;br /&gt;
|LFI and other vulnerabilities&lt;br /&gt;
|&lt;br /&gt;
|Since changed its name to NinjaRss &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
== SimpleDownload    ==&lt;br /&gt;
|http://extensions.joomla.org/extensions/directory-a-documentation/downloads/10717 various exploits&lt;br /&gt;
|160510&lt;br /&gt;
|updated version (version 0.9.6)&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
==  JE Quotation Form   ==&lt;br /&gt;
|http://joomlaextensions.co.in/free-download/doc_download/11-je-quotation-form.html  LFI&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  konsultasi   ==&lt;br /&gt;
|SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== Aardvertiser    ==&lt;br /&gt;
|Local File Inclusion Vulnerability	&lt;br /&gt;
http://extensions.joomla.org/extensions/ads-a-affiliates/classified-ads/9454&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Seber Cart    ==&lt;br /&gt;
|Local File Disclosure Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|[http://www.sebercart.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=158 Developer Update 140510]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  FDione Form Wizard   ==&lt;br /&gt;
|lfi vulnerability	&lt;br /&gt;
|140510 200510&lt;br /&gt;
|[dionesoft.com Update to Dione Form Wizard (v. 1.0.4)].&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Custom PHP Pages  ==&lt;br /&gt;
|http://extensions.joomla.org/extensions/edition/custom-code-in-content/5057 LFI Vulnerability		&lt;br /&gt;
|&lt;br /&gt;
|[fijiwebdesign.com Developer declares not vulnerable 140510]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Camp26 Visitor    ==&lt;br /&gt;
|RFI www.camp26.biz&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    iJoomla News Portal  ==&lt;br /&gt;
|RFI SID&lt;br /&gt;
|&lt;br /&gt;
|[http://www.ijoomla.com/forum/index.php/topic,4480.0.html Update to 1.5.10]&lt;br /&gt;
|-&lt;br /&gt;
|   |&lt;br /&gt;
&lt;br /&gt;
==  article Factory Manager   ==&lt;br /&gt;
|RFI &amp;amp; Input Validation Error http://www.thefactory.ro/shop/joomla-components/article-manager.html&lt;br /&gt;
|may 2010&lt;br /&gt;
|can not reproduce and unproven, http://www.thefactory.ro&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Table JX Component    ==&lt;br /&gt;
|http://www.toolsjx.com/ Table JX Component XSS&lt;br /&gt;
|060510 - update 130510&lt;br /&gt;
|Version: 1.5.5 considered unsafe&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   JE Property  ==&lt;br /&gt;
|JE Property Finder Upload Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   Noticeboard  ==&lt;br /&gt;
|Noticeboard for Joomla &amp;quot;controller&amp;quot; Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==SmartSite     ==&lt;br /&gt;
|SmartSite com_smartsite Local File Inclusion Vulnerability &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  ABC    ==&lt;br /&gt;
|ABC SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|reported as updated to JED 290410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  htmlcoderhelper graphics   ==&lt;br /&gt;
|htmlcoderhelper graphics v1.0.6 LFI Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
== Ultimate Portfolio    ==&lt;br /&gt;
|Ultimate Portfolio  Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  huruhelpdesk   ==&lt;br /&gt;
|http://www.huruhelpdesk.net sqli injection &lt;br /&gt;
|&lt;br /&gt;
|[http://www.huruhelpdesk.net/forums/8-announcements/392--sql-injection-reveals-user-md5-password-hash Reported fix]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Archery Scores   ==&lt;br /&gt;
| [http://lispeltuut.org/ Archery Scores (com_archeryscores) v1.0.6 LFI Vulnerability]&lt;br /&gt;
&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  ZiMB Manager   ==&lt;br /&gt;
|Joomla Component ZiMB Manager Local File Inclusion Vulnerability&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Matamko   ==&lt;br /&gt;
|Matamko Local File Inclusion Vulnerability&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Multiple Root   ==&lt;br /&gt;
|Multiple Root Local File Inclusion Vulnerability http://joomlacomponent.inetlanka.com/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Multiple Map   ==&lt;br /&gt;
|Multiple Map Local File Inclusion Vulnerability joomlacomponent.inetlanka.com&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   Contact Us Draw Root Map  ==&lt;br /&gt;
|Draw Root Map Local File Inclusion Vulnerability joomlacomponent.inetlanka.com&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  iF surfALERT   ==&lt;br /&gt;
|[http://www.inertialfate.za.net/ iF surfALERT] Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   GBU FACEBOOK  ==&lt;br /&gt;
|GBU FACEBOOK SQL injection vulnerability http://www.gbugrafici.nl/gbufacebook/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   jnewspaper  ==&lt;br /&gt;
|jnewspaper (cid) SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JTM Reseller   ==&lt;br /&gt;
|TM Reseller SQL injection vulnerability&lt;br /&gt;
|&lt;br /&gt;
|[http://jtmreseller.com/ Developer Update] &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  media Mall Factory   ==&lt;br /&gt;
|SQLi&lt;br /&gt;
|200410&lt;br /&gt;
| [http://www.thefactory.ro/contact-us/product-update-request.html Solution: update to 1.0.5] &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Gadget Factory  ==&lt;br /&gt;
|LFi&lt;br /&gt;
|200410&lt;br /&gt;
|[http://www.thefactory.ro/contact-us/product-update-request.html Solution: update to 1.5.1]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Deluxe Blog Factory   ==&lt;br /&gt;
|SQLi&lt;br /&gt;
|200410&lt;br /&gt;
|[http://www.thefactory.ro/contact-us/product-update-request.html update to 1.1.2]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
== MT Fire Eagle ==&lt;br /&gt;
&lt;br /&gt;
|LFI http://joomlacode.org/gf/project/jfireeagle/frs/ http://www.moto-treks.com&lt;br /&gt;
| 190410&lt;br /&gt;
| product considered retired and to be replaced by dev&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==  com properties   ==&lt;br /&gt;
| http://com-property.com/ SQL I&lt;br /&gt;
|&lt;br /&gt;
|[http://www.com-property.com/images/fbfiles/files/properties-20100413.txt developer announced fix]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Sweetykeeper   ==&lt;br /&gt;
|Sweetykeeper Local File Inclusion Vulnerability  http://www.joomlacorner.com/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  jvehicles   ==&lt;br /&gt;
|SQL Injection http://jvehicles.com&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  worldrates   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  cvmaker   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  advertising   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   horoscope  ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   webtv  ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  diary   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Multi-Venue Restaurant Menu Manager (MVRMM)  ==&lt;br /&gt;
|http://www.focusdev.co.uk/ &lt;br /&gt;
|120410 &lt;br /&gt;
||[http://extensions.joomla.org/extensions/vertical-markets/food-a-beverage/10015 Version 1.5.2 Stable Update 4]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Memory Book   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   TRAVELbook  ==&lt;br /&gt;
| http://www.demo-page.de/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
== AlphaUserPoints    ==&lt;br /&gt;
|&lt;br /&gt;
|[http://www.alphaplug.com/index.php/downloads.html?func=fileinfo&amp;amp;id=31 developer upgrade]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JprojectMan   ==&lt;br /&gt;
|LFI http://extensions.joomla.org/extensions/communities-a-groupware/project-a-task-management/5676&lt;br /&gt;
|110410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   CKForms  ==&lt;br /&gt;
|1.3.4 release - Important LFI security fix [http://joomlacode.org/gf/project/ckforms/news/?action=NewsThreadView&amp;amp;id=2814 ]&lt;br /&gt;
|07-04-10 &lt;br /&gt;
|[http://ckforms.cookex.eu/download/download.php upgrade]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   econtentsite  ==&lt;br /&gt;
|LFI&lt;br /&gt;
|040410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    Jvehicles ==&lt;br /&gt;
|ID&lt;br /&gt;
|040410&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  smestorage   ==&lt;br /&gt;
|[http://www.smestorage.com SMEStorage] LFI&lt;br /&gt;
&lt;br /&gt;
|Updated 29 March 10&lt;br /&gt;
|[http://gelembjuk.com/index.php?option=com_content&amp;amp;view=section&amp;amp;layout=blog&amp;amp;id=1&amp;amp;Itemid=55 developer fix] to 1.1&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JE Tooltip   ==&lt;br /&gt;
|[http://joomlaextensions.co.in/formcreator/ JE Tooltip] LFI&lt;br /&gt;
|Updated 23 March &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Gift Exchange Beta   ==&lt;br /&gt;
|[http://extensions.joomla.org/extensions/communities-a-groupware/membership/11680 Gift exchange] SQLi&lt;br /&gt;
|Updated 23 March &lt;br /&gt;
|[http://socialables.com/28-Jomsocial/Gift-Exchange/flypage.tpl.html upgrade beta 1.0.1]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  RokDownloads  ==&lt;br /&gt;
|[[http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7967 LFI]] &lt;br /&gt;
|15 march 2010&lt;br /&gt;
||upgrade to [http://www.rockettheme.com/extensions-updates/638-rokdownloads-10-released version 1.0]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    gigcalender   ==&lt;br /&gt;
&lt;br /&gt;
|SQLi [http://extensions.joomla.org/extensions/calendars-a-events/events/97)http://extensions.joomla.org/extensions/calendars-a-events/events/97 gigcalender]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    heza content   ==&lt;br /&gt;
|SQLi [http://extensions.joomla.org/extensions/structure-a-navigation/sections-a-categories/10427)http://extensions.joomla.org/extensions/structure-a-navigation/sections-a-categories/10427  heza content]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   juliaportfolio   ==&lt;br /&gt;
|LFI [http://extensions.joomla.org/extensions/directory-&amp;amp;-documentation/portfolio/8519/details juliaportfolio]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  Flash Magazine Deluxe   ==&lt;br /&gt;
|SQL Injection Vulnerability.&lt;br /&gt;
|Feb 25&lt;br /&gt;
|&#039;&#039;&#039;[http://www.joomplace.com/flash-magazine-deluxe/flash-magazine-deluxe-description.html Developer Update Version 2.0.11 09/03/10]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  SqlReport   ==&lt;br /&gt;
|Sqlreport has a sql/RFI exploit. awaiting confirmation on exact developer.&lt;br /&gt;
|Feb 20&lt;br /&gt;
|&#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  Scriptegrator   ==&lt;br /&gt;
|Core Design [http://www.greatjoomla.com/extensions/plugins/core-design-scriptegrator-plugin.html Scriptegrator] RFI exploit&lt;br /&gt;
|Feb 20&lt;br /&gt;
|[http://www.greatjoomla.com/extensions/plugins/core-design-scriptegrator-plugin.html Dev Upgrade announcement]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  AllVideos 3.1  ==&lt;br /&gt;
|&lt;br /&gt;
A vulnerability discovered in versions 3.0. and 3.1 of the plugin can be exploited by malicious people to disclose potentially sensitive information. For security reasons we will not be providing further details to safeguard users of affected versions. http://www.joomlaworks.gr/content/view/77/34/]|&lt;br /&gt;
|17 Feb&lt;br /&gt;
| [http://joomlaworks.googlecode.com/files/plg_jw_allvideos-v3.3_j1.5.zip Version 3.3 release 18th]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  RW Cards   ==&lt;br /&gt;
| [http://extensions.joomla.org/extensions/3430/details RW Card] LFI and ID exploit [http://www.weberr.de/ Dev Site]&lt;br /&gt;
|180210&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;  [http://www.weberr.de/index.php/forum.html?func=view&amp;amp;catid=5&amp;amp;id=1939&amp;amp;limit=6 developer update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
== Yelp ==&lt;br /&gt;
| SQLi - Unable to locate developer. Possibly a custom extension.&lt;br /&gt;
|Feb 01 &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  &#039;&#039;&#039;Autartitarot&#039;&#039;&#039;   ==&lt;br /&gt;
|Directory Traversal. Back end access required&lt;br /&gt;
| Feb 05&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039; Please upgrade to [http://www.autartica.be/en/autartitarot version 1.0.4]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  communitypolls   ==&lt;br /&gt;
|LFI - [http://www.corejoomla.com/ community polls] &lt;br /&gt;
|Feb 17&lt;br /&gt;
||upgrade to [http://www.corejoomla.com/ version 1.5.3]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This list is change protected, for updates or additions [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Codes used ==&lt;br /&gt;
SQLi - SQL injection [http://en.wikipedia.org/wiki/Code_injection#SQL_injection wikipedia]&lt;br /&gt;
&lt;br /&gt;
LFI - Local File Inclusion [http://www.scribd.com/doc/6498408/Remote-and-Local-File-Inclusion-Explained scribd]&lt;br /&gt;
&lt;br /&gt;
RFI - Remote file inclusion [http://en.wikipedia.org/wiki/Remote_File_Inclusion wikipedia]&lt;br /&gt;
&lt;br /&gt;
DT - Directory Traversal [http://en.wikipedia.org/wiki/Directory_traversal wikipedia]&lt;br /&gt;
&lt;br /&gt;
ID = Information Disclosure: account information or sensitive information publicly viewable&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Developers - How to get yourself removed from the VEL ==&lt;br /&gt;
&lt;br /&gt;
Resolved items will be removed after a suitable period and not on resolution&lt;br /&gt;
&lt;br /&gt;
Please solve the issues and:&lt;br /&gt;
&lt;br /&gt;
* If JED listed &lt;br /&gt;
Attach the new zip file at your actual JED listing.&lt;br /&gt;
&lt;br /&gt;
Change the extension version at JED listing.&lt;br /&gt;
&lt;br /&gt;
Contact the JED by mail back with a notice and ask them republish your listing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* If not JED listed. &lt;br /&gt;
Inform us by PM of the link to your resolution notice on your website.&lt;br /&gt;
&lt;br /&gt;
== Future Actions &amp;amp; WIP ==&lt;br /&gt;
&lt;br /&gt;
[http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions RSS feed] completed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to feed VEL direct to twitter&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
The RSS feed is currently fed by item entry order and not by date fixed. &lt;br /&gt;
List as discussed in  [[jtopic:455746]] by [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=67439 PhilD] editing by [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Category:Security]]&lt;br /&gt;
[[Category:Security_FAQ]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Hidabe</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived:Vulnerable_Extensions_List&amp;diff=28372</id>
		<title>Archived:Vulnerable Extensions List</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived:Vulnerable_Extensions_List&amp;diff=28372"/>
		<updated>2010-06-03T08:31:05Z</updated>

		<summary type="html">&lt;p&gt;Hidabe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
== Check and Report.  ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic or the [http://forum.joomla.org/viewforum.php?f=470 extensions] topic clearly marked with the first word in the title being &#039;&#039;Vulnerable&#039;&#039; where the security moderators or JSST team will respond. &lt;br /&gt;
This list is change protected, for updates or editing requests [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
*If you are seeing this page on any site other than [http://docs.joomla.org/Vulnerable_Extensions_List the Offical Joomla Documentation] you may be seeing an out of date version or experiencing [http://en.wikipedia.org/wiki/Plagiarism plagiary] and the links may not work properly&lt;br /&gt;
&lt;br /&gt;
== How to use this list ==&lt;br /&gt;
&#039;&#039;&#039;Items will be removed after a suitable period and not on resolution&#039;&#039;&#039;&lt;br /&gt;
All known vulnerable extensions are the listed in the first column. Any in &amp;lt;span style=&amp;quot;background:red; color:white&amp;quot;&amp;gt;a red box &amp;lt;/span&amp;gt;are high where we have not been given a fix for. Alert Advisory details in the centre column (the date is in American format mm/dd/yyyy). &lt;br /&gt;
The link to the advisory notice. &lt;br /&gt;
Finally a link to the notice about any &amp;lt;span style=&amp;quot;background:#cef2e0; color:black&amp;quot;&amp;gt;update with link&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;background:red; color:white&amp;quot;&amp;gt;&#039;&#039;&#039;Not Known&#039;&#039;&#039; &amp;lt;/span&amp;gt; where none is known.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This list is compiled from found information and may not be an up to date accurate list&#039;&#039;&#039; &#039;&#039;We do &#039;&#039;&#039;NOT&#039;&#039;&#039; promise to test or validate these reports. We do &#039;&#039;&#039;NOT&#039;&#039;&#039; guarantee the quality or effectiveness of any updates reported to us or listed here.&#039;&#039;&lt;br /&gt;
To sign up for the feed please [http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions follow this link]&lt;br /&gt;
&lt;br /&gt;
== November 2009 Compiled Vulnerability Reports. ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Items are not in any particular order.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_ajaxchat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: PHP remote file inclusion vulnerability in Fiji Web Design Ajax Chat (&#039;&#039;&#039;com_ajaxchat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the GLOBALS[mosConfig_absolute_path] parameter to tests/ajcuser.php.New version release December 22,2009&lt;br /&gt;
Published: october 28 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3822|CVE-2009-3822]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/communication/chat/10767 update v 1.1]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_booklibrary&#039;&#039;&#039;&lt;br /&gt;
|  PHP remote file inclusion vulnerability in doc/releasenote.php in the BookLibrary (&#039;&#039;&#039;com_booklibrary&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the mosConfig_absolute_path parameter, a different vector than [[NIST:CVE-2009-2637|CVE-2009-2637]]. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 10/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|  [[NIST:CVE-2009-3817|CVE-2009-3817]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;[http://ordasoft.com/Download/Joomla1.0-extensions/Joomla1.0-components/View-category.html developer site updates]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|   style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_foobla_suggestions&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the foobla Suggestions (&#039;&#039;&#039;com_foobla_suggestions&#039;&#039;&#039;) component 1.5.11 for Joomla! allows remote attackers to execute arbitrary SQL commands via the idea_id parameter to index.php.&lt;br /&gt;
Published: 10/11/2009&lt;br /&gt;
CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|  [[NIST:CVE-2009-3669|CVE-2009-3669]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://foobla.com/news/latest/fixed-foobla-suggestions-for-joomla-idea_id-sql-injection-vulnerability.html developer reported upgrade]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_djcatalog&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the DJ-Catalog (&#039;&#039;&#039;com_djcatalog&#039;&#039;&#039;) component for Joomla! allow remote attackers to execute arbitrary SQL commands via the (1) id parameter in a showItem action and (2) cid parameter in a show action to index.php.&lt;br /&gt;
Published: 10/11/2009&lt;br /&gt;
CVSS Severity: 6.8 (MEDIUM)&lt;br /&gt;
|  [[NIST:CVE-2009-3661|CVE-2009-3661]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_cbresumebuilder&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JoomlaCache CB Resume Builder (&#039;&#039;&#039;&#039;&#039;&#039;com_cbresumebuilder&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the group_id parameter in a group_members action to index.php.&lt;br /&gt;
Published: 10/09/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3645|CVE-2009-3645]] &lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://www.joomlacache.com/commercial-extensions/security-update.html Developer Update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;com_soundset&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Soundset (&#039;&#039;&#039;com_soundset&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the cat_id parameter to index.php.&lt;br /&gt;
Published: 10/09/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3644|CVE-2009-3644]]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;com_sportfusion&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Kinfusion SportFusion (&#039;&#039;&#039;com_sportfusion&#039;&#039;&#039;) component 0.2.2 through 0.2.3 for Joomla! allows remote attackers to execute arbitrary SQL commands via the cid[0] parameter in a teamdetail action to index.php.&lt;br /&gt;
Published: 09/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3491|CVE-2009-3491]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_icrmbasic&#039;&#039;&#039;&lt;br /&gt;
|  Summary: A certain interface in the iCRM Basic (&#039;&#039;&#039;com_icrmbasic&#039;&#039;&#039;) component 1.4.2.31 for Joomla! does not require administrative authentication, which has unspecified impact and remote attack vectors. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 09/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3481|CVE-2009-3481]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_mytube&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the MyRemote Video Gallery (&#039;&#039;&#039;com_mytube&#039;&#039;&#039;) component 1.0 Beta for Joomla! allows remote attackers to execute arbitrary SQL commands via the user_id parameter in a videos action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3446|CVE-2009-3446]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_fastball&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Fastball (&#039;&#039;&#039;com_fastball&#039;&#039;&#039;) component 1.1.0 through 1.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the league parameter to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3443|CVE-2009-3443]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://www.fastballproductions.com   latest version] 1.2.1 &lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_facebook&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JoomlaFacebook (&#039;&#039;&#039;com_facebook&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a student action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3438|CVE-2009-3438]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_tupinambis&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Tupinambis (&#039;&#039;&#039;com_tupinambis&#039;&#039;&#039;) component 1.0 for Mambo and Joomla! allows remote attackers to execute arbitrary SQL commands via the proyecto parameter in a verproyecto action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3434|CVE-2009-3434]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_idoblog&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the IDoBlog (&#039;&#039;&#039;com_idoblog&#039;&#039;&#039;) component 1.1 build 30 for Joomla! allows remote attackers to execute arbitrary SQL commands via the userid parameter in a profile action to index.php, a different vector than [[NIST:CVE-2008-2627|CVE-2008-2627]].&lt;br /&gt;
Published: 09/25/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3417|CVE-2009-3417]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |&#039;&#039;&#039;[http://idojoomla.com/download.html/ &#039;&#039;&#039;New Version v 1.1&#039;&#039;&#039; (build 32)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_hbssearch&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Cross-site scripting (&#039;&#039;&#039;XSS&#039;&#039;&#039;) vulnerability in the Hotel Booking Reservation System (&#039;&#039;&#039;aka HBS or com_hbssearch&#039;&#039;&#039;) component for Joomla! allows remote attackers to inject arbitrary web script or HTML via the adult parameter in a showhoteldetails action to index.php.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 4.3 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3368|CVE-2009-3368]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_hbssearch&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the Hotel Booking Reservation System (&#039;&#039;&#039;aka HBS or com_hbssearch&#039;&#039;&#039;) component for Joomla! allow remote attackers to execute arbitrary SQL commands via the (&#039;&#039;&#039;1&#039;&#039;&#039;) h_id, (&#039;&#039;&#039;2&#039;&#039;&#039;) id, and (&#039;&#039;&#039;3&#039;&#039;&#039;) rid parameters to longDesc.php, and the h_id parameter to (&#039;&#039;&#039;4&#039;&#039;&#039;) detail.php, (&#039;&#039;&#039;5&#039;&#039;&#039;) detail1.php, (&#039;&#039;&#039;6&#039;&#039;&#039;) detail2.php, (&#039;&#039;&#039;7&#039;&#039;&#039;) detail3.php, (&#039;&#039;&#039;8&#039;&#039;&#039;) detail4.php, (&#039;&#039;&#039;9&#039;&#039;&#039;) detail5.php, (&#039;&#039;&#039;10&#039;&#039;&#039;) detail6.php, (&#039;&#039;&#039;11&#039;&#039;&#039;) detail7.php, and (&#039;&#039;&#039;12&#039;&#039;&#039;) detail8.php, different vectors than [[NIST:CVE-2008-5865|CVE-2008-5865]], [[NIST:CVE-2008-5874|CVE-2008-5874]], and [[NIST:CVE-2008-5875|CVE-2008-5875]].&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3357|CVE-2009-3357]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_alphauserpoints&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in frontend/assets/ajax/checkusername.php in the AlphaUserPoints (&#039;&#039;&#039;com_alphauserpoints&#039;&#039;&#039;) component 1.5.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the username2points parameter.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3342|CVE-2009-3342]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://www.alphaplug.com/index.php/news/142-alphauserpoints-153-released.html 1.5.3]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;TurtuShout&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the TurtuShout component 0.11 for Joomla! allows remote attackers to execute arbitrary SQL commands via the Name field.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3335|CVE-2009-3335]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jinc&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Lhacky! Extensions Cave Joomla! Integrated Newsletters Component (&#039;&#039;&#039;aka JINC or com_jinc&#039;&#039;&#039;) component 0.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the newsid parameter in a messages action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3334|CVE-2009-3334]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jbudgetsmagic&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JBudgetsMagic (&#039;&#039;&#039;com_jbudgetsmagic&#039;&#039;&#039;) component 0.3.2 through 0.4.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the bid parameter in a mybudget action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3332|CVE-2009-3332]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;[http://sopinet.com/jbudgetsmagic/index.php?option=com_remository&amp;amp;Itemid=5&amp;amp;lang=en Update to 0.4.1]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_surveymanager&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Focusplus Developments Survey Manager (&#039;&#039;&#039;com_surveymanager&#039;&#039;&#039;) component 1.5.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the stype parameter in an editsurvey action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3325|CVE-2009-3325]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_album&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Directory traversal vulnerability in the Roland Breedveld Album (&#039;&#039;&#039;com_album&#039;&#039;&#039;) component 1.14 for Joomla! allows remote attackers to access arbitrary directories and have unspecified other impact via a .. (&#039;&#039;&#039;dot dot&#039;&#039;&#039;) in the target parameter to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3318|CVE-2009-3318]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;com_jreservation&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the [http://extensions.joomla.org/extensions/vertical-markets/booking-a-reservation/9798 JReservation] (&#039;&#039;&#039;com_jreservation&#039;&#039;&#039;) component 1.0 and 1.5 for Joomla! allows remote attackers to execute arbitrary SQL commands via the pid parameter in a propertycpanel action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3316|CVE-2009-3316]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |  [http://www.jforjoomla.com Updated 28th] Jan fixed 13th Nov&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;IXXO Cart Standalone&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in IXXO Cart Standalone before 3.9.6.1, and the IXXO Cart component for Joomla! 1.0.x, allows remote attackers to execute arbitrary SQL commands via the parent parameter.&lt;br /&gt;
Published: 09/16/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3215|CVE-2009-3215]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_digifolio&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the DigiFolio (&#039;&#039;&#039;com_digifolio&#039;&#039;&#039;) component 1.52 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a project action to index.php.&lt;br /&gt;
Published: 09/15/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3193|CVE-2009-3193]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_aclassf&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Cross-site scripting (&#039;&#039;&#039;XSS&#039;&#039;&#039;) vulnerability in &#039;&#039;&#039;gmap.php&#039;&#039;&#039; in the Almond Classifieds (&#039;&#039;&#039;com_aclassf&#039;&#039;&#039;) component 7.5 for Joomla! allows remote attackers to inject arbitrary web script or HTML via the addr parameter.&lt;br /&gt;
Published: 09/10/2009&lt;br /&gt;
CVSS Severity: 4.3 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3155|CVE-2009-3155]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;   | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_aclassf&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Almond Classifieds (&#039;&#039;&#039;com_aclassf&#039;&#039;&#039;) component 7.5 for Joomla! allows remote attackers to execute arbitrary SQL commands via the replid parameter in a manw_repl add_form action to index.php, a different vector than [[NIST:CVE-2009-2567|CVE-2009-2567]].&lt;br /&gt;
Published: 09/10/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3154|CVE-2009-3154]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://www.almondsoft.com/alcl.html Developer latest component]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jabode&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in Jabode horoscope extension (&#039;&#039;&#039;com_jabode&#039;&#039;&#039;) for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a sign task to index.php.&lt;br /&gt;
Published: 09/08/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
|  [[NIST:CVE-2008-7169|CVE-2008-7169]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_gameserver&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Game Server (&#039;&#039;&#039;com_gameserver&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a gamepanel action to index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3063|CVE-2009-3063]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_artportal&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Artetics.com Art Portal (&#039;&#039;&#039;com_artportal&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the portalid parameter to index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3054|CVE-2009-3054]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;com_agora&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Directory traversal vulnerability in the Agora (&#039;&#039;&#039;com_agora&#039;&#039;&#039;) component 3.0.0b for Joomla! allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the action parameter to the avatars page, reachable through index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 6.8 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3053|CVE-2009-3053]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |&#039;&#039;&#039;[http://jvitals.com/index.php?option=com_rokdownloads&amp;amp;view=file&amp;amp;Itemid=108&amp;amp;id=282:agora-3-0 3.0.7]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_simpleshop&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Simple Shop Galore (&#039;&#039;&#039;com_simpleshop&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the section parameter in a section action to index.php, a different vulnerability than [[NIST:CVE-2008-2568|CVE-2008-2568]]. NOTE: this issue was disclosed by an unreliable researcher, so the details might be incorrect.&lt;br /&gt;
Published: 08/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-7033|CVE-2008-7033]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_groups&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Permis (&#039;&#039;&#039;com_groups&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a list action to index.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 08/17/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-2789|CVE-2009-2789]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;com_content&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the content component (&#039;&#039;&#039;com_content&#039;&#039;&#039;) 1.0.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the Itemid parameter in a blogcategory action to index.php.&lt;br /&gt;
Published: 08/10/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6923|CVE-2008-6923]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://developer.joomla.org/security/news/305-20091103-core-front-end-editor-issue-.html Resolution]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the last parameter to getChatRoom.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6883|CVE-2008-6883]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to use the xmlhttp.php script as an open HTTP proxy to hide network scanning activities or scan internal networks via a GET request with a full URL in the query string.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6882|CVE-2008-6882]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allow remote attackers to execute arbitrary SQL commands via the last parameter to (&#039;&#039;&#039;1&#039;&#039;&#039;) getChat.php, (&#039;&#039;&#039;2&#039;&#039;&#039;) getChatRoom.php, and (&#039;&#039;&#039;3&#039;&#039;&#039;) getSavedChatRooms.php.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6881|CVE-2008-6881]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;JUMI&#039;&#039;&#039;&lt;br /&gt;
|  There is a backdoor in JUMI that installs itself when JUMI is installed on your web site. It sends your credentials to a website, and sets up a back door for remote code execution.&lt;br /&gt;
Please remove JUMI2.0.5 immediately. &lt;br /&gt;
It will be simple enough to remove the compromised code from this download, but you need to do &lt;br /&gt;
a full security audit on your site as well as you have been compromised. Added November 2009&lt;br /&gt;
|  [http://code.google.com/p/jumi/updates/list Report]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://code.google.com/p/jumi/updates/list Jumi Update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_photoblog&#039;&#039;&#039;&lt;br /&gt;
|  Input Validation Error Added November 2009&lt;br /&gt;
|  [http://www.securityfocus.com/bid/36809/ 36809]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://webguerilla.net/downloads/3-components-for-joomla-1 webguerilla Photoblog alpha 3b]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jshop&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JShop (&#039;&#039;&#039;com_jshop&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the pid parameter in a product action to index.php.&lt;br /&gt;
Published: 11/02/2009&lt;br /&gt;
CVSS Severity: 7.5 &#039;&#039;&#039;(HIGH)&#039;&#039;&#039; &lt;br /&gt;
|  [[NIST:CVE-2009-3835|CVE-2009-3835]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;BF Survey Pro&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the &#039;&#039;&#039;BF Survey Pro&#039;&#039;&#039; v1.2.5 or lower  (fixed in version 1.2.6). &#039;&#039;&#039;BF Survey Basic v1.0&#039;&#039;&#039; (fixed in version 1.1). &#039;&#039;&#039;BF Quiz v1.1.1&#039;&#039;&#039; (fixed in version 1.2 or greater) Added November 2009&lt;br /&gt;
|  [http://www.tamlyncreative.com.au/software/forum/index.php?topic=357.0 tamlyncreative.com.au]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://www.tamlyncreative.com.au/software/forum/index.php?topic=357.0 update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;Joo!BB 0.9.1 &#039;&#039;&#039;&lt;br /&gt;
|  Summary: Persistent XSS/MySQL Injection vulnerabilities in Joo!BB 0.9.1 Added November 2009&lt;br /&gt;
|  [http://www.joobb.org/community/board/topic/700-MultipleXSSSQLInjectionVulnerabilities.html joob.org]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.joobb.org/downloads/components.html update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;sh404sef &#039;&#039;&#039;&lt;br /&gt;
|  Summary: sh404sef URI XSS Vulnerability  Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/sh404sef-uri-xss-vulnerability.html jeffchannell.com]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://extensions.siliana.com/en/2009060876/sh404SEF-and-url-rewriting/Interim-release-of-sh404sef-for-Joomla-1.5.x.html update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;AWD Wall 1.5&#039;&#039;&#039; &lt;br /&gt;
|  Summary &#039;&#039;&#039;AWD Wall 1.5&#039;&#039;&#039; Blind SQL Injection Vulnerability.The Joomla component AWD Wall 1.5 suffers from an SQL Injection vulnerability in its handling of the &#039;cbuser&#039; parameter.Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/awd-wall-15-blind-sql-injection-vulnerability.html Notice]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;[http://www.awdsolution.com/template_demo/testsite/index.php?option=com_content&amp;amp;view=article&amp;amp;id=48&amp;amp;Itemid=72 developer update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;EasyBook 2.0.0rc4&#039;&#039;&#039;&lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;EasyBook 2.0.0rc4&#039;&#039;&#039; suffers from multiple persistent XSS vulnerabilities. One seems fairly critical, while the others would take some incredible creativity to actively exploit. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/easybook-200rc4-multiple-xss-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;F!BB 1.5.96&#039;&#039;&#039; &lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;F!BB 1.5.96 RC&#039;&#039;&#039; suffers from multiple persistent XSS vulnerabilities, as well SQL Injection in its user search feature. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/fbb-1596-rc-multiple-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Testimonial Ku 2.0 Admin Panel&#039;&#039;&#039;&lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;Testimonial Ku 2.0&#039;&#039;&#039; is vulnerable to persistent XSS in the administrator panel. A malicious user can submit a testimonial containing &amp;lt;script&amp;gt; tags with absolutely no quotes and inject that script into the administrator panel through any of the available inputs except &amp;quot;email&amp;quot;. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/testimonial-ku-20-admin-panel-persistent-xss.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;MS Comment 0.8.0b&#039;&#039;&#039;&lt;br /&gt;
|  Summary &#039;&#039;&#039;MS Comment 0.8.0b for Joomla&#039;&#039;&#039;, a commenting plugin, suffers from an multiple vulnerabilities. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/ms-comment-080b-multiple-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;!JoomlaComment 4.0 beta1&#039;&#039;&#039;&lt;br /&gt;
|  Summary: &#039;&#039;&#039;!JoomlaComment 4.0 beta1&#039;&#039;&#039;, a commenting plugin, suffers from multiple XSS vulnerabilities. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/joomlacomment-40-beta1-multiple-xss-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://compojoom.com/blog/8-news/121-joomlacomment-40-rc1-released Developer Notice 4.0 rc1]&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;WebAmoeba Ticket System 3.0.0&#039;&#039;&#039;&lt;br /&gt;
|  Summary:  &#039;&#039;&#039;WebAmoeba Ticket System 3.0.0&#039;&#039;&#039;, a Joomla help desk component. The vulnerability is with the BBCode library used to parse BBCode tags, as it does not strip javascript: urls from [url] tags. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/webamoeba-ticket-system-300-bbcode-xss.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;Kunena 1.5.x&#039;&#039;&#039; &lt;br /&gt;
|Summary: This is an important security release and users are urged to update immediately. Five security issues and an Internet Explorer 8 table bug have been resolved in this release. This release also contains many other important bug fixes. Added 18 November 2009&lt;br /&gt;
|[http://www.kunena.com/blog/19-developer-blog/51-kunena-157-security-release-now-available Advisory]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://www.kunena.com/blog/19-developer-blog/52-kunena-158-service-release-now-available Latest 1.5.8 Version]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_siirler&#039;&#039;&#039;&lt;br /&gt;
|  Summary:  SQL injection vulnerability in the &#039;&#039;&#039;Q-Proje Siirler Bileseni (com_siirler)&#039;&#039;&#039; component 1.2 RC for Joomla! allows remote attackers to execute arbitrary SQL commands via the sid parameter in an sdetay action to index.php. Added 18 November 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3972 | CVE-2009-3972]]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;jTips (com_jtips)&#039;&#039;&#039;&lt;br /&gt;
|SUmmary:SQL injection vulnerability in the &#039;&#039;&#039;jTips (com_jtips)&#039;&#039;&#039; component 1.0.7 and 1.0.9 for Joomla! allows remote attackers to execute arbitrary SQL commands via the season parameter in a ladder action to index.php. Added 18 November 2009&lt;br /&gt;
| [[NIST:CVE-2009-3971 |CVE-2009-3971]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;NinjaMonials&#039;&#039;&#039;&lt;br /&gt;
| Summary: SQL injection vulnerability in the &#039;&#039;&#039;NinjaMonials (com_ninjacentral)&#039;&#039;&#039; component 1.1.0 for &#039;&#039;&#039;Joomla 1.0.x&#039;&#039;&#039; ! allows remote attackers to execute arbitrary SQL commands via the testimID parameter in a display action to index.php. Added 18 November 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3964 | CVE-2009-3964]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;  [http://ninjaforge.com/index.php?option=com_ninjacentral&amp;amp;page=show_package&amp;amp;id=14&amp;amp;Itemid=235 developer patch Ver 1.2]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;webee 1.1.1 &amp;amp;1.2&#039;&#039;&#039;&lt;br /&gt;
|Summary: &#039;&#039;&#039;webee 1.1.1,&#039;&#039;&#039; a Joomla commenting plugin, suffers from multiple vulnerabilities. &#039;&#039;&#039;webee has been updated to 1.2&#039;&#039;&#039; as of 12 November 2009 and&#039;&#039;&#039; still suffers&#039;&#039;&#039; from SQL Injection. XSS was not tested in 1.2. Added 19 November 2009&lt;br /&gt;
| [http://jeffchannell.com/Joomla/webee-111-multiple-vulnerabilities.html jeffchannell.com]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039; [http://extensions.joomla.org/extensions/contacts-and-feedback/articles-comments/10155 developer update ver2.0]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;iF Portfolio Nexus&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;&#039;&#039;iF Portfolio Nexus component for Joomla!&#039;&#039;&#039; is vulnerable to SQL injection. A remote attacker could send specially-crafted SQL statements using the id parameter, which could allow the attacker to view, add, modify or delete information in the back-end database. Nov 18, 2009&lt;br /&gt;
|[http://secunia.com/advisories/37408/ secunia.com 37408/]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.inertialfate.za.net/help/forums/topic?id=10&amp;amp;p=3#p172 iF Portfolio Nexus v1.1.1 released]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JoomClip&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;&#039;&#039;JoomClip component for Joomla!&#039;&#039;&#039; is vulnerable to SQL injection. A remote attacker could send specially-crafted SQL statements to the index.php script using the cat parameter, which could allow the attacker to view, add, modify or delete information in the back-end database.  Nov 18, 2009&lt;br /&gt;
|[http://secunia.com/advisories/37400/ secunia.com 37400/]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Joomla XML&#039;&#039;&#039;&lt;br /&gt;
|Summary: Joomla! before 1.5.15 allows remote attackers to read an extension&#039;s XML file, and thereby obtain the extension&#039;s version number, via a direct request.&lt;br /&gt;
Published: 11/16/2009&lt;br /&gt;
|[[NIST:CVE-2009-3946 | CVE-2009-3946]] &lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://developer.joomla.org/security/news/306-20091103-core-xml-file-read-issue.html Resolution]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Mygallery Remote SQL Injection Vulnerability&#039;&#039;&#039; &lt;br /&gt;
|Summary: Joomla Component mygallery ( farbinform_krell) Remote SQL Injection Vulnerability Added 27 Nov 2009 {{JVer|1.5}} NB: This could be an error in our database as the only one we could find was for wordpress.If anyone know of one for joomla please let us know..(poss joomlicious.com CM)&lt;br /&gt;
|[http://www.exploit-db.com] &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Extreme Google Calendar&#039;&#039;&#039;&lt;br /&gt;
|Summary: &#039;&#039;&#039;com_gcalendar 1.1.2&#039;&#039;&#039; (gcid) Remote SQL Injection Vulnerability&lt;br /&gt;
Remote SQL Injection were identified in Google Calendar Component [http://extensions.joomla.org/extensions/calendars-a-events/calendars/4188 Extension Link] Added 27 Nov 2009 &lt;br /&gt;
|[http://www.exploit-db.com reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;LyftenBloggie&#039;&#039;&#039;&lt;br /&gt;
| Summary: [http://www.lyften.com/products/lyftenbloggie.html LyftenBloggie] Component &amp;quot;author&amp;quot; SQL Injection Vulnerability LyftenBloggie 1.x Added 27 Nov 2009&lt;br /&gt;
|[http://secunia.com/advisories/product/28005/	 SA37499]&lt;br /&gt;
| [http://jeffchannell.com/Joomla/lyften-bloggie-sql-injection-fix.html Un official fix]. Developer fix not release at 30 Nov 09 &#039;&#039;&#039; [http://www.lyften.com/products/lyftenbloggie/extensions/download/id-20.html 1.0.4a (last update on Dec 28, 2009)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Sermon speaker&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://joomlacode.org/gf/project/sermon_speaker sermon speaker] sql vulnerability and password reset vulnerability version 3.2 and below&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://joomlacode.org/gf/project/sermon_speaker/forum/?action=ForumBrowse&amp;amp;forum_id=7897&amp;amp;_forum_action=ForumMessageBrowse&amp;amp;thread_id=15219 Developer fix] 30 Nov 2009&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://joomlacode.org/gf/project/musicgallery/ MusicGallery]&lt;br /&gt;
|Summary: [http://joomlacode.org/gf/project/musicgallery/ Component MusicGallery] SQL Injection Vulnerability 30 November {{JVer|1.5}}&lt;br /&gt;
|[[NIST:CVE-2009-4217 | CVE-2009-4217]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | [http://joomlacode.org/gf/project/musicgallery/ developer]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== December 2009 Compiled Reports ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Omilen Photo Gallery&#039;&#039;&#039;&lt;br /&gt;
|Summary: Directory traversal vulnerability in the [http://extensions.joomla.org/extensions/photos-&amp;amp;-images/photo-flash-gallery/6373/details Omilen Photo Gallery] (com_omphotogallery) component Beta 0.5 for Joomla! allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the controller parameter to index.php.&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4202 | CVE-2009-4202]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Seminar&#039;&#039;&#039;&lt;br /&gt;
|Summary: SQL injection vulnerability in the [http://seminar.vollmar.ws/ Seminar] (com_seminar) component 1.28 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a View_seminar action to index.php.&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4200 | CVE-2009-4200]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Mambo Resident&#039;&#039;&#039;&lt;br /&gt;
|Summary: Multiple SQL injection vulnerabilities in the Mambo Resident (aka Mos Res or com_mosres) component 1.0f for Mambo and Joomla!, when magic_quotes_gpc is disabled, allow remote attackers to execute arbitrary SQL commands via the (1) property_uid parameter in a viewproperty action to index.php and the (2) regID parameter in a showregion action to index.php. Mambo Resident component for v4.5.2 &#039;&#039;&#039;may only be for 1.0.xx versions of J!&#039;&#039;&#039;&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4199 | CVE-2009-4199]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.jomres.net/ Replacement Extension 08 dec 09]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;ProofReader&#039;&#039;&#039; &lt;br /&gt;
|Summary: Multiple cross-site scripting (XSS) vulnerabilities in index.php in the ProofReader (com_proofreader) component 1.0 RC9 and earlier for Joomla! allow remote attackers to inject arbitrary web script or HTML via the URI, which is not properly handled in (1) 404 or (2) error pages. Published: 12/02/2009 CVSS Severity: 4.3 (MEDIUM)&lt;br /&gt;
| [[NIST:CVE-2009-4157 | CVE-2009-4157]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Laoneo Google Calendar GCalendar&#039;&#039;&#039;&lt;br /&gt;
|Summary: SQL injection vulnerability in the [http://g4j.laoneo.net/content/extensions/download/cat_view/20-joomla-15x/21-gcalendar.html Google Calendar GCalendar] (com_gcalendar) component 1.1.2, 2.1.4, and possibly earlier versions for Joomla! allows remote attackers to execute arbitrary SQL commands via the gcid parameter. NOTE: some of these details are obtained from third party information. Published: 11/29/2009 CVSS Severity: 7.5 (HIGH) Note: There is already a listing for GCalendar 1.1.2&lt;br /&gt;
|[[NIST:CVE-2009-4099 | CVE-2009-4099]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | [http://g4j.laoneo.net/content/extensions/download/doc_details/28-gcalendar-suite-215.html Latest version GCalendar Suite 2.1.5]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;D4J eZine&#039;&#039;&#039;&lt;br /&gt;
|Summary: PHP remote file inclusion vulnerability in class/php/d4m_ajax_pagenav.php in the D4J eZine (com_ezine) component 2.1 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the GLOBALS mosConfig_absolute_path parameter. Published: 11/29/2009 CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|[[NIST:CVE-2009-4094 | CVE-2009-4094]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Quick News&#039;&#039;&#039;&lt;br /&gt;
| Summary: The Joomla [http://joomlacode.org/gf/project/quicknews/ Quick News component] suffers from a remote SQL injection vulnerability. added 1st Dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Joaktree component&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/genealogy/9842 Joaktree] Vulnerability : SQL injection/ added 1st Dec 09&lt;br /&gt;
|[http://securityreason.com/exploitalert/7508 7508]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://naastniels.nl/index.php/en/joaktree/downloads version 1.1 update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;mojoblog&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://www.joomlify.com/files/mojoblog/ MojoBlog] Multiple Remote File Include Vulnerability added 1st Dec 09 {{JVer|1.5}}&lt;br /&gt;
|[http://securityreason.com/exploitalert/7509 7509]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;YJ Whois&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/external-contents/domain-search/5774 YJ Whois] &#039;&#039;&#039;Low security risk&#039;&#039;&#039;,and fixesMalicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. Files affected is , modules/mod_yj_whois.php added 3 December 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.youjoomla.com/xss-security-patch-for-yj-whois.html Developer Notice and fix 03 dec 09]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;yt_color YOOOtheme&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.yootheme.com/ YT_color yootheme] Malicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. added 5 dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.yootheme.com/member-area/downloads/item/templates-15/xss-and-php-53-patches All members without an active membership can download the template patches here].&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;TP Whois&#039;&#039;&#039; &lt;br /&gt;
|summary: [http://www.templateplazza.com/view-details/tpwhois/183-component-tp-whois-for-joomla-1.5.x.html TP Whois ] Malicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. Added 3 december {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Refrence]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_job&#039;&#039;&#039;&lt;br /&gt;
|Summary: Component com_job ( showMoreUse) SQL injection vulnerability  Added 9th Dec&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/54626 Reference]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;JQuarks&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/contacts-and-feedback/quiz-a-surveys/10590 JQuarks] SQL injection vulnerability {{JVer|1.5}} added 8th dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | [http://www.iptechinside.com/labs/projects/list_files/jquarks Developer Update ]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Mamboleto Component 2.0 RC3&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.fernandosoares.com.br/index.php?option=com_docman&amp;amp;task=cat_view&amp;amp;gid=28&amp;amp;Itemid=28 Mamboleto Component 2.0 RC3]SQL injection vulnerability {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039; JS JOBS&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://www.joomshark.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=4&amp;amp;Itemid=8 JS JOBS] Joomla Component com_jsjobs 1.0.5.6 SQL Injection Vulnerabilities {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.joomsky.com/index.php?option=com_rokdownloads&amp;amp;view=folder&amp;amp;Itemid=3&amp;amp;id=2:components Developer update 1.0.5.7]&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;corePHP JPhoto&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/photos-a-images/photo-gallery/10365 &#039;corePHP&#039; JPhoto]SQL injection vulnerability {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://secunia.com/advisories/37676/ Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.corephp.com/blog/uber-fast-jphoto-security-release/ Developer Upgrade]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    | &#039;&#039;&#039;com_virtuemart&#039;&#039;&#039;&lt;br /&gt;
|Summary: &amp;quot;com_virtuemart&amp;quot; http://virtuemart.net/  &#039;&#039;&#039;Version : 1.0&#039;&#039;&#039; Vulnerability : SQL injection added Date : 07- dec -09 {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://virtuemart.net/ latest version]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039; Kide Shoutbox&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|Summary: The Kide Shoutbox (com_kide) component 0.4.6 for Joomla! does not properly perform authentication, which allows remote attackers to post messages with an arbitrary account name via an insertar action to index.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information. Added: December 08&lt;br /&gt;
|[[NIST:CVE-2009-4232 | CVE-2009-4232]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039; JoomPortfolio Component&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.joomplace.com/joomportfolio/joomportfolio.html JoomPortfolio] Input passed via the &amp;quot;secid&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_joomportfolio&amp;quot; and &amp;quot;task&amp;quot; is set to &amp;quot;showcat&amp;quot;) is not properly sanitised before being used in a SQL query. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code.The vulnerability is reported in version 1.0.0. Other versions may also be affected. Added: December 18 {{JVer|1.5}}&lt;br /&gt;
|[http://secunia.com/advisories/37838/ Reporting Site]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;City Portal (templates?)&#039;&#039;&#039;&lt;br /&gt;
|Summary:   City Portal Blind SQL Injection Vulnerability added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference] Possibly this [http://www.youjoomla.com/jclick-city-portal-joomla-template.html tempate]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;Event Manager&#039;&#039;&#039;&lt;br /&gt;
|Summary:  [http://www.jforjoomla.com/Joomla-Components/event-manager-15-component.html Event Manager] Blind SQL Injection Vulnerability EDB-ID: 10549&lt;br /&gt;
added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | com_zcalendar&lt;br /&gt;
|Summary:  com_zcalendar Blind SQL-injection Vulnerability&lt;br /&gt;
EDB-ID: 10548 added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;com_acmisc&#039;&#039;&#039;&lt;br /&gt;
|Summary:  com_acmisc SQL injection added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_digistore&#039;&#039;&#039;&lt;br /&gt;
|Summary:  com_digistore SQL injection EDB-ID: 10546 added: 2009-12-18  {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.ijoomla.com/ijoomla-digistore/ijoomla-digistore/ijoomla-digistore-change-log/ Update change log] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;com_jbook&#039;&#039;&#039;&lt;br /&gt;
|Summary:   com_jbook Blind SQL-injection EDB-ID: 10545 added: 2009-12-18 {{JVer|1.0}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;com_personel&#039;&#039;&#039;&lt;br /&gt;
|Summary: com_personel component for Joomla! is vulnerable to SQL injection.&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/54903 iss.net reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |  &#039;&#039;&#039;JEEMA Article Collection&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.forum.jeema.net/component/content/article/4-jeema-article-collection-component/13-about-jeema-article-collection.html JEEMA Article Collection] Input passed via the &amp;quot;catid&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_jeemaarticlecollection&amp;quot; and &amp;quot;view&amp;quot; is set to &amp;quot;longlook&amp;quot;) is not properly sanitised before being used in a SQL query. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code. version 1.0.0.1 {{JVer|1.5}} added 22 dec 09&lt;br /&gt;
| [http://secunia.com/advisories/37865/ secunia]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;    | [http://www.jeema.net/downloads/free-joomla-extensions/joomla-components/12-jeema-joomla-article-collection.htm fixed the same in the version v102.]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;HotBrackets Tournament Brackets &#039;&#039;&#039;&lt;br /&gt;
|Summary: The [http://extensions.joomla.org/extensions/sports-a-games/sports/10746 HotBrackets Tournament Brackets] component for Joomla! is prone to an SQL-injection vulnerability because it fails to sufficiently sanitize user-supplied data before using it in an SQL query. {{JVer|1.5}} added 22 dec &lt;br /&gt;
|[http://www.securityfocus.com/bid/37439/ Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;Car Manager&#039;&#039;&#039;&lt;br /&gt;
|Summary: http://webformatique.com/ com_carman Cross Site Scripting Vulnerability added 24 december 09{{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;Schools component&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;com_schools&#039; component for Joomla! is prone to an SQL-injection vulnerability because it fails to sufficiently sanitize user-supplied data before using it in an SQL query.&lt;br /&gt;
|[http://www.securityfocus.com/bid/37469 Reference] added 24 dec 09&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;webcamxp&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/communication/video-conference/4490 com_webcamxp] Cross Site Scripting Vulnerabilities  Last version 2008 {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;beeheard&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/contacts-and-feedback/testimonials-a-suggestions/10283 beeheard]  Blind SQL injection Vulnerability {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://beeheard.cmstactics.com/change-log Version 1.4.2] 04 Jan&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;jm-recommend&#039;&#039;&#039;&lt;br /&gt;
|jm-recommendCross Site Scripting Vulnerabilities. unable to locate on jed. {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | facileforms&lt;br /&gt;
| com_facileforms Cross Site Scripting Vulnerabilities. unable to locate on jed. Product considered retired.  {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;adagency&#039;&#039;&#039;&lt;br /&gt;
| [http://www.ijoomla.com/ijoomla-ad-agency/ijoomla-ad-agency/index/ adagency ]Vulnerabilities {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;com_intuit&#039;&#039;&#039;&lt;br /&gt;
|[http://www.san-diego-web-designer.com/new-file-download/item/root/aboutimage-igateway-for-joomla.html com_intuit]Local File Inclusion Vulnerability {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.securityfocus.com/bid/37494/discuss Retired]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;MemoryBook&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/calendars-a-events/birthdays-a-historic-events/10868 MemoryBook 1.2]  Multiple Vulnerabilities. requires: magic quotes OFF, user account {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;qpersonel&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/directory-a-documentation/thematic-directory/7049 qpersonel ] Cross Site Scripting Vulnerabilities {{JVer|1.0}}[[Image:http://extensions.joomla.org/images/jed/compat_15_legacy.png]] Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;opryknings point&#039;&#039;&#039; &lt;br /&gt;
|com_oprykningspoint_mc Cross Site Scripting Vulnerabilities {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;trabalhe conosco&#039;&#039;&#039;&lt;br /&gt;
|com_trabalhe_conosco Cross Site Scripting Vulnerabilities {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;DhForum&#039;&#039;&#039;&lt;br /&gt;
|com_dhforum SQL Injection Vulnerability. considered retired/EOL Dec. 27 {{JVer|1.0}}1.5 legacy&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;com_morfeoshow&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/photos-a-images/photo-gallery-add-ons/9810 morfeoshow] this was a false report &lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;  false report&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Run Digital Download rd-download&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7838 RD Download] Local File Disclosure Vulnerability  {{JVer|1.5}} Dec. 30 Version affected not disclosed.&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7838 Version 0.9 relased] &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== January 2010 Reported Vulnerable Extensions ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic or the [http://forum.joomla.org/viewforum.php?f=470 extensions] topic clearly marked with the first word in the title being &#039;&#039;Vulnerable&#039;&#039; where the security moderators or JSST team will respond. &lt;br /&gt;
&#039;&#039;This list is change protected, for updates or editing requests [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://docs.joomla.org/Vulnerable_Extensions_List Back To Top]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |JvideoDirect&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/multimedia/video-players-a-gallery/9501 Jvideodirect] SQLi Jan 29&lt;br /&gt;
|&lt;br /&gt;
|http://www.jvideodirect.com/ Update version 2.5&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JEvent search plugin&#039;&#039;&#039;&lt;br /&gt;
|Summary: JEvent search plugin for [http://extensions.joomla.org/extensions/calendars-a-events/events/95 JEvent] SQLi reported Jan 29&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.jevents.net/forum/viewtopic.php?f=17&amp;amp;t=3910#p15526 upgrade to 1.5.3b]&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;Kunena&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/communication/forum/7256/details kunena] re reported suffering SQLi in version 1.5.9 Jan 29 Confirmation Required &#039;&#039;&#039;Now found to be malicious&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://www.kunena.com/blog/19-developer-blog/51-kunena-157-security-release-now-available Versions 1.5.5 and below only]&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&#039;&#039;&#039;JE Quiz&#039;&#039;&#039;&lt;br /&gt;
|Summary : http://extensions.joomla.org/extensions/contacts-and-feedback/quiz-a-surveys/11212 JeQuiz SQLi reported 29 Jan&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;&amp;quot;   |&#039;&#039;&#039;idoblog&#039;&#039;&#039;&lt;br /&gt;
|summary: exploitable due to open file permissions. 28 Jan&lt;br /&gt;
|Private Notification&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://idojoomla.com/news.html build 35 released] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    |&#039;&#039;&#039;ccnewsletter&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://extensions.joomla.org/extensions/5112/details ccnewsletter Directory Traversal Vulnerability] Jan 28 &lt;br /&gt;
|Private Notification&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039; [http://www.chillcreations.com/en/blog/ccnewsletter-joomla-newsletter/ccnewsletter-106-security-release.html version 1.0.6 released 29 Jan]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   |&#039;&#039;&#039;Virtuemart 1.1.4&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/e-commerce/shopping-cart/129 virtuemart] Input var order_status_id is vulnerable to SQLi NB Requires Higher Level access before exploiting. Jan 27&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://forum.joomla.org/viewtopic.php?p=2027005#p2027005 developer patches]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JBDiary&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/calendars-a-events/events/11009 JBDiary] BLIND SQL Injection Vulnerabilities Jan 24 [http://www.jb-soft.nl/ http://www.jb-soft.nl/]&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | &#039;&#039;&#039; [http://www.jb-soft.nl/index.php?option=com_content&amp;amp;view=article&amp;amp;id=64 Developer Update 27 Jan]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JbPublishDownFp&#039;&#039;&#039;&lt;br /&gt;
|Sumary: [http://extensions.joomla.org/extensions/news-production/timed-content/6496 JbPublishDownFp] SQL Injection Vulnerability Jan 24 [http://www.jb-soft.nl http://www.jb-soft.nl]&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;  [http://www.jb-soft.nl/index.php?option=com_content&amp;amp;view=article&amp;amp;id=64 Developer Update Jan 27]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;com_casino&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/sports-a-games/tips-a-betts com_casino]&lt;br /&gt;
SQL Injection Vulnerabilities Jan24&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;Mochigames&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/search/mochigames com_Mochigames]&lt;br /&gt;
SQL Injection Vulnerabilities Jan24&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039; [http://www.yoflash.com/download.html mochigames_alpha052 Released]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;ContentBlogList&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/news-production/blog/10989 com_ContentBlogList] SQL Injection Vulnerability Jan 23&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |MailChimp for Joomla 1.5&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/bridges/mailing-a-newsletter-bridges/7836 MailChimp for Joomla 1.5]  jan 17&lt;br /&gt;
|Developer Statement&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;JoomlaXML&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/tools/design-tools/5020 JoomlaXML] malicious code insertion&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JVClouds3D SWF module&#039;&#039;&#039;&lt;br /&gt;
|[http://joomlapro.ru/3djvclouds JVClouds3D SWF module] Cross Site Scripting . jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55535 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JVClouds3D&#039;&#039;&#039;&lt;br /&gt;
|[http://joomlapro.ru/3djvclouds JVClouds3D module] Cross Site Scripting . jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55534 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;JA Showcase&#039;&#039;&#039;&lt;br /&gt;
|[http://www.joomlart.com/addons/components_and_modules/ja_showcase.html JA Showcase component] Directory Traversal jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55512 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;jprojects&#039;&#039;&#039;&lt;br /&gt;
|Summary:   Unknown Author com_j-projects Blind SQL Injection Vulnerability. Jan 10 detail update&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&#039;&#039;&#039;jEmbed-Embed Anything&#039;&#039;&#039;&lt;br /&gt;
|[http://www.joshprakash.com/index.php?option=com_docman&amp;amp;task=doc_details&amp;amp;gid=70 jEmbed-Embed Anything] A vulnerability has been discovered in the jEmbed-Embed Anything component for Joomla, which can be exploited by malicious people to conduct SQL injection attacks. Jan 10&lt;br /&gt;
|[http://secunia.com/advisories/38112 Secunia Advisory: SA38112] &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/3699/details Product considered retired]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    |&#039;&#039;&#039;perchagallery &#039;&#039;&#039;&lt;br /&gt;
|Summary: perchagallery  [http://extensions.joomla.org/extensions/photos-a-images/photo-gallery/10350 com_perchagallery] SQL Injection Vulnerability  Jan 7&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.percha.com/index.php?option=com_phocadownload&amp;amp;view=file&amp;amp;id=22:1.5&amp;amp;Itemid=20 Developer Update 1.5b]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0;  color:black&amp;quot;   |  &#039;&#039;&#039;CARTwebERP&#039;&#039;&#039;&lt;br /&gt;
|Summary:  [http://extensions.joomla.org/extensions/bridges/e-commerce-bridges/8753 CARTwebERP] Local File Inclusion Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://extensions.joomla.org/extensions/bridges/e-commerce-bridges/8753 1.56.76 (last update on Jan 11, 2010)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |   &#039;&#039;&#039;JoomlaBibleStudy&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/religion/3461 JoomlaBibleStudy] LFI Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | &#039;&#039;&#039;[http://joomlabiblestudy.org/invisible-downloads/category/3-component.html Developer reported update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;com_bfsurvey_basic and pro&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.tamlyncreative.com.au/software/ BFsurvey] SQL Injection Vulnerability ,LFI Vulnerability   Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.tamlyncreative.com.au/software/forum/index.php?topic=641.0 Developer Update announcement]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Alfresco&#039;&#039;&#039;&lt;br /&gt;
|Summary:  SQL Injection Vulnerability. Not believed to be Joomlatools extension Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;abbrev&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/directory-a-documentation/glossary-a-dictionary/4965 abbrev] Local File Inclusion Vulnerability Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;countries&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/development/6553 countries] SQL Injection Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |  &#039;&#039;&#039;Dedicated Component com_tpjobs&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.templateplazza.com/ tpjobs] SQL Injection Vulnerability unable to locate files probably template plaza  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;     | &#039;&#039;&#039;  [http://www.templateplazza.com/extensions-updates/tpjobs-component-update-v-1.1.html Developer Update] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Component com_doqment&#039;&#039;&#039;&lt;br /&gt;
|SQL Injection Vulnerability Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Component com_otzivi&#039;&#039;&#039; &lt;br /&gt;
|Blind SQL Injection Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;aprice&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://adeptweb.info/component/option,com_aprice/Itemid,109/ com_aprice] Component &#039;analog&#039; Parameter SQL Injection Vulnerability&lt;br /&gt;
|[http://www.securityfocus.com/bid/37575 Report]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;cartikads&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.cartikahosting.com com_cartikads] Remote File Upload Vulnerability &lt;br /&gt;
&#039;&#039;&#039;Mambo&#039;&#039;&#039; Open Source ads management component&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;Docman seller&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/e-commerce/subscriptions/5000 Document seller]  Input passed via the &amp;quot;id&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_dm_orders&amp;quot;, &amp;quot;task&amp;quot; is set to &amp;quot;order_form&amp;quot;, and &amp;quot;payment_method&amp;quot; is set to &amp;quot;Paypal&amp;quot;) is not properly sanitised before being used in SQL queries. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code.&lt;br /&gt;
|[http://secunia.com/advisories/38024/ secunia]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | [http://extensions.joomla.org/extensions/e-commerce/subscriptions/5000 Updated 10th Jan]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;ozio gallery&#039;&#039;&#039; &lt;br /&gt;
|summary: [http://extensions.joomla.org/extensions/photos-a-images/photo-flash-gallery/4883 Ozio Gallery2] SQLi eploit &lt;br /&gt;
|[http://www.viruslist.com/en/advisories/37974 Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   |[http://oziogallery.joomla.it/index.php?option=com_content&amp;amp;view=article&amp;amp;id=62%3Anuova-ozio-gallery-23-aggiornamento-di-sicurezza&amp;amp;catid=2%3Anotizie&amp;amp;Itemid=13&amp;amp;lang=en developer update Jan 11]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;RD-Autos Free&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/vertical-markets/vehicles/5458 RD-Autos Free ] This version is now commercial not free&lt;br /&gt;
|Private advisory to JED Jan 11&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039; Product Retired and replaced&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;DailyMeals&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/vertical-markets/food-a-beverage/4764 dailymeals] Local File Inclusion  Vulnerability  Jan 02&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;RD-Autos Pro&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/vertical-markets/vehicles/6357 RD Autos Pro]&lt;br /&gt;
|Private advisory to JED Jan 11&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;  Upgrade to  Latest version  be 2.0.2&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== New format Feed Starts Here ==&lt;br /&gt;
Please do not change your [http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions feed url], only the feed format has changed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== February, March, April, May 2010  Reported Vulnerable Extensions ==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic clearly marked with the first word in the title being &#039;&#039;Vulnerable Report&#039;&#039; where the security moderators or JSST team will respond. For a guide to the [http://docs.joomla.org/Vulnerable_Extensions_List_0210#Codes_used codes]&lt;br /&gt;
&lt;br /&gt;
[http://docs.joomla.org/Vulnerable_Extensions_List Previous Reports]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Date Added&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot; |&#039;&#039;&#039;Extension Update Link &amp;amp; Date&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   JE Poll  ==&lt;br /&gt;
|http://slideshow.joomlaextensions.co.in/ SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  MyCar   ==&lt;br /&gt;
|http://www.unisoft.me/extensions/ sqli ID&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  MediQnA   ==&lt;br /&gt;
|MediQnA LFI vulnerability version : v1.1&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   JE Job  ==&lt;br /&gt;
|http://joomlaextensions.co.in/ LFI SQLi&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  BF Quiz   ==&lt;br /&gt;
|SQL Injection Exploit Version(s) = 1.3.0&lt;br /&gt;
|&lt;br /&gt;
|[http://www.tamlyncreative.com.au/software/forum/index.php?topic=729.0 Developer update to BF Quiz v1.3.1]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Ozio Gallery 2  ==&lt;br /&gt;
|DT and open email relay&lt;br /&gt;
|280510&lt;br /&gt;
|[http://oziogallery.joomla.it/index.php?option=com_content&amp;amp;view=article&amp;amp;id=65:rilasciata-la-versione-ozio-gallery-25&amp;amp;catid=2:notizie&amp;amp;Itemid=13&amp;amp;lang=en Developer update and security release] 010610&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  SectionEx   ==&lt;br /&gt;
|Stack Ideas section Ex LFI&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  ActiveHelper LiveHelp    ==&lt;br /&gt;
|XSS in [http://extensions.joomla.org/extensions/communication/chat/12492 LiveHelp] &lt;br /&gt;
|200510&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
==  RS Comments   ==&lt;br /&gt;
|XSS Vulnerability &lt;br /&gt;
|&lt;br /&gt;
|http://www.rsjoomla.com/customer-support/documentations/96--general-overview-of-the-component/393-changelog.html - fix posted 210510&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  BCA RSS Feed   ==&lt;br /&gt;
|LFI and other vulnerabilities&lt;br /&gt;
|&lt;br /&gt;
|Since changed its name to NinjaRss &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
== SimpleDownload    ==&lt;br /&gt;
|http://extensions.joomla.org/extensions/directory-a-documentation/downloads/10717 various exploits&lt;br /&gt;
|160510&lt;br /&gt;
|updated version (version 0.9.6)&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
==  JE Quotation Form   ==&lt;br /&gt;
|http://joomlaextensions.co.in/free-download/doc_download/11-je-quotation-form.html  LFI&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  konsultasi   ==&lt;br /&gt;
|SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== Aardvertiser    ==&lt;br /&gt;
|Local File Inclusion Vulnerability	&lt;br /&gt;
http://extensions.joomla.org/extensions/ads-a-affiliates/classified-ads/9454&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Seber Cart    ==&lt;br /&gt;
|Local File Disclosure Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|[http://www.sebercart.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=158 Developer Update 140510]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  FDione Form Wizard   ==&lt;br /&gt;
|lfi vulnerability	&lt;br /&gt;
|140510 200510&lt;br /&gt;
|[dionesoft.com Update to Dione Form Wizard (v. 1.0.4)].&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Custom PHP Pages  ==&lt;br /&gt;
|http://extensions.joomla.org/extensions/edition/custom-code-in-content/5057 LFI Vulnerability		&lt;br /&gt;
|&lt;br /&gt;
|[fijiwebdesign.com Developer declares not vulnerable 140510]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Camp26 Visitor    ==&lt;br /&gt;
|RFI www.camp26.biz&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    iJoomla News Portal  ==&lt;br /&gt;
|RFI SID&lt;br /&gt;
|&lt;br /&gt;
|[http://www.ijoomla.com/forum/index.php/topic,4480.0.html Update to 1.5.10]&lt;br /&gt;
|-&lt;br /&gt;
|   |&lt;br /&gt;
&lt;br /&gt;
==  article Factory Manager   ==&lt;br /&gt;
|RFI &amp;amp; Input Validation Error http://www.thefactory.ro/shop/joomla-components/article-manager.html&lt;br /&gt;
|may 2010&lt;br /&gt;
|can not reproduce and unproven, http://www.thefactory.ro&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Table JX Component    ==&lt;br /&gt;
|http://www.toolsjx.com/ Table JX Component XSS&lt;br /&gt;
|060510 - update 130510&lt;br /&gt;
|Version: 1.5.5 considered unsafe&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   JE Property  ==&lt;br /&gt;
|JE Property Finder Upload Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   Noticeboard  ==&lt;br /&gt;
|Noticeboard for Joomla &amp;quot;controller&amp;quot; Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==SmartSite     ==&lt;br /&gt;
|SmartSite com_smartsite Local File Inclusion Vulnerability &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  ABC    ==&lt;br /&gt;
|ABC SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|reported as updated to JED 290410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  htmlcoderhelper graphics   ==&lt;br /&gt;
|htmlcoderhelper graphics v1.0.6 LFI Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
== Ultimate Portfolio    ==&lt;br /&gt;
|Ultimate Portfolio  Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  huruhelpdesk   ==&lt;br /&gt;
|http://www.huruhelpdesk.net sqli injection &lt;br /&gt;
|&lt;br /&gt;
|[http://www.huruhelpdesk.net/forums/8-announcements/392--sql-injection-reveals-user-md5-password-hash Reported fix]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Archery Scores   ==&lt;br /&gt;
| [http://lispeltuut.org/ Archery Scores (com_archeryscores) v1.0.6 LFI Vulnerability]&lt;br /&gt;
&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  ZiMB Manager   ==&lt;br /&gt;
|Joomla Component ZiMB Manager Local File Inclusion Vulnerability&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Matamko   ==&lt;br /&gt;
|Matamko Local File Inclusion Vulnerability&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Multiple Root   ==&lt;br /&gt;
|Multiple Root Local File Inclusion Vulnerability http://joomlacomponent.inetlanka.com/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Multiple Map   ==&lt;br /&gt;
|Multiple Map Local File Inclusion Vulnerability joomlacomponent.inetlanka.com&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   Contact Us Draw Root Map  ==&lt;br /&gt;
|Draw Root Map Local File Inclusion Vulnerability joomlacomponent.inetlanka.com&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  iF surfALERT   ==&lt;br /&gt;
|[http://www.inertialfate.za.net/ iF surfALERT] Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   GBU FACEBOOK  ==&lt;br /&gt;
|GBU FACEBOOK SQL injection vulnerability http://www.gbugrafici.nl/gbufacebook/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   jnewspaper  ==&lt;br /&gt;
|jnewspaper (cid) SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JTM Reseller   ==&lt;br /&gt;
|TM Reseller SQL injection vulnerability&lt;br /&gt;
|&lt;br /&gt;
|[http://jtmreseller.com/ Developer Update] &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  media Mall Factory   ==&lt;br /&gt;
|SQLi&lt;br /&gt;
|200410&lt;br /&gt;
| [http://www.thefactory.ro/contact-us/product-update-request.html Solution: update to 1.0.5] &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Gadget Factory  ==&lt;br /&gt;
|LFi&lt;br /&gt;
|200410&lt;br /&gt;
|[http://www.thefactory.ro/contact-us/product-update-request.html Solution: update to 1.5.1]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Deluxe Blog Factory   ==&lt;br /&gt;
|SQLi&lt;br /&gt;
|200410&lt;br /&gt;
|[http://www.thefactory.ro/contact-us/product-update-request.html update to 1.1.2]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
== MT Fire Eagle ==&lt;br /&gt;
&lt;br /&gt;
|LFI http://joomlacode.org/gf/project/jfireeagle/frs/ http://www.moto-treks.com&lt;br /&gt;
| 190410&lt;br /&gt;
| product considered retired and to be replaced by dev&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==  com properties   ==&lt;br /&gt;
| http://com-property.com/ SQL I&lt;br /&gt;
|&lt;br /&gt;
|[http://www.com-property.com/images/fbfiles/files/properties-20100413.txt developer announced fix]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Sweetykeeper   ==&lt;br /&gt;
|Sweetykeeper Local File Inclusion Vulnerability  http://www.joomlacorner.com/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  jvehicles   ==&lt;br /&gt;
|SQL Injection http://jvehicles.com&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  worldrates   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  cvmaker   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  advertising   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   horoscope  ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   webtv  ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  diary   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Multi-Venue Restaurant Menu Manager (MVRMM)  ==&lt;br /&gt;
|http://www.focusdev.co.uk/ &lt;br /&gt;
|120410 &lt;br /&gt;
||[http://extensions.joomla.org/extensions/vertical-markets/food-a-beverage/10015 Version 1.5.2 Stable Update 4]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Memory Book   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   TRAVELbook  ==&lt;br /&gt;
| http://www.demo-page.de/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
== AlphaUserPoints    ==&lt;br /&gt;
|&lt;br /&gt;
|[http://www.alphaplug.com/index.php/downloads.html?func=fileinfo&amp;amp;id=31 developer upgrade]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JprojectMan   ==&lt;br /&gt;
|LFI http://extensions.joomla.org/extensions/communities-a-groupware/project-a-task-management/5676&lt;br /&gt;
|110410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   CKForms  ==&lt;br /&gt;
|1.3.4 release - Important LFI security fix [http://joomlacode.org/gf/project/ckforms/news/?action=NewsThreadView&amp;amp;id=2814 ]&lt;br /&gt;
|07-04-10 &lt;br /&gt;
|[http://ckforms.cookex.eu/download/download.php upgrade]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   econtentsite  ==&lt;br /&gt;
|LFI&lt;br /&gt;
|040410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    Jvehicles ==&lt;br /&gt;
|ID&lt;br /&gt;
|040410&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  smestorage   ==&lt;br /&gt;
|[http://www.smestorage.com SMEStorage] LFI&lt;br /&gt;
&lt;br /&gt;
|Updated 29 March 10&lt;br /&gt;
|[http://gelembjuk.com/index.php?option=com_content&amp;amp;view=section&amp;amp;layout=blog&amp;amp;id=1&amp;amp;Itemid=55 developer fix] to 1.1&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JE Tooltip   ==&lt;br /&gt;
|[http://joomlaextensions.co.in/formcreator/ JE Tooltip] LFI&lt;br /&gt;
|Updated 23 March &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Gift Exchange Beta   ==&lt;br /&gt;
|[http://extensions.joomla.org/extensions/communities-a-groupware/membership/11680 Gift exchange] SQLi&lt;br /&gt;
|Updated 23 March &lt;br /&gt;
|[http://socialables.com/28-Jomsocial/Gift-Exchange/flypage.tpl.html upgrade beta 1.0.1]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  RokDownloads  ==&lt;br /&gt;
|[[http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7967 LFI]] &lt;br /&gt;
|15 march 2010&lt;br /&gt;
||upgrade to [http://www.rockettheme.com/extensions-updates/638-rokdownloads-10-released version 1.0]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    gigcalender   ==&lt;br /&gt;
&lt;br /&gt;
|SQLi [http://extensions.joomla.org/extensions/calendars-a-events/events/97)http://extensions.joomla.org/extensions/calendars-a-events/events/97 gigcalender]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    heza content   ==&lt;br /&gt;
|SQLi [http://extensions.joomla.org/extensions/structure-a-navigation/sections-a-categories/10427)http://extensions.joomla.org/extensions/structure-a-navigation/sections-a-categories/10427  heza content]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   juliaportfolio   ==&lt;br /&gt;
|LFI [http://extensions.joomla.org/extensions/directory-&amp;amp;-documentation/portfolio/8519/details juliaportfolio]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  Flash Magazine Deluxe   ==&lt;br /&gt;
|SQL Injection Vulnerability.&lt;br /&gt;
|Feb 25&lt;br /&gt;
|&#039;&#039;&#039;[http://www.joomplace.com/flash-magazine-deluxe/flash-magazine-deluxe-description.html Developer Update Version 2.0.11 09/03/10]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  SqlReport   ==&lt;br /&gt;
|Sqlreport has a sql/RFI exploit. awaiting confirmation on exact developer.&lt;br /&gt;
|Feb 20&lt;br /&gt;
|&#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  Scriptegrator   ==&lt;br /&gt;
|Core Design [http://www.greatjoomla.com/extensions/plugins/core-design-scriptegrator-plugin.html Scriptegrator] RFI exploit&lt;br /&gt;
|Feb 20&lt;br /&gt;
|[http://www.greatjoomla.com/extensions/plugins/core-design-scriptegrator-plugin.html Dev Upgrade announcement]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  AllVideos 3.1  ==&lt;br /&gt;
|&lt;br /&gt;
A vulnerability discovered in versions 3.0. and 3.1 of the plugin can be exploited by malicious people to disclose potentially sensitive information. For security reasons we will not be providing further details to safeguard users of affected versions. http://www.joomlaworks.gr/content/view/77/34/]|&lt;br /&gt;
|17 Feb&lt;br /&gt;
| [http://joomlaworks.googlecode.com/files/plg_jw_allvideos-v3.3_j1.5.zip Version 3.3 release 18th]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  RW Cards   ==&lt;br /&gt;
| [http://extensions.joomla.org/extensions/3430/details RW Card] LFI and ID exploit [http://www.weberr.de/ Dev Site]&lt;br /&gt;
|180210&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;  [http://www.weberr.de/index.php/forum.html?func=view&amp;amp;catid=5&amp;amp;id=1939&amp;amp;limit=6 developer update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
== Yelp ==&lt;br /&gt;
| SQLi - Unable to locate developer. Possibly a custom extension.&lt;br /&gt;
|Feb 01 &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  &#039;&#039;&#039;Autartitarot&#039;&#039;&#039;   ==&lt;br /&gt;
|Directory Traversal. Back end access required&lt;br /&gt;
| Feb 05&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039; Please upgrade to [http://www.autartica.be/en/autartitarot version 1.0.4]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  communitypolls   ==&lt;br /&gt;
|LFI - [http://www.corejoomla.com/ community polls] &lt;br /&gt;
|Feb 17&lt;br /&gt;
||upgrade to [http://www.corejoomla.com/ version 1.5.3]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This list is change protected, for updates or additions [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Codes used ==&lt;br /&gt;
SQLi - SQL injection [http://en.wikipedia.org/wiki/Code_injection#SQL_injection wikipedia]&lt;br /&gt;
&lt;br /&gt;
LFI - Local File Inclusion [http://www.scribd.com/doc/6498408/Remote-and-Local-File-Inclusion-Explained scribd]&lt;br /&gt;
&lt;br /&gt;
RFI - Remote file inclusion [http://en.wikipedia.org/wiki/Remote_File_Inclusion wikipedia]&lt;br /&gt;
&lt;br /&gt;
DT - Directory Traversal [http://en.wikipedia.org/wiki/Directory_traversal wikipedia]&lt;br /&gt;
&lt;br /&gt;
ID = Information Disclosure: account information or sensitive information publicly viewable&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Developers - How to get yourself removed from the VEL ==&lt;br /&gt;
&lt;br /&gt;
Resolved items will be removed after a suitable period and not on resolution&lt;br /&gt;
&lt;br /&gt;
Please solve the issues and:&lt;br /&gt;
&lt;br /&gt;
* If JED listed &lt;br /&gt;
Attach the new zip file at your actual JED listing.&lt;br /&gt;
&lt;br /&gt;
Change the extension version at JED listing.&lt;br /&gt;
&lt;br /&gt;
Contact the JED by mail back with a notice and ask them republish your listing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* If not JED listed. &lt;br /&gt;
Inform us by PM of the link to your resolution notice on your website.&lt;br /&gt;
&lt;br /&gt;
== Future Actions &amp;amp; WIP ==&lt;br /&gt;
&lt;br /&gt;
[http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions RSS feed] completed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to feed VEL direct to twitter&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
The RSS feed is currently fed by item entry order and not by date fixed. &lt;br /&gt;
List as discussed in  [[jtopic:455746]] by [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=67439 PhilD] editing by [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Category:Security]]&lt;br /&gt;
[[Category:Security_FAQ]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Hidabe</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived:Vulnerable_Extensions_List&amp;diff=28371</id>
		<title>Archived:Vulnerable Extensions List</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived:Vulnerable_Extensions_List&amp;diff=28371"/>
		<updated>2010-06-03T08:29:53Z</updated>

		<summary type="html">&lt;p&gt;Hidabe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
== Check and Report.  ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic or the [http://forum.joomla.org/viewforum.php?f=470 extensions] topic clearly marked with the first word in the title being &#039;&#039;Vulnerable&#039;&#039; where the security moderators or JSST team will respond. &lt;br /&gt;
This list is change protected, for updates or editing requests [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
*If you are seeing this page on any site other than [http://docs.joomla.org/Vulnerable_Extensions_List the Offical Joomla Documentation] you may be seeing an out of date version or experiencing [http://en.wikipedia.org/wiki/Plagiarism plagiary] and the links may not work properly&lt;br /&gt;
&lt;br /&gt;
== How to use this list ==&lt;br /&gt;
&#039;&#039;&#039;Items will be removed after a suitable period and not on resolution&#039;&#039;&#039;&lt;br /&gt;
All known vulnerable extensions are the listed in the first column. Any in &amp;lt;span style=&amp;quot;background:red; color:white&amp;quot;&amp;gt;a red box &amp;lt;/span&amp;gt;are high where we have not been given a fix for. Alert Advisory details in the centre column (the date is in American format mm/dd/yyyy). &lt;br /&gt;
The link to the advisory notice. &lt;br /&gt;
Finally a link to the notice about any &amp;lt;span style=&amp;quot;background:#cef2e0; color:black&amp;quot;&amp;gt;update with link&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;background:red; color:white&amp;quot;&amp;gt;&#039;&#039;&#039;Not Known&#039;&#039;&#039; &amp;lt;/span&amp;gt; where none is known.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This list is compiled from found information and may not be an up to date accurate list&#039;&#039;&#039; &#039;&#039;We do &#039;&#039;&#039;NOT&#039;&#039;&#039; promise to test or validate these reports. We do &#039;&#039;&#039;NOT&#039;&#039;&#039; guarantee the quality or effectiveness of any updates reported to us or listed here.&#039;&#039;&lt;br /&gt;
To sign up for the feed please [http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions follow this link]&lt;br /&gt;
&lt;br /&gt;
== November 2009 Compiled Vulnerability Reports. ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Items are not in any particular order.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_ajaxchat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: PHP remote file inclusion vulnerability in Fiji Web Design Ajax Chat (&#039;&#039;&#039;com_ajaxchat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the GLOBALS[mosConfig_absolute_path] parameter to tests/ajcuser.php.New version release December 22,2009&lt;br /&gt;
Published: october 28 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3822|CVE-2009-3822]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/communication/chat/10767 update v 1.1]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_booklibrary&#039;&#039;&#039;&lt;br /&gt;
|  PHP remote file inclusion vulnerability in doc/releasenote.php in the BookLibrary (&#039;&#039;&#039;com_booklibrary&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the mosConfig_absolute_path parameter, a different vector than [[NIST:CVE-2009-2637|CVE-2009-2637]]. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 10/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|  [[NIST:CVE-2009-3817|CVE-2009-3817]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;[http://ordasoft.com/Download/Joomla1.0-extensions/Joomla1.0-components/View-category.html developer site updates]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|   style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_foobla_suggestions&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the foobla Suggestions (&#039;&#039;&#039;com_foobla_suggestions&#039;&#039;&#039;) component 1.5.11 for Joomla! allows remote attackers to execute arbitrary SQL commands via the idea_id parameter to index.php.&lt;br /&gt;
Published: 10/11/2009&lt;br /&gt;
CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|  [[NIST:CVE-2009-3669|CVE-2009-3669]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://foobla.com/news/latest/fixed-foobla-suggestions-for-joomla-idea_id-sql-injection-vulnerability.html developer reported upgrade]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_djcatalog&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the DJ-Catalog (&#039;&#039;&#039;com_djcatalog&#039;&#039;&#039;) component for Joomla! allow remote attackers to execute arbitrary SQL commands via the (1) id parameter in a showItem action and (2) cid parameter in a show action to index.php.&lt;br /&gt;
Published: 10/11/2009&lt;br /&gt;
CVSS Severity: 6.8 (MEDIUM)&lt;br /&gt;
|  [[NIST:CVE-2009-3661|CVE-2009-3661]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_cbresumebuilder&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JoomlaCache CB Resume Builder (&#039;&#039;&#039;&#039;&#039;&#039;com_cbresumebuilder&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the group_id parameter in a group_members action to index.php.&lt;br /&gt;
Published: 10/09/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3645|CVE-2009-3645]] &lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://www.joomlacache.com/commercial-extensions/security-update.html Developer Update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;com_soundset&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Soundset (&#039;&#039;&#039;com_soundset&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the cat_id parameter to index.php.&lt;br /&gt;
Published: 10/09/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3644|CVE-2009-3644]]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;com_sportfusion&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Kinfusion SportFusion (&#039;&#039;&#039;com_sportfusion&#039;&#039;&#039;) component 0.2.2 through 0.2.3 for Joomla! allows remote attackers to execute arbitrary SQL commands via the cid[0] parameter in a teamdetail action to index.php.&lt;br /&gt;
Published: 09/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3491|CVE-2009-3491]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_icrmbasic&#039;&#039;&#039;&lt;br /&gt;
|  Summary: A certain interface in the iCRM Basic (&#039;&#039;&#039;com_icrmbasic&#039;&#039;&#039;) component 1.4.2.31 for Joomla! does not require administrative authentication, which has unspecified impact and remote attack vectors. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 09/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3481|CVE-2009-3481]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_mytube&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the MyRemote Video Gallery (&#039;&#039;&#039;com_mytube&#039;&#039;&#039;) component 1.0 Beta for Joomla! allows remote attackers to execute arbitrary SQL commands via the user_id parameter in a videos action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3446|CVE-2009-3446]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_fastball&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Fastball (&#039;&#039;&#039;com_fastball&#039;&#039;&#039;) component 1.1.0 through 1.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the league parameter to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3443|CVE-2009-3443]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://www.fastballproductions.com   latest version] 1.2.1 &lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_facebook&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JoomlaFacebook (&#039;&#039;&#039;com_facebook&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a student action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3438|CVE-2009-3438]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_tupinambis&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Tupinambis (&#039;&#039;&#039;com_tupinambis&#039;&#039;&#039;) component 1.0 for Mambo and Joomla! allows remote attackers to execute arbitrary SQL commands via the proyecto parameter in a verproyecto action to index.php.&lt;br /&gt;
Published: 09/28/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3434|CVE-2009-3434]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_idoblog&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the IDoBlog (&#039;&#039;&#039;com_idoblog&#039;&#039;&#039;) component 1.1 build 30 for Joomla! allows remote attackers to execute arbitrary SQL commands via the userid parameter in a profile action to index.php, a different vector than [[NIST:CVE-2008-2627|CVE-2008-2627]].&lt;br /&gt;
Published: 09/25/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3417|CVE-2009-3417]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |&#039;&#039;&#039;[http://idojoomla.com/download.html/ &#039;&#039;&#039;New Version v 1.1&#039;&#039;&#039; (build 32)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_hbssearch&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Cross-site scripting (&#039;&#039;&#039;XSS&#039;&#039;&#039;) vulnerability in the Hotel Booking Reservation System (&#039;&#039;&#039;aka HBS or com_hbssearch&#039;&#039;&#039;) component for Joomla! allows remote attackers to inject arbitrary web script or HTML via the adult parameter in a showhoteldetails action to index.php.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 4.3 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3368|CVE-2009-3368]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_hbssearch&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the Hotel Booking Reservation System (&#039;&#039;&#039;aka HBS or com_hbssearch&#039;&#039;&#039;) component for Joomla! allow remote attackers to execute arbitrary SQL commands via the (&#039;&#039;&#039;1&#039;&#039;&#039;) h_id, (&#039;&#039;&#039;2&#039;&#039;&#039;) id, and (&#039;&#039;&#039;3&#039;&#039;&#039;) rid parameters to longDesc.php, and the h_id parameter to (&#039;&#039;&#039;4&#039;&#039;&#039;) detail.php, (&#039;&#039;&#039;5&#039;&#039;&#039;) detail1.php, (&#039;&#039;&#039;6&#039;&#039;&#039;) detail2.php, (&#039;&#039;&#039;7&#039;&#039;&#039;) detail3.php, (&#039;&#039;&#039;8&#039;&#039;&#039;) detail4.php, (&#039;&#039;&#039;9&#039;&#039;&#039;) detail5.php, (&#039;&#039;&#039;10&#039;&#039;&#039;) detail6.php, (&#039;&#039;&#039;11&#039;&#039;&#039;) detail7.php, and (&#039;&#039;&#039;12&#039;&#039;&#039;) detail8.php, different vectors than [[NIST:CVE-2008-5865|CVE-2008-5865]], [[NIST:CVE-2008-5874|CVE-2008-5874]], and [[NIST:CVE-2008-5875|CVE-2008-5875]].&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3357|CVE-2009-3357]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_alphauserpoints&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in frontend/assets/ajax/checkusername.php in the AlphaUserPoints (&#039;&#039;&#039;com_alphauserpoints&#039;&#039;&#039;) component 1.5.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the username2points parameter.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3342|CVE-2009-3342]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://www.alphaplug.com/index.php/news/142-alphauserpoints-153-released.html 1.5.3]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;TurtuShout&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the TurtuShout component 0.11 for Joomla! allows remote attackers to execute arbitrary SQL commands via the Name field.&lt;br /&gt;
Published: 09/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3335|CVE-2009-3335]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jinc&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Lhacky! Extensions Cave Joomla! Integrated Newsletters Component (&#039;&#039;&#039;aka JINC or com_jinc&#039;&#039;&#039;) component 0.2 for Joomla! allows remote attackers to execute arbitrary SQL commands via the newsid parameter in a messages action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3334|CVE-2009-3334]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jbudgetsmagic&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JBudgetsMagic (&#039;&#039;&#039;com_jbudgetsmagic&#039;&#039;&#039;) component 0.3.2 through 0.4.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the bid parameter in a mybudget action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3332|CVE-2009-3332]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;[http://sopinet.com/jbudgetsmagic/index.php?option=com_remository&amp;amp;Itemid=5&amp;amp;lang=en Update to 0.4.1]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_surveymanager&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Focusplus Developments Survey Manager (&#039;&#039;&#039;com_surveymanager&#039;&#039;&#039;) component 1.5.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the stype parameter in an editsurvey action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3325|CVE-2009-3325]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_album&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Directory traversal vulnerability in the Roland Breedveld Album (&#039;&#039;&#039;com_album&#039;&#039;&#039;) component 1.14 for Joomla! allows remote attackers to access arbitrary directories and have unspecified other impact via a .. (&#039;&#039;&#039;dot dot&#039;&#039;&#039;) in the target parameter to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3318|CVE-2009-3318]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;com_jreservation&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the [http://extensions.joomla.org/extensions/vertical-markets/booking-a-reservation/9798 JReservation] (&#039;&#039;&#039;com_jreservation&#039;&#039;&#039;) component 1.0 and 1.5 for Joomla! allows remote attackers to execute arbitrary SQL commands via the pid parameter in a propertycpanel action to index.php.&lt;br /&gt;
Published: 09/23/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3316|CVE-2009-3316]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |  [http://www.jforjoomla.com Updated 28th] Jan fixed 13th Nov&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;IXXO Cart Standalone&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in IXXO Cart Standalone before 3.9.6.1, and the IXXO Cart component for Joomla! 1.0.x, allows remote attackers to execute arbitrary SQL commands via the parent parameter.&lt;br /&gt;
Published: 09/16/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3215|CVE-2009-3215]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_digifolio&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the DigiFolio (&#039;&#039;&#039;com_digifolio&#039;&#039;&#039;) component 1.52 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a project action to index.php.&lt;br /&gt;
Published: 09/15/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3193|CVE-2009-3193]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_aclassf&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Cross-site scripting (&#039;&#039;&#039;XSS&#039;&#039;&#039;) vulnerability in &#039;&#039;&#039;gmap.php&#039;&#039;&#039; in the Almond Classifieds (&#039;&#039;&#039;com_aclassf&#039;&#039;&#039;) component 7.5 for Joomla! allows remote attackers to inject arbitrary web script or HTML via the addr parameter.&lt;br /&gt;
Published: 09/10/2009&lt;br /&gt;
CVSS Severity: 4.3 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3155|CVE-2009-3155]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;   | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_aclassf&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Almond Classifieds (&#039;&#039;&#039;com_aclassf&#039;&#039;&#039;) component 7.5 for Joomla! allows remote attackers to execute arbitrary SQL commands via the replid parameter in a manw_repl add_form action to index.php, a different vector than [[NIST:CVE-2009-2567|CVE-2009-2567]].&lt;br /&gt;
Published: 09/10/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3154|CVE-2009-3154]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://www.almondsoft.com/alcl.html Developer latest component]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jabode&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in Jabode horoscope extension (&#039;&#039;&#039;com_jabode&#039;&#039;&#039;) for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a sign task to index.php.&lt;br /&gt;
Published: 09/08/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
|  [[NIST:CVE-2008-7169|CVE-2008-7169]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_gameserver&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Game Server (&#039;&#039;&#039;com_gameserver&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a gamepanel action to index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3063|CVE-2009-3063]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_artportal&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Artetics.com Art Portal (&#039;&#039;&#039;com_artportal&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the portalid parameter to index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3054|CVE-2009-3054]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;com_agora&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Directory traversal vulnerability in the Agora (&#039;&#039;&#039;com_agora&#039;&#039;&#039;) component 3.0.0b for Joomla! allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the action parameter to the avatars page, reachable through index.php.&lt;br /&gt;
Published: 09/03/2009&lt;br /&gt;
CVSS Severity: 6.8 (&#039;&#039;&#039;MEDIUM&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-3053|CVE-2009-3053]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |&#039;&#039;&#039;[http://jvitals.com/index.php?option=com_rokdownloads&amp;amp;view=file&amp;amp;Itemid=108&amp;amp;id=282:agora-3-0 3.0.7]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_simpleshop&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Simple Shop Galore (&#039;&#039;&#039;com_simpleshop&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the section parameter in a section action to index.php, a different vulnerability than [[NIST:CVE-2008-2568|CVE-2008-2568]]. NOTE: this issue was disclosed by an unreliable researcher, so the details might be incorrect.&lt;br /&gt;
Published: 08/24/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-7033|CVE-2008-7033]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_groups&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Permis (&#039;&#039;&#039;com_groups&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a list action to index.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 08/17/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2009-2789|CVE-2009-2789]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;com_content&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the content component (&#039;&#039;&#039;com_content&#039;&#039;&#039;) 1.0.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the Itemid parameter in a blogcategory action to index.php.&lt;br /&gt;
Published: 08/10/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6923|CVE-2008-6923]]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://developer.joomla.org/security/news/305-20091103-core-front-end-editor-issue-.html Resolution]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the last parameter to getChatRoom.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6883|CVE-2008-6883]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allows remote attackers to use the xmlhttp.php script as an open HTTP proxy to hide network scanning activities or scan internal networks via a GET request with a full URL in the query string.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6882|CVE-2008-6882]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_livechat&#039;&#039;&#039;&lt;br /&gt;
|  Summary: Multiple SQL injection vulnerabilities in the Live Chat (&#039;&#039;&#039;com_livechat&#039;&#039;&#039;) component 1.0 for Joomla! allow remote attackers to execute arbitrary SQL commands via the last parameter to (&#039;&#039;&#039;1&#039;&#039;&#039;) getChat.php, (&#039;&#039;&#039;2&#039;&#039;&#039;) getChatRoom.php, and (&#039;&#039;&#039;3&#039;&#039;&#039;) getSavedChatRooms.php.&lt;br /&gt;
Published: 07/30/2009&lt;br /&gt;
CVSS Severity: 7.5 (&#039;&#039;&#039;HIGH&#039;&#039;&#039;)&lt;br /&gt;
|  [[NIST:CVE-2008-6881|CVE-2008-6881]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;JUMI&#039;&#039;&#039;&lt;br /&gt;
|  There is a backdoor in JUMI that installs itself when JUMI is installed on your web site. It sends your credentials to a website, and sets up a back door for remote code execution.&lt;br /&gt;
Please remove JUMI2.0.5 immediately. &lt;br /&gt;
It will be simple enough to remove the compromised code from this download, but you need to do &lt;br /&gt;
a full security audit on your site as well as you have been compromised. Added November 2009&lt;br /&gt;
|  [http://code.google.com/p/jumi/updates/list Report]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://code.google.com/p/jumi/updates/list Jumi Update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;com_photoblog&#039;&#039;&#039;&lt;br /&gt;
|  Input Validation Error Added November 2009&lt;br /&gt;
|  [http://www.securityfocus.com/bid/36809/ 36809]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://webguerilla.net/downloads/3-components-for-joomla-1 webguerilla Photoblog alpha 3b]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_jshop&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the JShop (&#039;&#039;&#039;com_jshop&#039;&#039;&#039;) component for Joomla! allows remote attackers to execute arbitrary SQL commands via the pid parameter in a product action to index.php.&lt;br /&gt;
Published: 11/02/2009&lt;br /&gt;
CVSS Severity: 7.5 &#039;&#039;&#039;(HIGH)&#039;&#039;&#039; &lt;br /&gt;
|  [[NIST:CVE-2009-3835|CVE-2009-3835]]&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;BF Survey Pro&#039;&#039;&#039;&lt;br /&gt;
|  Summary: SQL injection vulnerability in the &#039;&#039;&#039;BF Survey Pro&#039;&#039;&#039; v1.2.5 or lower  (fixed in version 1.2.6). &#039;&#039;&#039;BF Survey Basic v1.0&#039;&#039;&#039; (fixed in version 1.1). &#039;&#039;&#039;BF Quiz v1.1.1&#039;&#039;&#039; (fixed in version 1.2 or greater) Added November 2009&lt;br /&gt;
|  [http://www.tamlyncreative.com.au/software/forum/index.php?topic=357.0 tamlyncreative.com.au]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://www.tamlyncreative.com.au/software/forum/index.php?topic=357.0 update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;Joo!BB 0.9.1 &#039;&#039;&#039;&lt;br /&gt;
|  Summary: Persistent XSS/MySQL Injection vulnerabilities in Joo!BB 0.9.1 Added November 2009&lt;br /&gt;
|  [http://www.joobb.org/community/board/topic/700-MultipleXSSSQLInjectionVulnerabilities.html joob.org]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.joobb.org/downloads/components.html update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;sh404sef &#039;&#039;&#039;&lt;br /&gt;
|  Summary: sh404sef URI XSS Vulnerability  Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/sh404sef-uri-xss-vulnerability.html jeffchannell.com]&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://extensions.siliana.com/en/2009060876/sh404SEF-and-url-rewriting/Interim-release-of-sh404sef-for-Joomla-1.5.x.html update]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;AWD Wall 1.5&#039;&#039;&#039; &lt;br /&gt;
|  Summary &#039;&#039;&#039;AWD Wall 1.5&#039;&#039;&#039; Blind SQL Injection Vulnerability.The Joomla component AWD Wall 1.5 suffers from an SQL Injection vulnerability in its handling of the &#039;cbuser&#039; parameter.Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/awd-wall-15-blind-sql-injection-vulnerability.html Notice]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;[http://www.awdsolution.com/template_demo/testsite/index.php?option=com_content&amp;amp;view=article&amp;amp;id=48&amp;amp;Itemid=72 developer update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;EasyBook 2.0.0rc4&#039;&#039;&#039;&lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;EasyBook 2.0.0rc4&#039;&#039;&#039; suffers from multiple persistent XSS vulnerabilities. One seems fairly critical, while the others would take some incredible creativity to actively exploit. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/easybook-200rc4-multiple-xss-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;F!BB 1.5.96&#039;&#039;&#039; &lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;F!BB 1.5.96 RC&#039;&#039;&#039; suffers from multiple persistent XSS vulnerabilities, as well SQL Injection in its user search feature. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/fbb-1596-rc-multiple-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Testimonial Ku 2.0 Admin Panel&#039;&#039;&#039;&lt;br /&gt;
|  Summary: The Joomla component &#039;&#039;&#039;Testimonial Ku 2.0&#039;&#039;&#039; is vulnerable to persistent XSS in the administrator panel. A malicious user can submit a testimonial containing &amp;lt;script&amp;gt; tags with absolutely no quotes and inject that script into the administrator panel through any of the available inputs except &amp;quot;email&amp;quot;. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/testimonial-ku-20-admin-panel-persistent-xss.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;MS Comment 0.8.0b&#039;&#039;&#039;&lt;br /&gt;
|  Summary &#039;&#039;&#039;MS Comment 0.8.0b for Joomla&#039;&#039;&#039;, a commenting plugin, suffers from an multiple vulnerabilities. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/ms-comment-080b-multiple-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;!JoomlaComment 4.0 beta1&#039;&#039;&#039;&lt;br /&gt;
|  Summary: &#039;&#039;&#039;!JoomlaComment 4.0 beta1&#039;&#039;&#039;, a commenting plugin, suffers from multiple XSS vulnerabilities. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/joomlacomment-40-beta1-multiple-xss-vulnerabilities.html Alert]&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://compojoom.com/blog/8-news/121-joomlacomment-40-rc1-released Developer Notice 4.0 rc1]&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;WebAmoeba Ticket System 3.0.0&#039;&#039;&#039;&lt;br /&gt;
|  Summary:  &#039;&#039;&#039;WebAmoeba Ticket System 3.0.0&#039;&#039;&#039;, a Joomla help desk component. The vulnerability is with the BBCode library used to parse BBCode tags, as it does not strip javascript: urls from [url] tags. Added November 2009&lt;br /&gt;
|  [http://jeffchannell.com/Joomla/webamoeba-ticket-system-300-bbcode-xss.html Alert]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;Kunena 1.5.x&#039;&#039;&#039; &lt;br /&gt;
|Summary: This is an important security release and users are urged to update immediately. Five security issues and an Internet Explorer 8 table bug have been resolved in this release. This release also contains many other important bug fixes. Added 18 November 2009&lt;br /&gt;
|[http://www.kunena.com/blog/19-developer-blog/51-kunena-157-security-release-now-available Advisory]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://www.kunena.com/blog/19-developer-blog/52-kunena-158-service-release-now-available Latest 1.5.8 Version]&lt;br /&gt;
|-&lt;br /&gt;
|  style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_siirler&#039;&#039;&#039;&lt;br /&gt;
|  Summary:  SQL injection vulnerability in the &#039;&#039;&#039;Q-Proje Siirler Bileseni (com_siirler)&#039;&#039;&#039; component 1.2 RC for Joomla! allows remote attackers to execute arbitrary SQL commands via the sid parameter in an sdetay action to index.php. Added 18 November 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3972 | CVE-2009-3972]]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;jTips (com_jtips)&#039;&#039;&#039;&lt;br /&gt;
|SUmmary:SQL injection vulnerability in the &#039;&#039;&#039;jTips (com_jtips)&#039;&#039;&#039; component 1.0.7 and 1.0.9 for Joomla! allows remote attackers to execute arbitrary SQL commands via the season parameter in a ladder action to index.php. Added 18 November 2009&lt;br /&gt;
| [[NIST:CVE-2009-3971 |CVE-2009-3971]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;NinjaMonials&#039;&#039;&#039;&lt;br /&gt;
| Summary: SQL injection vulnerability in the &#039;&#039;&#039;NinjaMonials (com_ninjacentral)&#039;&#039;&#039; component 1.1.0 for &#039;&#039;&#039;Joomla 1.0.x&#039;&#039;&#039; ! allows remote attackers to execute arbitrary SQL commands via the testimID parameter in a display action to index.php. Added 18 November 2009&lt;br /&gt;
|  [[NIST:CVE-2009-3964 | CVE-2009-3964]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;  [http://ninjaforge.com/index.php?option=com_ninjacentral&amp;amp;page=show_package&amp;amp;id=14&amp;amp;Itemid=235 developer patch Ver 1.2]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;webee 1.1.1 &amp;amp;1.2&#039;&#039;&#039;&lt;br /&gt;
|Summary: &#039;&#039;&#039;webee 1.1.1,&#039;&#039;&#039; a Joomla commenting plugin, suffers from multiple vulnerabilities. &#039;&#039;&#039;webee has been updated to 1.2&#039;&#039;&#039; as of 12 November 2009 and&#039;&#039;&#039; still suffers&#039;&#039;&#039; from SQL Injection. XSS was not tested in 1.2. Added 19 November 2009&lt;br /&gt;
| [http://jeffchannell.com/Joomla/webee-111-multiple-vulnerabilities.html jeffchannell.com]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039; [http://extensions.joomla.org/extensions/contacts-and-feedback/articles-comments/10155 developer update ver2.0]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;iF Portfolio Nexus&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;&#039;&#039;iF Portfolio Nexus component for Joomla!&#039;&#039;&#039; is vulnerable to SQL injection. A remote attacker could send specially-crafted SQL statements using the id parameter, which could allow the attacker to view, add, modify or delete information in the back-end database. Nov 18, 2009&lt;br /&gt;
|[http://secunia.com/advisories/37408/ secunia.com 37408/]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.inertialfate.za.net/help/forums/topic?id=10&amp;amp;p=3#p172 iF Portfolio Nexus v1.1.1 released]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JoomClip&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;&#039;&#039;JoomClip component for Joomla!&#039;&#039;&#039; is vulnerable to SQL injection. A remote attacker could send specially-crafted SQL statements to the index.php script using the cat parameter, which could allow the attacker to view, add, modify or delete information in the back-end database.  Nov 18, 2009&lt;br /&gt;
|[http://secunia.com/advisories/37400/ secunia.com 37400/]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Joomla XML&#039;&#039;&#039;&lt;br /&gt;
|Summary: Joomla! before 1.5.15 allows remote attackers to read an extension&#039;s XML file, and thereby obtain the extension&#039;s version number, via a direct request.&lt;br /&gt;
Published: 11/16/2009&lt;br /&gt;
|[[NIST:CVE-2009-3946 | CVE-2009-3946]] &lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;[http://developer.joomla.org/security/news/306-20091103-core-xml-file-read-issue.html Resolution]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Mygallery Remote SQL Injection Vulnerability&#039;&#039;&#039; &lt;br /&gt;
|Summary: Joomla Component mygallery ( farbinform_krell) Remote SQL Injection Vulnerability Added 27 Nov 2009 {{JVer|1.5}} NB: This could be an error in our database as the only one we could find was for wordpress.If anyone know of one for joomla please let us know..(poss joomlicious.com CM)&lt;br /&gt;
|[http://www.exploit-db.com] &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Extreme Google Calendar&#039;&#039;&#039;&lt;br /&gt;
|Summary: &#039;&#039;&#039;com_gcalendar 1.1.2&#039;&#039;&#039; (gcid) Remote SQL Injection Vulnerability&lt;br /&gt;
Remote SQL Injection were identified in Google Calendar Component [http://extensions.joomla.org/extensions/calendars-a-events/calendars/4188 Extension Link] Added 27 Nov 2009 &lt;br /&gt;
|[http://www.exploit-db.com reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;LyftenBloggie&#039;&#039;&#039;&lt;br /&gt;
| Summary: [http://www.lyften.com/products/lyftenbloggie.html LyftenBloggie] Component &amp;quot;author&amp;quot; SQL Injection Vulnerability LyftenBloggie 1.x Added 27 Nov 2009&lt;br /&gt;
|[http://secunia.com/advisories/product/28005/	 SA37499]&lt;br /&gt;
| [http://jeffchannell.com/Joomla/lyften-bloggie-sql-injection-fix.html Un official fix]. Developer fix not release at 30 Nov 09 &#039;&#039;&#039; [http://www.lyften.com/products/lyftenbloggie/extensions/download/id-20.html 1.0.4a (last update on Dec 28, 2009)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Sermon speaker&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://joomlacode.org/gf/project/sermon_speaker sermon speaker] sql vulnerability and password reset vulnerability version 3.2 and below&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://joomlacode.org/gf/project/sermon_speaker/forum/?action=ForumBrowse&amp;amp;forum_id=7897&amp;amp;_forum_action=ForumMessageBrowse&amp;amp;thread_id=15219 Developer fix] 30 Nov 2009&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://joomlacode.org/gf/project/musicgallery/ MusicGallery]&lt;br /&gt;
|Summary: [http://joomlacode.org/gf/project/musicgallery/ Component MusicGallery] SQL Injection Vulnerability 30 November {{JVer|1.5}}&lt;br /&gt;
|[[NIST:CVE-2009-4217 | CVE-2009-4217]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | [http://joomlacode.org/gf/project/musicgallery/ developer]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== December 2009 Compiled Reports ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Omilen Photo Gallery&#039;&#039;&#039;&lt;br /&gt;
|Summary: Directory traversal vulnerability in the [http://extensions.joomla.org/extensions/photos-&amp;amp;-images/photo-flash-gallery/6373/details Omilen Photo Gallery] (com_omphotogallery) component Beta 0.5 for Joomla! allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the controller parameter to index.php.&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4202 | CVE-2009-4202]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Seminar&#039;&#039;&#039;&lt;br /&gt;
|Summary: SQL injection vulnerability in the [http://seminar.vollmar.ws/ Seminar] (com_seminar) component 1.28 for Joomla! allows remote attackers to execute arbitrary SQL commands via the id parameter in a View_seminar action to index.php.&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4200 | CVE-2009-4200]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Mambo Resident&#039;&#039;&#039;&lt;br /&gt;
|Summary: Multiple SQL injection vulnerabilities in the Mambo Resident (aka Mos Res or com_mosres) component 1.0f for Mambo and Joomla!, when magic_quotes_gpc is disabled, allow remote attackers to execute arbitrary SQL commands via the (1) property_uid parameter in a viewproperty action to index.php and the (2) regID parameter in a showregion action to index.php. Mambo Resident component for v4.5.2 &#039;&#039;&#039;may only be for 1.0.xx versions of J!&#039;&#039;&#039;&lt;br /&gt;
Published: 12/04/2009&lt;br /&gt;
|[[NIST:CVE-2009-4199 | CVE-2009-4199]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.jomres.net/ Replacement Extension 08 dec 09]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;ProofReader&#039;&#039;&#039; &lt;br /&gt;
|Summary: Multiple cross-site scripting (XSS) vulnerabilities in index.php in the ProofReader (com_proofreader) component 1.0 RC9 and earlier for Joomla! allow remote attackers to inject arbitrary web script or HTML via the URI, which is not properly handled in (1) 404 or (2) error pages. Published: 12/02/2009 CVSS Severity: 4.3 (MEDIUM)&lt;br /&gt;
| [[NIST:CVE-2009-4157 | CVE-2009-4157]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Laoneo Google Calendar GCalendar&#039;&#039;&#039;&lt;br /&gt;
|Summary: SQL injection vulnerability in the [http://g4j.laoneo.net/content/extensions/download/cat_view/20-joomla-15x/21-gcalendar.html Google Calendar GCalendar] (com_gcalendar) component 1.1.2, 2.1.4, and possibly earlier versions for Joomla! allows remote attackers to execute arbitrary SQL commands via the gcid parameter. NOTE: some of these details are obtained from third party information. Published: 11/29/2009 CVSS Severity: 7.5 (HIGH) Note: There is already a listing for GCalendar 1.1.2&lt;br /&gt;
|[[NIST:CVE-2009-4099 | CVE-2009-4099]]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | [http://g4j.laoneo.net/content/extensions/download/doc_details/28-gcalendar-suite-215.html Latest version GCalendar Suite 2.1.5]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;D4J eZine&#039;&#039;&#039;&lt;br /&gt;
|Summary: PHP remote file inclusion vulnerability in class/php/d4m_ajax_pagenav.php in the D4J eZine (com_ezine) component 2.1 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the GLOBALS mosConfig_absolute_path parameter. Published: 11/29/2009 CVSS Severity: 7.5 (HIGH)&lt;br /&gt;
|[[NIST:CVE-2009-4094 | CVE-2009-4094]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;Quick News&#039;&#039;&#039;&lt;br /&gt;
| Summary: The Joomla [http://joomlacode.org/gf/project/quicknews/ Quick News component] suffers from a remote SQL injection vulnerability. added 1st Dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;Joaktree component&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/genealogy/9842 Joaktree] Vulnerability : SQL injection/ added 1st Dec 09&lt;br /&gt;
|[http://securityreason.com/exploitalert/7508 7508]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://naastniels.nl/index.php/en/joaktree/downloads version 1.1 update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;mojoblog&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://www.joomlify.com/files/mojoblog/ MojoBlog] Multiple Remote File Include Vulnerability added 1st Dec 09 {{JVer|1.5}}&lt;br /&gt;
|[http://securityreason.com/exploitalert/7509 7509]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;YJ Whois&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/external-contents/domain-search/5774 YJ Whois] &#039;&#039;&#039;Low security risk&#039;&#039;&#039;,and fixesMalicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. Files affected is , modules/mod_yj_whois.php added 3 December 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; |[http://www.youjoomla.com/xss-security-patch-for-yj-whois.html Developer Notice and fix 03 dec 09]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;yt_color YOOOtheme&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.yootheme.com/ YT_color yootheme] Malicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. added 5 dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.yootheme.com/member-area/downloads/item/templates-15/xss-and-php-53-patches All members without an active membership can download the template patches here].&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;TP Whois&#039;&#039;&#039; &lt;br /&gt;
|summary: [http://www.templateplazza.com/view-details/tpwhois/183-component-tp-whois-for-joomla-1.5.x.html TP Whois ] Malicious users may inject JavaScript, VBScript, ActiveX, HTML or Flash into a vulnerable application to fool a user in order to gather data from them. An attacker can steal the session cookie and take over the account. Added 3 december {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Refrence]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;com_job&#039;&#039;&#039;&lt;br /&gt;
|Summary: Component com_job ( showMoreUse) SQL injection vulnerability  Added 9th Dec&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/54626 Reference]&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;JQuarks&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/contacts-and-feedback/quiz-a-surveys/10590 JQuarks] SQL injection vulnerability {{JVer|1.5}} added 8th dec 09&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | [http://www.iptechinside.com/labs/projects/list_files/jquarks Developer Update ]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Mamboleto Component 2.0 RC3&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.fernandosoares.com.br/index.php?option=com_docman&amp;amp;task=cat_view&amp;amp;gid=28&amp;amp;Itemid=28 Mamboleto Component 2.0 RC3]SQL injection vulnerability {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039; JS JOBS&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://www.joomshark.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=4&amp;amp;Itemid=8 JS JOBS] Joomla Component com_jsjobs 1.0.5.6 SQL Injection Vulnerabilities {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.joomsky.com/index.php?option=com_rokdownloads&amp;amp;view=folder&amp;amp;Itemid=3&amp;amp;id=2:components Developer update 1.0.5.7]&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;corePHP JPhoto&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/photos-a-images/photo-gallery/10365 &#039;corePHP&#039; JPhoto]SQL injection vulnerability {{JVer|1.5}} added 12 December&lt;br /&gt;
|[http://secunia.com/advisories/37676/ Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.corephp.com/blog/uber-fast-jphoto-security-release/ Developer Upgrade]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    | &#039;&#039;&#039;com_virtuemart&#039;&#039;&#039;&lt;br /&gt;
|Summary: &amp;quot;com_virtuemart&amp;quot; http://virtuemart.net/  &#039;&#039;&#039;Version : 1.0&#039;&#039;&#039; Vulnerability : SQL injection added Date : 07- dec -09 {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |[http://virtuemart.net/ latest version]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039; Kide Shoutbox&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|Summary: The Kide Shoutbox (com_kide) component 0.4.6 for Joomla! does not properly perform authentication, which allows remote attackers to post messages with an arbitrary account name via an insertar action to index.php. NOTE: the provenance of this information is unknown; the details are obtained solely from third party information. Added: December 08&lt;br /&gt;
|[[NIST:CVE-2009-4232 | CVE-2009-4232]]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039; JoomPortfolio Component&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.joomplace.com/joomportfolio/joomportfolio.html JoomPortfolio] Input passed via the &amp;quot;secid&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_joomportfolio&amp;quot; and &amp;quot;task&amp;quot; is set to &amp;quot;showcat&amp;quot;) is not properly sanitised before being used in a SQL query. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code.The vulnerability is reported in version 1.0.0. Other versions may also be affected. Added: December 18 {{JVer|1.5}}&lt;br /&gt;
|[http://secunia.com/advisories/37838/ Reporting Site]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;City Portal (templates?)&#039;&#039;&#039;&lt;br /&gt;
|Summary:   City Portal Blind SQL Injection Vulnerability added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference] Possibly this [http://www.youjoomla.com/jclick-city-portal-joomla-template.html tempate]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;Event Manager&#039;&#039;&#039;&lt;br /&gt;
|Summary:  [http://www.jforjoomla.com/Joomla-Components/event-manager-15-component.html Event Manager] Blind SQL Injection Vulnerability EDB-ID: 10549&lt;br /&gt;
added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | com_zcalendar&lt;br /&gt;
|Summary:  com_zcalendar Blind SQL-injection Vulnerability&lt;br /&gt;
EDB-ID: 10548 added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;com_acmisc&#039;&#039;&#039;&lt;br /&gt;
|Summary:  com_acmisc SQL injection added: 2009-12-18&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;com_digistore&#039;&#039;&#039;&lt;br /&gt;
|Summary:  com_digistore SQL injection EDB-ID: 10546 added: 2009-12-18  {{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.ijoomla.com/ijoomla-digistore/ijoomla-digistore/ijoomla-digistore-change-log/ Update change log] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;com_jbook&#039;&#039;&#039;&lt;br /&gt;
|Summary:   com_jbook Blind SQL-injection EDB-ID: 10545 added: 2009-12-18 {{JVer|1.0}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;com_personel&#039;&#039;&#039;&lt;br /&gt;
|Summary: com_personel component for Joomla! is vulnerable to SQL injection.&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/54903 iss.net reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |  &#039;&#039;&#039;JEEMA Article Collection&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.forum.jeema.net/component/content/article/4-jeema-article-collection-component/13-about-jeema-article-collection.html JEEMA Article Collection] Input passed via the &amp;quot;catid&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_jeemaarticlecollection&amp;quot; and &amp;quot;view&amp;quot; is set to &amp;quot;longlook&amp;quot;) is not properly sanitised before being used in a SQL query. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code. version 1.0.0.1 {{JVer|1.5}} added 22 dec 09&lt;br /&gt;
| [http://secunia.com/advisories/37865/ secunia]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;    | [http://www.jeema.net/downloads/free-joomla-extensions/joomla-components/12-jeema-joomla-article-collection.htm fixed the same in the version v102.]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;HotBrackets Tournament Brackets &#039;&#039;&#039;&lt;br /&gt;
|Summary: The [http://extensions.joomla.org/extensions/sports-a-games/sports/10746 HotBrackets Tournament Brackets] component for Joomla! is prone to an SQL-injection vulnerability because it fails to sufficiently sanitize user-supplied data before using it in an SQL query. {{JVer|1.5}} added 22 dec &lt;br /&gt;
|[http://www.securityfocus.com/bid/37439/ Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;Car Manager&#039;&#039;&#039;&lt;br /&gt;
|Summary: http://webformatique.com/ com_carman Cross Site Scripting Vulnerability added 24 december 09{{JVer|1.5}}&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;Schools component&#039;&#039;&#039;&lt;br /&gt;
|Summary: The &#039;com_schools&#039; component for Joomla! is prone to an SQL-injection vulnerability because it fails to sufficiently sanitize user-supplied data before using it in an SQL query.&lt;br /&gt;
|[http://www.securityfocus.com/bid/37469 Reference] added 24 dec 09&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;webcamxp&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/communication/video-conference/4490 com_webcamxp] Cross Site Scripting Vulnerabilities  Last version 2008 {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;beeheard&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/contacts-and-feedback/testimonials-a-suggestions/10283 beeheard]  Blind SQL injection Vulnerability {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://beeheard.cmstactics.com/change-log Version 1.4.2] 04 Jan&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;jm-recommend&#039;&#039;&#039;&lt;br /&gt;
|jm-recommendCross Site Scripting Vulnerabilities. unable to locate on jed. {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | facileforms&lt;br /&gt;
| com_facileforms Cross Site Scripting Vulnerabilities. unable to locate on jed. Product considered retired.  {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;adagency&#039;&#039;&#039;&lt;br /&gt;
| [http://www.ijoomla.com/ijoomla-ad-agency/ijoomla-ad-agency/index/ adagency ]Vulnerabilities {{JVer|1.5}} Dec 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |  &#039;&#039;&#039;com_intuit&#039;&#039;&#039;&lt;br /&gt;
|[http://www.san-diego-web-designer.com/new-file-download/item/root/aboutimage-igateway-for-joomla.html com_intuit]Local File Inclusion Vulnerability {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.securityfocus.com/bid/37494/discuss Retired]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;MemoryBook&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/calendars-a-events/birthdays-a-historic-events/10868 MemoryBook 1.2]  Multiple Vulnerabilities. requires: magic quotes OFF, user account {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;qpersonel&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/directory-a-documentation/thematic-directory/7049 qpersonel ] Cross Site Scripting Vulnerabilities {{JVer|1.0}}[[Image:http://extensions.joomla.org/images/jed/compat_15_legacy.png]] Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;opryknings point&#039;&#039;&#039; &lt;br /&gt;
|com_oprykningspoint_mc Cross Site Scripting Vulnerabilities {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;trabalhe conosco&#039;&#039;&#039;&lt;br /&gt;
|com_trabalhe_conosco Cross Site Scripting Vulnerabilities {{JVer|1.5}} Dec. 27&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;DhForum&#039;&#039;&#039;&lt;br /&gt;
|com_dhforum SQL Injection Vulnerability. considered retired/EOL Dec. 27 {{JVer|1.0}}1.5 legacy&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;com_morfeoshow&#039;&#039;&#039;&lt;br /&gt;
|[http://extensions.joomla.org/extensions/photos-a-images/photo-gallery-add-ons/9810 morfeoshow] this was a false report &lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;  false report&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |&#039;&#039;&#039;Run Digital Download rd-download&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7838 RD Download] Local File Disclosure Vulnerability  {{JVer|1.5}} Dec. 30 Version affected not disclosed.&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7838 Version 0.9 relased] &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== January 2010 Reported Vulnerable Extensions ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic or the [http://forum.joomla.org/viewforum.php?f=470 extensions] topic clearly marked with the first word in the title being &#039;&#039;Vulnerable&#039;&#039; where the security moderators or JSST team will respond. &lt;br /&gt;
&#039;&#039;This list is change protected, for updates or editing requests [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://docs.joomla.org/Vulnerable_Extensions_List Back To Top]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Reference Link&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Extension Update Link&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |JvideoDirect&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/multimedia/video-players-a-gallery/9501 Jvideodirect] SQLi Jan 29&lt;br /&gt;
|&lt;br /&gt;
|http://www.jvideodirect.com/ Update version 2.5&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JEvent search plugin&#039;&#039;&#039;&lt;br /&gt;
|Summary: JEvent search plugin for [http://extensions.joomla.org/extensions/calendars-a-events/events/95 JEvent] SQLi reported Jan 29&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039;  [http://www.jevents.net/forum/viewtopic.php?f=17&amp;amp;t=3910#p15526 upgrade to 1.5.3b]&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;Kunena&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/communication/forum/7256/details kunena] re reported suffering SQLi in version 1.5.9 Jan 29 Confirmation Required &#039;&#039;&#039;Now found to be malicious&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://www.kunena.com/blog/19-developer-blog/51-kunena-157-security-release-now-available Versions 1.5.5 and below only]&#039;&#039;&#039;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&#039;&#039;&#039;JE Quiz&#039;&#039;&#039;&lt;br /&gt;
|Summary : http://extensions.joomla.org/extensions/contacts-and-feedback/quiz-a-surveys/11212 JeQuiz SQLi reported 29 Jan&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;&amp;quot;   |&#039;&#039;&#039;idoblog&#039;&#039;&#039;&lt;br /&gt;
|summary: exploitable due to open file permissions. 28 Jan&lt;br /&gt;
|Private Notification&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://idojoomla.com/news.html build 35 released] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    |&#039;&#039;&#039;ccnewsletter&#039;&#039;&#039;&lt;br /&gt;
|Summary [http://extensions.joomla.org/extensions/5112/details ccnewsletter Directory Traversal Vulnerability] Jan 28 &lt;br /&gt;
|Private Notification&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039; [http://www.chillcreations.com/en/blog/ccnewsletter-joomla-newsletter/ccnewsletter-106-security-release.html version 1.0.6 released 29 Jan]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   |&#039;&#039;&#039;Virtuemart 1.1.4&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/e-commerce/shopping-cart/129 virtuemart] Input var order_status_id is vulnerable to SQLi NB Requires Higher Level access before exploiting. Jan 27&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039;  [http://forum.joomla.org/viewtopic.php?p=2027005#p2027005 developer patches]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JBDiary&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/calendars-a-events/events/11009 JBDiary] BLIND SQL Injection Vulnerabilities Jan 24 [http://www.jb-soft.nl/ http://www.jb-soft.nl/]&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | &#039;&#039;&#039; [http://www.jb-soft.nl/index.php?option=com_content&amp;amp;view=article&amp;amp;id=64 Developer Update 27 Jan]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;JbPublishDownFp&#039;&#039;&#039;&lt;br /&gt;
|Sumary: [http://extensions.joomla.org/extensions/news-production/timed-content/6496 JbPublishDownFp] SQL Injection Vulnerability Jan 24 [http://www.jb-soft.nl http://www.jb-soft.nl]&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  |&#039;&#039;&#039;  [http://www.jb-soft.nl/index.php?option=com_content&amp;amp;view=article&amp;amp;id=64 Developer Update Jan 27]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&#039;&#039;&#039;com_casino&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/sports-a-games/tips-a-betts com_casino]&lt;br /&gt;
SQL Injection Vulnerabilities Jan24&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&#039;&#039;&#039;Mochigames&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/search/mochigames com_Mochigames]&lt;br /&gt;
SQL Injection Vulnerabilities Jan24&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot; | &#039;&#039;&#039; [http://www.yoflash.com/download.html mochigames_alpha052 Released]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;ContentBlogList&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/news-production/blog/10989 com_ContentBlogList] SQL Injection Vulnerability Jan 23&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |MailChimp for Joomla 1.5&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/bridges/mailing-a-newsletter-bridges/7836 MailChimp for Joomla 1.5]  jan 17&lt;br /&gt;
|Developer Statement&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;JoomlaXML&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/tools/design-tools/5020 JoomlaXML] malicious code insertion&lt;br /&gt;
|&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JVClouds3D SWF module&#039;&#039;&#039;&lt;br /&gt;
|[http://joomlapro.ru/3djvclouds JVClouds3D SWF module] Cross Site Scripting . jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55535 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;JVClouds3D&#039;&#039;&#039;&lt;br /&gt;
|[http://joomlapro.ru/3djvclouds JVClouds3D module] Cross Site Scripting . jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55534 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;JA Showcase&#039;&#039;&#039;&lt;br /&gt;
|[http://www.joomlart.com/addons/components_and_modules/ja_showcase.html JA Showcase component] Directory Traversal jan 14&lt;br /&gt;
|[http://xforce.iss.net/xforce/xfdb/55512 xforce]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;jprojects&#039;&#039;&#039;&lt;br /&gt;
|Summary:   Unknown Author com_j-projects Blind SQL Injection Vulnerability. Jan 10 detail update&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&#039;&#039;&#039;jEmbed-Embed Anything&#039;&#039;&#039;&lt;br /&gt;
|[http://www.joshprakash.com/index.php?option=com_docman&amp;amp;task=doc_details&amp;amp;gid=70 jEmbed-Embed Anything] A vulnerability has been discovered in the jEmbed-Embed Anything component for Joomla, which can be exploited by malicious people to conduct SQL injection attacks. Jan 10&lt;br /&gt;
|[http://secunia.com/advisories/38112 Secunia Advisory: SA38112] &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | [http://extensions.joomla.org/extensions/3699/details Product considered retired]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;    |&#039;&#039;&#039;perchagallery &#039;&#039;&#039;&lt;br /&gt;
|Summary: perchagallery  [http://extensions.joomla.org/extensions/photos-a-images/photo-gallery/10350 com_perchagallery] SQL Injection Vulnerability  Jan 7&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.percha.com/index.php?option=com_phocadownload&amp;amp;view=file&amp;amp;id=22:1.5&amp;amp;Itemid=20 Developer Update 1.5b]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0;  color:black&amp;quot;   |  &#039;&#039;&#039;CARTwebERP&#039;&#039;&#039;&lt;br /&gt;
|Summary:  [http://extensions.joomla.org/extensions/bridges/e-commerce-bridges/8753 CARTwebERP] Local File Inclusion Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://extensions.joomla.org/extensions/bridges/e-commerce-bridges/8753 1.56.76 (last update on Jan 11, 2010)]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |   &#039;&#039;&#039;JoomlaBibleStudy&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/religion/3461 JoomlaBibleStudy] LFI Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | &#039;&#039;&#039;[http://joomlabiblestudy.org/invisible-downloads/category/3-component.html Developer reported update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;com_bfsurvey_basic and pro&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.tamlyncreative.com.au/software/ BFsurvey] SQL Injection Vulnerability ,LFI Vulnerability   Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;  | &#039;&#039;&#039;  [http://www.tamlyncreative.com.au/software/forum/index.php?topic=641.0 Developer Update announcement]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Alfresco&#039;&#039;&#039;&lt;br /&gt;
|Summary:  SQL Injection Vulnerability. Not believed to be Joomlatools extension Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;abbrev&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/directory-a-documentation/glossary-a-dictionary/4965 abbrev] Local File Inclusion Vulnerability Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;countries&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/miscellaneous/development/6553 countries] SQL Injection Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |  &#039;&#039;&#039;Dedicated Component com_tpjobs&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.templateplazza.com/ tpjobs] SQL Injection Vulnerability unable to locate files probably template plaza  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;     | &#039;&#039;&#039;  [http://www.templateplazza.com/extensions-updates/tpjobs-component-update-v-1.1.html Developer Update] &#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Component com_doqment&#039;&#039;&#039;&lt;br /&gt;
|SQL Injection Vulnerability Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;Component com_otzivi&#039;&#039;&#039; &lt;br /&gt;
|Blind SQL Injection Vulnerability  Jan. 3&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;aprice&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://adeptweb.info/component/option,com_aprice/Itemid,109/ com_aprice] Component &#039;analog&#039; Parameter SQL Injection Vulnerability&lt;br /&gt;
|[http://www.securityfocus.com/bid/37575 Report]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&#039;&#039;&#039;cartikads&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://www.cartikahosting.com com_cartikads] Remote File Upload Vulnerability &lt;br /&gt;
&#039;&#039;&#039;Mambo&#039;&#039;&#039; Open Source ads management component&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;Docman seller&#039;&#039;&#039; &lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/e-commerce/subscriptions/5000 Document seller]  Input passed via the &amp;quot;id&amp;quot; parameter to index.php (when &amp;quot;option&amp;quot; is set to &amp;quot;com_dm_orders&amp;quot;, &amp;quot;task&amp;quot; is set to &amp;quot;order_form&amp;quot;, and &amp;quot;payment_method&amp;quot; is set to &amp;quot;Paypal&amp;quot;) is not properly sanitised before being used in SQL queries. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code.&lt;br /&gt;
|[http://secunia.com/advisories/38024/ secunia]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   | [http://extensions.joomla.org/extensions/e-commerce/subscriptions/5000 Updated 10th Jan]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  |  &#039;&#039;&#039;ozio gallery&#039;&#039;&#039; &lt;br /&gt;
|summary: [http://extensions.joomla.org/extensions/photos-a-images/photo-flash-gallery/4883 Ozio Gallery2] SQLi eploit &lt;br /&gt;
|[http://www.viruslist.com/en/advisories/37974 Reference]&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:white&amp;quot;   |[http://oziogallery.joomla.it/index.php?option=com_content&amp;amp;view=article&amp;amp;id=62%3Anuova-ozio-gallery-23-aggiornamento-di-sicurezza&amp;amp;catid=2%3Anotizie&amp;amp;Itemid=13&amp;amp;lang=en developer update Jan 11]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;RD-Autos Free&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/vertical-markets/vehicles/5458 RD-Autos Free ] This version is now commercial not free&lt;br /&gt;
|Private advisory to JED Jan 11&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039; Product Retired and replaced&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |  &#039;&#039;&#039;DailyMeals&#039;&#039;&#039;&lt;br /&gt;
|Summary: [http://extensions.joomla.org/extensions/vertical-markets/food-a-beverage/4764 dailymeals] Local File Inclusion  Vulnerability  Jan 02&lt;br /&gt;
|[http://www.exploit-db.com Reference]&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;  | &#039;&#039;&#039;RD-Autos Pro&#039;&#039;&#039; &lt;br /&gt;
|[http://extensions.joomla.org/extensions/vertical-markets/vehicles/6357 RD Autos Pro]&lt;br /&gt;
|Private advisory to JED Jan 11&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   | &#039;&#039;&#039;  Upgrade to  Latest version  be 2.0.2&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== New format Feed Starts Here ==&lt;br /&gt;
Please do not change your [http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions feed url], only the feed format has changed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== February, March, April, May 2010  Reported Vulnerable Extensions ==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please check with the extension publisher in case of any questions over the security of their product.&#039;&#039;&#039;&lt;br /&gt;
Report Vulnerable extensions either in the [[jforum:432]] security topic clearly marked with the first word in the title being &#039;&#039;Vulnerable Report&#039;&#039; where the security moderators or JSST team will respond. For a guide to the [http://docs.joomla.org/Vulnerable_Extensions_List_0210#Codes_used codes]&lt;br /&gt;
&lt;br /&gt;
[http://docs.joomla.org/Vulnerable_Extensions_List Previous Reports]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  &#039;&#039;&#039;Extension&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot;| &#039;&#039;&#039;Details&#039;&#039;&#039;&lt;br /&gt;
!  &#039;&#039;&#039;Date Added&#039;&#039;&#039;&lt;br /&gt;
! class=&amp;quot;unsortable&amp;quot; |&#039;&#039;&#039;Extension Update Link &amp;amp; Date&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   JE Poll  ==&lt;br /&gt;
|http://slideshow.joomlaextensions.co.in/ SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  MyCar   ==&lt;br /&gt;
|http://www.unisoft.me/extensions/ sqli ID&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  MediQnA   ==&lt;br /&gt;
|MediQnA LFI vulnerability version : v1.1&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==   JE Job  ==&lt;br /&gt;
|http://joomlaextensions.co.in/ LFI SQLi&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  BF Quiz   ==&lt;br /&gt;
|SQL Injection Exploit Version(s) = 1.3.0&lt;br /&gt;
|&lt;br /&gt;
|[http://www.tamlyncreative.com.au/software/forum/index.php?topic=729.0 Developer update to BF Quiz v1.3.1]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Ozio Gallery 2  ==&lt;br /&gt;
|DT and open email relay&lt;br /&gt;
|280510&lt;br /&gt;
|[http://oziogallery.joomla.it/index.php?option=com_content&amp;amp;view=article&amp;amp;id=65:rilasciata-la-versione-ozio-gallery-25&amp;amp;catid=2:notizie&amp;amp;Itemid=13&amp;amp;lang=en Developer update and security release] 010610&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  SectionEx   ==&lt;br /&gt;
|Stack Ideas section Ex LFI&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  ActiveHelper LiveHelp    ==&lt;br /&gt;
|XSS in [http://extensions.joomla.org/extensions/communication/chat/12492 LiveHelp] &lt;br /&gt;
|200510&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
==  RS Comments   ==&lt;br /&gt;
|XSS Vulnerability &lt;br /&gt;
|&lt;br /&gt;
|http://www.rsjoomla.com/customer-support/documentations/96--general-overview-of-the-component/393-changelog.html - fix posted 210510&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  BCA RSS Feed   ==&lt;br /&gt;
|LFI and other vulnerabilities&lt;br /&gt;
|&lt;br /&gt;
|Since changed its name to NinjaRss &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
== SimpleDownload    ==&lt;br /&gt;
|http://extensions.joomla.org/extensions/directory-a-documentation/downloads/10717 various exploits&lt;br /&gt;
|160510&lt;br /&gt;
|updated version (version 0.9.6)&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
==  JE Quotation Form   ==&lt;br /&gt;
|http://joomlaextensions.co.in/free-download/doc_download/11-je-quotation-form.html  LFI&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  konsultasi   ==&lt;br /&gt;
|SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
== Aardvertiser    ==&lt;br /&gt;
|Local File Inclusion Vulnerability	&lt;br /&gt;
http://extensions.joomla.org/extensions/ads-a-affiliates/classified-ads/9454&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Seber Cart    ==&lt;br /&gt;
|Local File Disclosure Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|[http://www.sebercart.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=158 Developer Update 140510]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  FDione Form Wizard   ==&lt;br /&gt;
|lfi vulnerability	&lt;br /&gt;
|140510 200510&lt;br /&gt;
|[dionesoft.com Update to Dione Form Wizard (v. 1.0.4)].&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Custom PHP Pages  ==&lt;br /&gt;
|http://extensions.joomla.org/extensions/edition/custom-code-in-content/5057 LFI Vulnerability		&lt;br /&gt;
|&lt;br /&gt;
|[fijiwebdesign.com Developer declares not vulnerable 140510]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Camp26 Visitor    ==&lt;br /&gt;
|RFI www.camp26.biz&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    iJoomla News Portal  ==&lt;br /&gt;
|RFI SID&lt;br /&gt;
|&lt;br /&gt;
|[http://www.ijoomla.com/forum/index.php/topic,4480.0.html Update to 1.5.10]&lt;br /&gt;
|-&lt;br /&gt;
|   |&lt;br /&gt;
&lt;br /&gt;
==  article Factory Manager   ==&lt;br /&gt;
|RFI &amp;amp; Input Validation Error http://www.thefactory.ro/shop/joomla-components/article-manager.html&lt;br /&gt;
|may 2010&lt;br /&gt;
|can not reproduce and unproven, http://www.thefactory.ro&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;  |&lt;br /&gt;
&lt;br /&gt;
==  Table JX Component    ==&lt;br /&gt;
|http://www.toolsjx.com/ Table JX Component XSS&lt;br /&gt;
|060510 - update 130510&lt;br /&gt;
|Version: 1.5.5 considered unsafe&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   JE Property  ==&lt;br /&gt;
|JE Property Finder Upload Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   Noticeboard  ==&lt;br /&gt;
|Noticeboard for Joomla &amp;quot;controller&amp;quot; Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==SmartSite     ==&lt;br /&gt;
|SmartSite com_smartsite Local File Inclusion Vulnerability &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  ABC    ==&lt;br /&gt;
|ABC SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|reported as updated to JED 290410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  htmlcoderhelper graphics   ==&lt;br /&gt;
|htmlcoderhelper graphics v1.0.6 LFI Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
== Ultimate Portfolio    ==&lt;br /&gt;
|Ultimate Portfolio  Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  huruhelpdesk   ==&lt;br /&gt;
|http://www.huruhelpdesk.net sqli injection &lt;br /&gt;
|&lt;br /&gt;
|[http://www.huruhelpdesk.net/forums/8-announcements/392--sql-injection-reveals-user-md5-password-hash Reported fix]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Archery Scores   ==&lt;br /&gt;
| [http://lispeltuut.org/ Archery Scores (com_archeryscores) v1.0.6 LFI Vulnerability]&lt;br /&gt;
&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  ZiMB Manager   ==&lt;br /&gt;
|Joomla Component ZiMB Manager Local File Inclusion Vulnerability&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Matamko   ==&lt;br /&gt;
|Matamko Local File Inclusion Vulnerability&lt;br /&gt;
|210410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Multiple Root   ==&lt;br /&gt;
|Multiple Root Local File Inclusion Vulnerability http://joomlacomponent.inetlanka.com/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  Multiple Map   ==&lt;br /&gt;
|Multiple Map Local File Inclusion Vulnerability joomlacomponent.inetlanka.com&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   Contact Us Draw Root Map  ==&lt;br /&gt;
|Draw Root Map Local File Inclusion Vulnerability joomlacomponent.inetlanka.com&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  iF surfALERT   ==&lt;br /&gt;
|[http://www.inertialfate.za.net/ iF surfALERT] Local File Inclusion Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   GBU FACEBOOK  ==&lt;br /&gt;
|GBU FACEBOOK SQL injection vulnerability http://www.gbugrafici.nl/gbufacebook/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==   jnewspaper  ==&lt;br /&gt;
|jnewspaper (cid) SQL Injection Vulnerability&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JTM Reseller   ==&lt;br /&gt;
|TM Reseller SQL injection vulnerability&lt;br /&gt;
|&lt;br /&gt;
|[http://jtmreseller.com/ Developer Update] &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;   |&lt;br /&gt;
&lt;br /&gt;
==  media Mall Factory   ==&lt;br /&gt;
|SQLi&lt;br /&gt;
|200410&lt;br /&gt;
| [http://www.thefactory.ro/contact-us/product-update-request.html Solution: update to 1.0.5] &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Gadget Factory  ==&lt;br /&gt;
|LFi&lt;br /&gt;
|200410&lt;br /&gt;
|[http://www.thefactory.ro/contact-us/product-update-request.html Solution: update to 1.5.1]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Deluxe Blog Factory   ==&lt;br /&gt;
|SQLi&lt;br /&gt;
|200410&lt;br /&gt;
|[http://www.thefactory.ro/contact-us/product-update-request.html update to 1.1.2]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;   |&lt;br /&gt;
== MT Fire Eagle ==&lt;br /&gt;
&lt;br /&gt;
|LFI http://joomlacode.org/gf/project/jfireeagle/frs/ http://www.moto-treks.com&lt;br /&gt;
| 190410&lt;br /&gt;
| product considered retired and to be replaced by dev&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==  com properties   ==&lt;br /&gt;
| http://com-property.com/ SQL I&lt;br /&gt;
|&lt;br /&gt;
|[http://www.com-property.com/images/fbfiles/files/properties-20100413.txt developer announced fix]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Sweetykeeper   ==&lt;br /&gt;
|Sweetykeeper Local File Inclusion Vulnerability  http://www.joomlacorner.com/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  jvehicles   ==&lt;br /&gt;
|SQL Injection http://jvehicles.com&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  worldrates   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  cvmaker   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  advertising   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   horoscope  ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   webtv  ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  diary   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   Multi-Venue Restaurant Menu Manager (MVRMM)  ==&lt;br /&gt;
|http://www.focusdev.co.uk/ &lt;br /&gt;
|120410 &lt;br /&gt;
||[http://extensions.joomla.org/extensions/vertical-markets/food-a-beverage/10015 Version 1.5.2 Stable Update 4]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Memory Book   ==&lt;br /&gt;
|http://dev.pucit.edu.pk/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   TRAVELbook  ==&lt;br /&gt;
| http://www.demo-page.de/&lt;br /&gt;
|120410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
== AlphaUserPoints    ==&lt;br /&gt;
|&lt;br /&gt;
|[http://www.alphaplug.com/index.php/downloads.html?func=fileinfo&amp;amp;id=31 developer upgrade]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JprojectMan   ==&lt;br /&gt;
|LFI http://extensions.joomla.org/extensions/communities-a-groupware/project-a-task-management/5676&lt;br /&gt;
|110410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   CKForms  ==&lt;br /&gt;
|1.3.4 release - Important LFI security fix [http://joomlacode.org/gf/project/ckforms/news/?action=NewsThreadView&amp;amp;id=2814 ]&lt;br /&gt;
|07-04-10 &lt;br /&gt;
|[http://ckforms.cookex.eu/download/download.php upgrade]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   econtentsite  ==&lt;br /&gt;
|LFI&lt;br /&gt;
|040410&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    Jvehicles ==&lt;br /&gt;
|ID&lt;br /&gt;
|040410&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  smestorage   ==&lt;br /&gt;
|[http://www.smestorage.com SMEStorage] LFI&lt;br /&gt;
&lt;br /&gt;
|Updated 29 March 10&lt;br /&gt;
|[http://gelembjuk.com/index.php?option=com_content&amp;amp;view=section&amp;amp;layout=blog&amp;amp;id=1&amp;amp;Itemid=55 developer fix] to 1.1&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  JE Tooltip   ==&lt;br /&gt;
|[http://joomlaextensions.co.in/formcreator/ JE Tooltip] LFI&lt;br /&gt;
|Updated 23 March &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  Gift Exchange Beta   ==&lt;br /&gt;
|[http://extensions.joomla.org/extensions/communities-a-groupware/membership/11680 Gift exchange] SQLi&lt;br /&gt;
|Updated 23 March &lt;br /&gt;
|[http://socialables.com/28-Jomsocial/Gift-Exchange/flypage.tpl.html upgrade beta 1.0.1]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==  RokDownloads  ==&lt;br /&gt;
|[[http://extensions.joomla.org/extensions/directory-a-documentation/downloads/7967 LFI]] &lt;br /&gt;
|15 march 2010&lt;br /&gt;
||upgrade to [http://www.rockettheme.com/extensions-updates/638-rokdownloads-10-released version 1.0]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    gigcalender   ==&lt;br /&gt;
&lt;br /&gt;
|SQLi [http://extensions.joomla.org/extensions/calendars-a-events/events/97)http://extensions.joomla.org/extensions/calendars-a-events/events/97 gigcalender]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==    heza content   ==&lt;br /&gt;
|SQLi [http://extensions.joomla.org/extensions/structure-a-navigation/sections-a-categories/10427)http://extensions.joomla.org/extensions/structure-a-navigation/sections-a-categories/10427  heza content]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
==   juliaportfolio   ==&lt;br /&gt;
|LFI [http://extensions.joomla.org/extensions/directory-&amp;amp;-documentation/portfolio/8519/details juliaportfolio]&lt;br /&gt;
|13 march 2010&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  Flash Magazine Deluxe   ==&lt;br /&gt;
|SQL Injection Vulnerability.&lt;br /&gt;
|Feb 25&lt;br /&gt;
|&#039;&#039;&#039;[http://www.joomplace.com/flash-magazine-deluxe/flash-magazine-deluxe-description.html Developer Update Version 2.0.11 09/03/10]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  SqlReport   ==&lt;br /&gt;
|Sqlreport has a sql/RFI exploit. awaiting confirmation on exact developer.&lt;br /&gt;
|Feb 20&lt;br /&gt;
|&#039;&#039;&#039;Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  Scriptegrator   ==&lt;br /&gt;
|Core Design [http://www.greatjoomla.com/extensions/plugins/core-design-scriptegrator-plugin.html Scriptegrator] RFI exploit&lt;br /&gt;
|Feb 20&lt;br /&gt;
|[http://www.greatjoomla.com/extensions/plugins/core-design-scriptegrator-plugin.html Dev Upgrade announcement]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  AllVideos 3.1  ==&lt;br /&gt;
|&lt;br /&gt;
A vulnerability discovered in versions 3.0. and 3.1 of the plugin can be exploited by malicious people to disclose potentially sensitive information. For security reasons we will not be providing further details to safeguard users of affected versions. http://www.joomlaworks.gr/content/view/77/34/]|&lt;br /&gt;
|17 Feb&lt;br /&gt;
| [http://joomlaworks.googlecode.com/files/plg_jw_allvideos-v3.3_j1.5.zip Version 3.3 release 18th]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  RW Cards   ==&lt;br /&gt;
| [http://extensions.joomla.org/extensions/3430/details RW Card] LFI and ID exploit [http://www.weberr.de/ Dev Site]&lt;br /&gt;
|180210&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&#039;&#039;&#039;  [http://www.weberr.de/index.php/forum.html?func=view&amp;amp;catid=5&amp;amp;id=1939&amp;amp;limit=6 developer update]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
== Yelp ==&lt;br /&gt;
| SQLi - Unable to locate developer. Possibly a custom extension.&lt;br /&gt;
|Feb 01 &lt;br /&gt;
|style=&amp;quot;background:red; color:white&amp;quot; | &#039;&#039;&#039;  Not Known&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  &#039;&#039;&#039;Autartitarot&#039;&#039;&#039;   ==&lt;br /&gt;
|Directory Traversal. Back end access required&lt;br /&gt;
| Feb 05&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; | &#039;&#039;&#039; Please upgrade to [http://www.autartica.be/en/autartitarot version 1.0.4]&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#cef2e0; color:black&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
==  communitypolls   ==&lt;br /&gt;
|LFI - [http://www.corejoomla.com/ community polls] &lt;br /&gt;
|Feb 17&lt;br /&gt;
||upgrade to [http://www.corejoomla.com/ version 1.5.3]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==     ==&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This list is change protected, for updates or additions [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville] or [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=87230 lafrance]&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Codes used ==&lt;br /&gt;
SQLi - SQL injection [http://en.wikipedia.org/wiki/Code_injection#SQL_injection wikipedia]&lt;br /&gt;
&lt;br /&gt;
LFI - Local File Inclusion [http://www.scribd.com/doc/6498408/Remote-and-Local-File-Inclusion-Explained scribd]&lt;br /&gt;
&lt;br /&gt;
RFI - Remote file inclusion [http://en.wikipedia.org/wiki/Remote_File_Inclusion wikipedia]&lt;br /&gt;
&lt;br /&gt;
DT - Directory Traversal [http://en.wikipedia.org/wiki/Directory_traversal wikipedia]&lt;br /&gt;
&lt;br /&gt;
ID = Information Disclosure: account information or sensitive information publicly viewable&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Developers - How to get yourself removed from the VEL ==&lt;br /&gt;
&lt;br /&gt;
Resolved items will be removed after a suitable period and not on resolution&lt;br /&gt;
&lt;br /&gt;
Please solve the issues and:&lt;br /&gt;
&lt;br /&gt;
* If JED listed &lt;br /&gt;
Attach the new zip file at your actual JED listing.&lt;br /&gt;
&lt;br /&gt;
Change the extension version at JED listing.&lt;br /&gt;
&lt;br /&gt;
Contact the JED by mail back with a notice and ask them republish your listing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* If not JED listed. &lt;br /&gt;
Inform us by PM of the link to your resolution notice on your website.&lt;br /&gt;
&lt;br /&gt;
== Future Actions &amp;amp; WIP ==&lt;br /&gt;
&lt;br /&gt;
[http://feeds.joomla.org/JoomlaSecurityVulnerableExtensions RSS feed] completed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to feed VEL direct to twitter&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
The RSS feed is currently fed by item entry order and not by date fixed. &lt;br /&gt;
List as discussed in  [[jtopic:455746]] by [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=67439 PhilD] editing by [http://forum.joomla.org/memberlist.php?mode=viewprofile&amp;amp;u=28000 Mandville]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Category:Security]]&lt;br /&gt;
[[Category:Security_FAQ]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Hidabe</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived:Summer_of_Code_2009_Project_Ideas&amp;diff=13724</id>
		<title>Archived:Summer of Code 2009 Project Ideas</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived:Summer_of_Code_2009_Project_Ideas&amp;diff=13724"/>
		<updated>2009-03-22T16:54:55Z</updated>

		<summary type="html">&lt;p&gt;Hidabe: /* Joomla Multisites */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Gsoc_2009_logo.png|right]]&lt;br /&gt;
&lt;br /&gt;
===Welcome!===&lt;br /&gt;
Welcome to the Joomla! Google Summer of Code (GSoC) 2009 project ideas page. As we move forward with the 2009 version of the Joomla! GSoC, we will use this page to develop possible project ideas. Please note that anyone who is interested can participate in this process. You do not have to be a GSoC student or mentor to suggest possible project ideas. Thanks!&lt;br /&gt;
&lt;br /&gt;
===Ideas===&lt;br /&gt;
&lt;br /&gt;
=====Advanced Poll/Survey Suite=====&lt;br /&gt;
&lt;br /&gt;
The core polls extension has been removed from Joomla! 1.6. Develop a fully featured poll/survey suite that will allow relatively simple user polls and the collection of complex anonymized survey data authenticated against either the Joomla users database or an external database. Possibly look to [http://limesurvey.org/] as a model or integration.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Wilco Jansen (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; Joomla CMS framework, MVC, PHP 5.2, MySQL&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; medium&lt;br /&gt;
&lt;br /&gt;
=====Full Frontend Editing=====&lt;br /&gt;
&lt;br /&gt;
Right now we only have frontend editing for articles, there are a few improvements I can propose&lt;br /&gt;
* Article editing is done in a modal popup&lt;br /&gt;
* Edit module content and params from frontend (Editing done via a modal popup?)&lt;br /&gt;
* Article Title - edit in place&lt;br /&gt;
* Create some kind of a library function which allows easy frontend editing for any value (This will need some thought)&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Akarawuth Tamrareang (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; Javascript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====Template Manager Improvements/Advanced Template Manager=====&lt;br /&gt;
&lt;br /&gt;
Extend the template manager so that it providers an better environment for template creation and modification.  Improvements might include: &lt;br /&gt;
*expanded tool bar, including copy for a complete template&lt;br /&gt;
*access to the media manager&lt;br /&gt;
*access to all template files (not just css and index.php)&lt;br /&gt;
*override manager&lt;br /&gt;
*integration of an editor with code highlighting (such as codepress)&lt;br /&gt;
*support for template parameter groups&lt;br /&gt;
*remove hard-wired references to template name from the core templates (so the new copy function will work as expected)&lt;br /&gt;
*&amp;quot;export&amp;quot; button on the toolbar which will create a zip package file containing the template (also fixes any errors in the templateDetails.xml file as it goes).&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Mark Dexter (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Work Flow Extension=====&lt;br /&gt;
&lt;br /&gt;
Create a 1.6 Extension to flexibly manage workflow for com_content. &lt;br /&gt;
Ideally it should be extensible to other components, but com_content should be used as the proof of concept.&lt;br /&gt;
Work flow should manage the publication process, including assignment of editors or publishers to specific content items, notifications of relevant actions to specific individuals or groups, change of status to block author editing of published work.&lt;br /&gt;
&lt;br /&gt;
As much as possible administrators should be able to construct their own work flows.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Mark Dexter (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Page Versioning Extension=====&lt;br /&gt;
&lt;br /&gt;
Create a 1.6 content versioning extension with the goal that this work could be integrated into the core Joomla CMS for future releases.&lt;br /&gt;
The Page Versioning Extension will allow the ability for frontend and backend content users to be able to save and re-publish/revert previously saved versions of content items that they have access to.&lt;br /&gt;
&lt;br /&gt;
Further user permissions could be introduced in order to restrict access to this overall feature.&lt;br /&gt;
&lt;br /&gt;
Features could include a visual and html code difference between the current and previously saved versions, as well as general searching data such as dates and time of previous saved entries of that content.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Mark Dexter (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Taxonomy Extension=====&lt;br /&gt;
&lt;br /&gt;
Create a 1.6 Taxonomy extension with the goal that this work could be integrated into the core Joomla CMS for future releases.&lt;br /&gt;
The Taxonomy Extension will allow the ability to organise content for classification, improving on the current Section and Categories classification.&lt;br /&gt;
&lt;br /&gt;
Taxonomy is a vital feature of modern CMS solutions, evolving from the previous &amp;quot;pigeonholeing&amp;quot; of a content item. &lt;br /&gt;
Full organisational structures and multi tagging of content could be included, including powerful search functions of content under  those classifications.&lt;br /&gt;
&lt;br /&gt;
Taxonomy is a missing feature in Joomla!, which another open-source competitor product currently offers. We have seen a number of opportunities when Joomla! misses out on being the chosen option for a CMS due to the lacking of this feature.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Allan Walker (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Keywords Management Extension=====&lt;br /&gt;
Keywords in articles are an important part of many Joomla! sites. They are used for page rankings but also can be used with Related Articles modules and component extensions. In this capacity, they provide a way to relate articles that is much more flexible and free-form than the built-in Section / Category / Article hierarchy.&lt;br /&gt;
&lt;br /&gt;
Currently in Joomla!, keywords are entered when editing each individual article. This has several disadvantages, including:&lt;br /&gt;
* You cannot see already existing keywords when entering in keywords for an article.&lt;br /&gt;
* You cannot see existing articles that are already associated with a keyword.&lt;br /&gt;
* It is difficult to be consistent when using keywords. For example, should it be capitalized, singular or plural (&amp;quot;Dog&amp;quot; or &amp;quot;Dogs&amp;quot;), and so on.&lt;br /&gt;
&lt;br /&gt;
To deal with these issues, a back-end Keyword Management extension is proposed. This extension would allow the following capabilities:&lt;br /&gt;
* A management screen showing a list of all keywords currently in use. This would provide the ability to drill into any keyword and see all articles that use this keyword.&lt;br /&gt;
* A keyword picker screen. This would allow an author to pick keywords for an article from a list of existing keywords. This would make it easier to ensure consistency in spelling, capitalization, and usage between keywords. This screen would also allow the author to add a new keyword to the list.&lt;br /&gt;
* The ability to do global search and replace on keywords.&lt;br /&gt;
* The ability to see keywords ranked by frequency of use.&lt;br /&gt;
* The ability to list articles to which no keywords have been assigned.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Mark Dexter (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====User-Defined List and Blog Layout Extension=====&lt;br /&gt;
Currently in Joomla!, there are built-in Menu Items for list and blog layouts for Sections and Categories. However, the way a list of articles is selected is tightly bound with the way the list is displayed on the page. In theory, you should be able to have a list or blog layout that shows any selection of articles.&lt;br /&gt;
&lt;br /&gt;
To provide this capability, an extension is proposed that would provide layouts similar to the current list and blog layouts. However, the extension would be designed so that the list of articles is provided by a plugin instead of being integrated into the layout. Example plugins could be provided to mimic the current Section, Article, and Front Page layouts. However, the power of this extension is that the user could add their own plugin that would provide a list of articles using any type of query. This list of articles would then feed into the built-in layouts provided by the extension to turn the raw article list into the desired layout.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Ian MacLennan(subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====Improve Unit Test Coverage=====&lt;br /&gt;
Work has been started on this but the number of unit tests currently in use is small. We need to add many more unit tests. Also, currently unit tests are only able to be used for class methods. We have no way, for example, to test page layouts or module insertion into templates. Part of this project could be to research automated testing solutions to test the complete HTML code sent to the browser. This would allow end-to-end automated testing.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Alan Langford (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, PHPUnit, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Web Based Unit Test Runner=====&lt;br /&gt;
Write a test runner that makes it easy to run unit tests from a web browser. The existing unit test framework is based on running PHP from the command line. While this is essential for integrating testing into the build and release process, it&#039;s a barrier to using tests during development.&lt;br /&gt;
&lt;br /&gt;
This project involves adapting web-based test runners provided by PHPUnit to support the &amp;quot;Joomla!&amp;quot; testing environment.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Alan Langford (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, PHPUnit, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====CiviCRM Integration: Plugins to Expose the CiviCRM API to the Joomla! Front End=====&lt;br /&gt;
[http://civicrm.org/ CiviCRM] is a powerful constituent relationship management system designed for the not-for-profit/nongovernmental organizations. It currently integrates with Joomla! and the 2.2 version is native to Joomla! 1.5.&lt;br /&gt;
&lt;br /&gt;
CiviCRM has a rich API only small parts of which are currently easily accessible from the Joomla! front end. Create a series of plugins that allows the flexible and highly integrated use of the CiviCRM API in Joomla Content, modules, and other core and non-core extensions (such as com_user, com_contact_diretory or calendaring components).&lt;br /&gt;
&lt;br /&gt;
For this project the student should plan on interacting closely with both the Joomla! and CiviCRM teams.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Elin Waring (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, CiviCRM Framework, MySQL, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====CiviCRM Integration: Develop Front End Extensions for CiviCRM Data=====&lt;br /&gt;
Develop a suite of front end Joomla! 1.5 extensions (modules, plugins and a Joomla! style MVC front end component) for CiviCRM.&lt;br /&gt;
&lt;br /&gt;
[http://civicrm.org/ CiviCRM] is a powerful constituent relationship management system designed for the not-for-profit/nongovernmental organizations. It currently integrates with Joomla! 1.0.x and 1.5 in legacy mode, and  and the 2.2 version is native to Joomla! 1.5.&lt;br /&gt;
&lt;br /&gt;
Thus far most functionality for CiviCRM in Joomla! has focused on the administrator. This project will focus on fuller development of the CiviCRM Joomla! front end.&lt;br /&gt;
&lt;br /&gt;
This development might include modules, plugins, and a MVC front end component which will allow exposure of various CiviCRM APIs as well as allowing Joomla! users the ability to use template overrides and other ways of controlling design and functionality in ways they are familiar with. &lt;br /&gt;
&lt;br /&gt;
The core of this project will be the completion of a Joomla! MVC front end component for existing front end functionality, the basic skeleton for which has been incorporated in CiviCRM 2.2.&lt;br /&gt;
&lt;br /&gt;
Additional items might focus on modules and views to display information.&lt;br /&gt;
&lt;br /&gt;
Some of these will focus on the display of and interaction with general information, for example:&lt;br /&gt;
* a module showing a list of upcoming events,&lt;br /&gt;
* a module showing progress on a fund raising thermometer,&lt;br /&gt;
* a module displaying the most recent donations, donations at certain levels, total donations or other information,&lt;br /&gt;
* a module containing a contribution button linked to a specific contribution page,&lt;br /&gt;
* a donation reporting view with a layout that displays lists of donors in a given time period, sorted by giving level.&lt;br /&gt;
&lt;br /&gt;
Some will focus on the display of user level information such as:&lt;br /&gt;
* a module displaying an individual&#039;s information from a given profile with the option to update,&lt;br /&gt;
* a module displaying an individual&#039;s summary giving information,&lt;br /&gt;
* a module displaying events an individual is registered for.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Elin Waring (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, CiviCRM Framework, MySQL, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====CiviCRM Integration: Development of Multilingual Functionality=====&lt;br /&gt;
&lt;br /&gt;
[http://civicrm.org/ CiviCRM] is an open source constituent relationship management system used by NGOs and advocacy groups (like Amnesty International, Wikimedia Foundation or the Joomla! and Drupal projects) all over the world. Judging by the number of community-contributed and -maintained translations and civicrm.org statistics, CiviCRM installations exist in over twenty languages using various alphabets (Latin, Cyrillic, Arabic, Devanagari, Chinese). Multi-language support is essential in multilingual countries (like Canada or India), as well as in cross-border (e.g., Central and East European) and worldwide organizations.&lt;br /&gt;
&lt;br /&gt;
For this project the student will extend the multilingual features of CiviCRM (initially created during Google Summer of Code 2008), including (but not limited to) some/all of the following:&lt;br /&gt;
* internationalization of further CiviCRM fields,&lt;br /&gt;
* new, database-based framework for handling translations (partially replacing the existing gettext solution),&lt;br /&gt;
* a solution for proper localization of the initial database seed, according to initial language selection (enumerable values, etc.),&lt;br /&gt;
* changes to CiviCRM upgrade process which will make it work transparently on multilingual sites (as opposed to the current explicit handling of multilingual sites),&lt;br /&gt;
* changes to CiviCRM’s translations portal easing translators’ work,&lt;br /&gt;
* multilingual demo installation for translators, picking up new translations “on the fly”,&lt;br /&gt;
* an automatic engine porting translation strings between CiviCRM releases.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Wes Morgan (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, CiviCRM Framework, MySQL, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====CiviCRM Integration: Multi-Organizational Access Control Lists=====&lt;br /&gt;
[http://civicrm.org/ CiviCRM] is an open source constituent relationship management system used by small and large NGOs and advocacy groups, some of them spanning across many smaller (and not-so-small) organizations and/or divided into subgroups, chapters, etc.&lt;br /&gt;
&lt;br /&gt;
The goal of this project is to extend the current CiviCRM ACL capabilities to cover the needs of such multi-part organizations, as well as CiviCRM installations that span across many organizations (with various strengths of ties between them).&lt;br /&gt;
&lt;br /&gt;
The new ACL features should include (but not be limited to):&lt;br /&gt;
* optional inheritance of access right between related organizations and related sub-organizations,&lt;br /&gt;
* creation and sane management of functional groups on various levels of the (sub-)organization graph (“volunteer coordinator for East US chapters of Org X”, “coordinator of campaign Y across all orgs”, etc.),&lt;br /&gt;
* scalability of the designed ACL system – performance-wise,&lt;br /&gt;
* scalability of the designed ACL system – manageability-wise.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Wes Morgan (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, CiviCRM Framework, MySQL, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====Improved Error Handling=====&lt;br /&gt;
Create a component that will handle standard errors (ex. 404) so that headers are sent for the error code, but the error is trapped and redirected from the error.php file back to Joomla! &lt;br /&gt;
where it can be handled on a normal webpage.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Wilco Jansen (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Media Manager Improvements=====&lt;br /&gt;
The following improvements could be made to the current Joomla! Media Manager:&lt;br /&gt;
* Support content expiration (image/video) that allow user to set start – end date of each content which to be lived on site&lt;br /&gt;
**e.g. food image can be lived on site only 3 months, due to the license issue, so we need to take out the image and replace it with other default image or leave it blank&lt;br /&gt;
* Support user friendly input interface which allow user to complete content input in 1 screen (Text input, Multiple images/videos upload, Tagging, Mapping related content and so on)&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Akarawuth Tamrareang (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, Javascript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====Whiteboard/Wiki Component=====&lt;br /&gt;
Joomla comes with a few core components, and a Whiteboard/Wiki component would be a great addition to those.  It would be a basic implementation of the feature with the following possible features:&lt;br /&gt;
&lt;br /&gt;
* Provide a simple interface for editing (perhaps allowing multiple users to edit at once or locking down while under edit)&lt;br /&gt;
* Ability to restrict user access on posting&lt;br /&gt;
* Organize whiteboards&lt;br /&gt;
* Keep revisions in archive&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Ashwin Date (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, Javascript, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Core Extensions Semantic and SEO Updates=====&lt;br /&gt;
The core extensions can be modified to produce semantic markup.  The tables should be replaced withmore appropriate containers for the contents.  This would not replace the need for template overrides, but rather make the default output stronger to build upon.  The output should also be arranged to best suit the content in the majority of situations.  Perhaps also a basic system reset CSS file would need to be developed to set some of the basic layout items, also to be easily disabled.&lt;br /&gt;
&lt;br /&gt;
The core output cannot be replaced completely without causing many 1.5 templates to break.  Therefore it would be necessary to&lt;br /&gt;
either have a legacy mode for templates or to automatically detect the template type (1.5 or 1.6) in order to provide the right output. &lt;br /&gt;
&lt;br /&gt;
Modules can be defined in a template to have pretty much any name they wish.  While this is great for template makers, it would be good to have at least some guidelines about naming modules.  Module names like user1 and user2 are essentially useless semantically, and to administrators of a site.  Some templates are designed for any module to fit in any position, but in general there are at least a handful that are designed with the menu, footer, and other aspects in mind.  Perhaps Joomla can create some guidelines (not requirements) related to this.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Allan Walker (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Templates for Joomla 1.6=====&lt;br /&gt;
Each version of Joomla comes with a set of templates, and they are updated with each major release.  1.6 is currently in development, and will need a new set of templates.  These templates should:&lt;br /&gt;
&lt;br /&gt;
* Employ semantic markup&lt;br /&gt;
* Provide a fresh look&lt;br /&gt;
* Be flexible to accommodate all kinds of content&lt;br /&gt;
* Come with example core overrides, perhaps for major extensions as well&lt;br /&gt;
* Should have a light memory print&lt;br /&gt;
* Comply with accessibility standards&lt;br /&gt;
* Validate&lt;br /&gt;
* Be easily modified and built upon&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Allan Walker (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, HTML, CSS, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Administrator and Usability Improvements=====&lt;br /&gt;
There are many little improvements that would help with general usability and administration for Joomla users. &lt;br /&gt;
&lt;br /&gt;
* Assigning modules in the Menu Manager&lt;br /&gt;
* Assigning links from Article Manager&lt;br /&gt;
* Copying templates&lt;br /&gt;
* Easily change Control Panel icons&lt;br /&gt;
* Improved Front Page article handling&lt;br /&gt;
* Improve internal mailing system and its notifications&lt;br /&gt;
* Make Control Panel in the menu a one click step, not hover then select&lt;br /&gt;
* Have the main tabs linked in case they are clicked, such as Content goes to Articles&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Mark Dexter (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, Javascript, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Content Item Templates=====&lt;br /&gt;
&lt;br /&gt;
Easy page layout template system so that editors can choose from a pre-defined range of layouts.&lt;br /&gt;
This could be useful when certain pages all require the Name, Date, Author name, photo in a certain area, tagline etc.&lt;br /&gt;
Content item templates could be defined, then saved and authors could then choose from this list, helping sites with larger article content to retain continuity throughout their areas of pages.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Allan Walker (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; Joomla CMS framework, MVC, PHP 5.2, MySQL&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; medium&lt;br /&gt;
&lt;br /&gt;
=====XML DTDs and XML Schemas for all XML files used in Joomla=====&lt;br /&gt;
&lt;br /&gt;
XML files are used in various places throughout Joomla.  Historically, the installer XML files have had DTDs against which they can be validated.  However, there are a number of known issues with these DTDs and there are other XML files used in Joomla that have never had DTDs written at all.  Furthermore, DTDs can only catch certain classes of errors within XML files and we need to look beyond DTDs to look at XML Schemas to catch other classes of errors.&lt;br /&gt;
&lt;br /&gt;
* Review all XML files used in Joomla and list them on the documentation wiki.&lt;br /&gt;
* Create a collection of test cases of XML files that will fail in Joomla and which should, therefore, fail to validate in some way.&lt;br /&gt;
* Where DTDs already exist, review, revise and update them as necessary.&lt;br /&gt;
* Create DTDs for those XML files that don&#039;t currently have one.&lt;br /&gt;
* Create patches for the core code (target 1.6?) to ensure that valid DTDs can be written for all XML files.&lt;br /&gt;
* All current DTDs force some XML elements to appear in a particular order which is neither enforced nor required by Joomla.  If possible, solve this problem so that designers and developers can place those elements in arbitrary order in the XML and still have the XML files validate against the DTDs.&lt;br /&gt;
* Create XML Schemas for all XML files used in Joomla.&lt;br /&gt;
* Ensure that DTDs and XML Schemas are well commented and/or thoroughly documented.&lt;br /&gt;
* Write comprehensive documentation covering the process of validating an XML file against both DTDs and XML Schemas.  Some documentation already exists that can be used as the basis for this.&lt;br /&gt;
* Expand the collection of test cases to include XML files that will not fail in Joomla but which may or may not fail to validate against the DTDs or XML Schemas.&lt;br /&gt;
* Ensure that the test case collection is properly documented so that changes to Joomla and/or the DTDs and XML Schemas can be properly tested.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Chris Davenport (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; Joomla CMS framework, XML / DTD validation&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Alternate Component for Editing Articles=====&lt;br /&gt;
The idea is to have an component on admin side that allows articles to be edited based on the frontend navigation, Something similar to [http://thewebkitchen.co.uk/typo3temp/pics/a367ba3c04.jpg Typo3 admin]implementation (just 2 and 3 in the image).&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Amit Kumar Singh (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; Joomla CMS framework, MVC, PHP 5.2, MySQL&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; medium&lt;br /&gt;
&lt;br /&gt;
=====Magento eCommerce Platform integration into Joomla!=====&lt;br /&gt;
Magento is an actively developing award winning open source eCommerce platform. The idea is to develop a bridge between Magento and Joomla.&lt;br /&gt;
More info about Magento can be found from the following websites:&lt;br /&gt;
[http://www.magentocommerce.com/ Magento official website]&lt;br /&gt;
[http://demo.magentocommerce.com/ Magento online demo]&lt;br /&gt;
[http://www.magentocommerce.com/media/tour/magento-tour-store/view Store tour video]&lt;br /&gt;
[http://www.magentocommerce.com/media/tour/magento-tour-admin/view Admin tour video]&lt;br /&gt;
[http://www.infoworld.com/slideshow/2008/08/168-best_of_open_so-8.html Best of Open Source Enterprise Applications]&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Not assigned yet&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySQL, JavaScript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====Xinha WYSIWYG editor for Joomla! frontend and backend editing=====&lt;br /&gt;
Xinha is a powerful WYSIWYG editor, which supports plugins. So administrator can customize their working environment and even write their own plugins.&lt;br /&gt;
The idea is to integrate Xinha into Joomla! with ability of editing content from frontend and backend. The editor environment must be configurable, output&lt;br /&gt;
HTML code must be W3C compliant, for that we will need also to implement [http://htmlpurifier.org/ HTMLPurifier] plugin into Xinha.&lt;br /&gt;
&lt;br /&gt;
You can try [http://edo.webmaster.am/projects Xinha editor plugin demo] for Joomla! 1.5.&lt;br /&gt;
More info about Xinha can be found from the following websites:&lt;br /&gt;
[http://xinha.webfactional.com/ Xinha official website]&lt;br /&gt;
[http://xinha.raimundmeyer.de/x_examples/ext_example.html Xinha demo]&lt;br /&gt;
[http://xinha.webfactional.com/wiki/Plugins Currently available Xinha plugins]&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Not assigned yet&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, JavaScript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Working copy of Joomla! live site=====&lt;br /&gt;
Usually administrators are working on their live site directly and sometimes they do mistakes as all people do. Usually the live site get&#039;s messed after extension installation/uninstallation process and re-configuration. The idea is to have a working copy of the live site and make changes to it, then if everything is okay after some testing, you can approve changes and the tool will synchronize changes to your live site.&lt;br /&gt;
&lt;br /&gt;
Some of the steps, which will need to be done to complete this project:&lt;br /&gt;
* Develop a tool, which will create a working copy of the site&lt;br /&gt;
* Develop a tool, which will synchronize working copy with the live website&lt;br /&gt;
* Develop a diff tool, which will show not approved changes&lt;br /&gt;
* Interface in working copy to view not approved changes with possibility to reject or approve specified changes&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Sam Moffatt (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySQL, JavaScript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium to Hard&lt;br /&gt;
&lt;br /&gt;
=====Elgg Platform integration into Joomla!=====&lt;br /&gt;
Elgg was providing an elegant and powerful solution for anyone who wants to create their own online community. Elgg is free and open source and powers all kinds of social networks - from education and business to martial arts and rugby. If you are looking for a professional social intranet or just want to run a site for your fishing club, Elgg is a great choice. The idea is to develop a bridge between elgg and Joomla.&lt;br /&gt;
More info about elgg can be found from the following websites:&lt;br /&gt;
[http://www.elgg.org/ elgg official website]&lt;br /&gt;
[http://community.elgg.org/ elgg community online ]&lt;br /&gt;
[http://docs.elgg.org/wiki/Main_Page  elgg Documentation]&lt;br /&gt;
&lt;br /&gt;
Some of the steps, which will need to be done to complete this project:&lt;br /&gt;
* synchronize user between elgg and Joomla!&lt;br /&gt;
* develop module for Joomla! to show Users Activity &lt;br /&gt;
* develop module for Joomla! to show Members photo from Elgg&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Pisan Chueachatchai, Akarawuth Tamrareang (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySQL, JavaScript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====New Extension Install Manager=====&lt;br /&gt;
Update Systems presently doesn&#039;t have an easy to navigate structure for handling the large amount of information that is potentially available when a user wishes to install new extensions into their system backed from the update system. Updates are presented already and temporarily uninstalled items are also displayed as a technology demonstration of what can be achieved using the new system.&lt;br /&gt;
&lt;br /&gt;
A completely new look extension install manager is required to help make meaning of the information that the update system exposes. In part this system should also expose information about existing installed extensions in the system (including any pending updates they might have) as well as new extensions that are available. Its purpose should be similar to the way that &amp;quot;Synaptic&amp;quot; works on Debian or Ubuntu operating systems.&lt;br /&gt;
&lt;br /&gt;
The majority of the data loading framework is build already permitting the enterprising developer to focus primarily on interfacing with the installer system and building a useful user interface to make containing these extensions very easy.&lt;br /&gt;
&lt;br /&gt;
Areas of further development involve research involving the development of a Firefox plugin (or similar) that stream lines installing Joomla! extensions from a web site perhaps similar to the way that Firefox is handled. This would involve developing a service that facilitates authenticated remote installation procedures.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Sam Moffatt (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySQL, JavaScript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Update Server=====&lt;br /&gt;
With the development of the new infrastructure there is a need to create an independent update server to make a developer&#039;s life easier when installing creating extensions. The update server should in part offer a download facility where users can download directly from it via a front end Joomla! component as well as something that will generate XML files statically on the file system and dynamically dependent on the administrator&#039;s choice. The XML files should be generated in the defined format that already exists  and should handle updating automatically. &lt;br /&gt;
&lt;br /&gt;
Expanding on the system it should be able to push notifications out through an extensible plugin system as well as handle automatic mirroring of the files (again via plugins). An example of a notification plugin could be something that automatically updates the JED or posts a new article in a specific category with changelog information. An example of a mirror plugin could be something that automatically uploads files to a release on JoomlaCode, perhaps even creating the release automatically as well. The location of generated XML files should be configurable as well and may also be requested to be uploaded to external resources as well (e.g. a mirror server for the XML update files).&lt;br /&gt;
&lt;br /&gt;
The application should make the most of new features introduced into Joomla! 1.6 such as the Forms API to provide plugin customisable interfaces to various systems.&lt;br /&gt;
&lt;br /&gt;
An extension of this would be the provisioning of content plugins that handle the integration of download URL&#039;s and version numbers for packages that are handled through the system to allow Joomla! content items to interact with the system in a flexible manner.&lt;br /&gt;
&lt;br /&gt;
Proxy functionality would also be desirable to have the update server function as a slave to other sites and permit updates through a proxy. This would also involve a method for mirroring the binary files onto the proxy server as well but has some interesting different functionality to the main project. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Sam Moffatt (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySQL, JavaScript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Authentication Systems=====&lt;br /&gt;
This is a major project consistent of various subparts. It should be undertaken by someone with at least a basic understanding of how Joomla! operates and developing for Joomla!. This is not a good starter project. Students should show an interest in this area and be happy to work in an agile method with tighter deadline for individual projects to come together as a final assessable package. A combination of options might be selected but at least three should be considered.&lt;br /&gt;
&lt;br /&gt;
This is still in moderate draft phase.&lt;br /&gt;
&lt;br /&gt;
* Group Mapping&amp;lt;br/&amp;gt;Group Mappings is a feature that permits external groups to be mapped onto Joomla! groups when the user logs into the system. Implementation of the data retrieval aspect of this project isn&#039;t required however implementation of a user interface to control group mappings is required. The system should permit the administrator to designate that a specified group name string should map to a given user group. Optionally settings may be given priorities to enable mapping of &amp;quot;primary&amp;quot; groups to the user. This project is Joomla! 1.6 only and includes work on the new ACL system that permits multiple groups.&lt;br /&gt;
&lt;br /&gt;
* LDAP Authentication Groups Discovery&amp;lt;br /&amp;gt;Tied in with group mapping the LDAP authentication plugin should then become capable of determining the groups that a user is a member of and reporting this back to the parent system. This will probably be in DN form which is why the group mapping application is useful.&lt;br /&gt;
&lt;br /&gt;
* LDAP User Plugin&amp;lt;br/&amp;gt;Presently I have an LDAP user plugin that permits Joomla! to push users details into LDAP. Ideally this could be expanded to handle groups as a general improvement to the entire user subsystem. Extra user fields should also be populated some how as well. Ideally it should be made into a configurable so that mappings could be made arbitrarily however &#039;templates&#039; for individual directory systems (MSAD, eDirectory, SunOne, OpenDirectory, plain OpenLDAP inetOrgPerson). &lt;br /&gt;
&lt;br /&gt;
* LDAP ACL Backend&amp;lt;br /&amp;gt;This would permit ACL changes to be pushed into LDAP which can then be copied into different Joomla! sites periodically permitting centralised control as well as more generalised ACL systems to hook into Joomla!.&lt;br /&gt;
&lt;br /&gt;
* Pluggable Authentication Requests&amp;lt;br /&amp;gt;Developers should be able to request authentication to occur and then be redirected back to where they are. This authentication system should be pluggable to permit different handlers to be implemented. For example a default plugin would be Joomla!&#039;s Login Form however another authentication fall back might push you through SSO instead and then fall back to the login form.&lt;br /&gt;
&lt;br /&gt;
* External SSO Authentication Hook&amp;lt;br /&amp;gt;Build an external authentication system that permits login hooks into the system outside of the primary site similar to how Moodle handles its authentication. This would aide non-obtrusive SSO authentication requests integrated with the above Pluggable Authentication Requests system without having to go through an entire potential request to Joomla!. This should be a lot more cut down than a full application load and would involve the development of a smaller application to handle this with a slightly different style to what is normally used and could be considered a &#039;harder&#039; project than the rest.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Sam Moffatt (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySQL, JavaScript, Joomla! Framework, LDAP (for some).&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Adminlist library for Joomla! Developers=====&lt;br /&gt;
Many developers create new components every day all over the world. The idea is to develop a library for rendering lists of items in the administration panel (like standard lists of users/articles/categories/etc). It must handle all routine work of creating such lists for components.&lt;br /&gt;
&lt;br /&gt;
It should work like a common form creator class. You set list of fields with their types (columns) and list of values (rows) or an SQL-query to fetch them.&lt;br /&gt;
&lt;br /&gt;
The main features of the library should be:&lt;br /&gt;
&lt;br /&gt;
* Different column types (at least text, link, edit link, publish, order, logical and date types).&lt;br /&gt;
* Inputs for data filtering.&lt;br /&gt;
* Ability to set columns from either the php array or the xml file (this to be discussed).&lt;br /&gt;
* Ajax support for the following tasks: publish/unpublish, order up/order down, save ordering, filtering, sorting by columns.&lt;br /&gt;
* Quick edit mode to change some data on fly without entering item’s edit page.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Oleg Nesterov&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP5, OOP, MySQL, JavaScript, Ajax, and some base knowledge of Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Web Links Component Upgrades=====&lt;br /&gt;
&lt;br /&gt;
Add a new feature that could expand on the basic web links feature to allow users to submit links and then rate them.  It could emulate some of the main features of digg. &lt;br /&gt;
* Expand the submit links feature&lt;br /&gt;
* Provide a ranking functionality&lt;br /&gt;
* Produce modules&lt;br /&gt;
* Plugin to connect with each article written to be included in the ranking&lt;br /&gt;
* Ability to accept submissions from external sites or widgets&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Mark Dexter (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Make it easier to Extend Editors=====&lt;br /&gt;
Currently it is very difficult to extend TinyMCE and other editors by using JavaScript plugins that are available for them. Idea is to make this process easier by allowing Joomla plugins to extend editors. We already have something similar on WordPress backend, which allows us to easily extend the TinyMCE editor using WordPress plugins.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Amit Kumar Singh (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; JavaScript, Joomla CMS framework, MVC, PHP 5.2 &lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Site Cloner=====&lt;br /&gt;
This project involves building a tool that will take an existing site (probably HTML but could be partially dynamically generated) and feature the ability to suck it into Joomla!, stripping the template as it goes and attempting to rebuild the navigation structure whilst also maintaining as much metadata as possible. This project requires exceptional programming skill, a deep knowledge of the Joomla! CMS, and someone with a knack for solving weird problems. An analogous module exists for Drupal in its &amp;quot;[http://drupal.org/project/import_html Import HTML]&amp;quot; and might serve as a good location for study of ideas and concepts.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Sam Moffatt (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; Joomla CMS framework, MVC, PHP 5.2 &lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Very Hard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Typography Plug-in=====&lt;br /&gt;
&#039;&#039;Introduction&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Typography (&#039;&#039;Etymology: typos ⎯ type, graphos ⎯ written&#039;&#039;) is the art and techniques of arranging type, type design, and modifying type glyphs ([http://en.wikipedia.org/wiki/Typography en.wikipedia.org/wiki/Typography]).&lt;br /&gt;
&lt;br /&gt;
Typography is an important part of any text design. It makes texts look better, more sophisticated, and professional. It was a must for all books, newspapers, and other printed text sources at the times when computers did not exist or were not widely spread and the texts were set up by professionals only. Nowadays 99% of texts are created not by professionals and the quality of typography leaves much to be desired. &lt;br /&gt;
&lt;br /&gt;
I agree with those who say that it’s just a small detail but details is something that makes things perfect. As a musician must play from music, a HTML coder must take into account typography rules of text formatting although in both cases most people may not notice any benefits.&lt;br /&gt;
&lt;br /&gt;
At the age of content management systems most texts are set up by common users and the typography issue has become even more visible. This problem can be at least partially solved by involving automated typography scripts while preparing texts for displaying on a web page.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Goal&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The goal is to create Joomla! CMS plug-in that would format texts correctly according to   typography rules of different languages without any loss of page display speed. &lt;br /&gt;
&lt;br /&gt;
The plug-in would be used to fix primes, opening and closing quotes, apostrophes; to fix dashes, and other punctuation; to insert spaces and correct special symbols such as Copyright, Registered, Trademark, and others; to fix parentheses, brackets, angle brackets, and guillemets; to format numbers; to add no-break symbols when necessary, and more. In addition it would be used to handle such issues as quotes within quotes, and others.&lt;br /&gt;
&lt;br /&gt;
Here are two examples from [http://everything2.com/title/rules%20of%20typography everything2.com] to illustrate the way the correctly formatted text would look:&lt;br /&gt;
&lt;br /&gt;
* En français: Einstein a (peut-être) dit : « J’adore 3,14, 298 000 — et 42 ! ».&lt;br /&gt;
* In English: Einstein said: “3.14, 298,000—and 42—are my all-time favourite numbers!”&lt;br /&gt;
&lt;br /&gt;
As you can see, it’s not only a matter of replacing certain symbols with their ‘correct’ versions. Everything is much more complicated, I’d say it’s a challenge :)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Previous Attempts&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
There are quite a few typography plug-ins for Joomla! CMS but none of them is actually intended to format texts correctly. Each of those does certain tricks like inserting special symbols but none is even close to making the whole thing.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Functional Requirements&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The functional requirements in brief can be as follows:&lt;br /&gt;
&lt;br /&gt;
* The plug-in must adjust text formatting according to typography rules of supported languages.&lt;br /&gt;
* The plug-in must work really fast. Probably, regular expressions would work too slowly since there are pretty many typography rules and it would be necessary to create some lexical analyzer working without regular expressions.&lt;br /&gt;
* The plug-in must be scalable so that it must be relatively easy to add new rules for all or only for certain languages. Of course it’s not supposed to be done by end users but still it must be clear and not too complicated for programmers.&lt;br /&gt;
&lt;br /&gt;
Open Issues:&lt;br /&gt;
&lt;br /&gt;
* The plug-in might need cache functionality to speed up front-end pages displaying.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Related Links&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Typography en.wikipedia.org/wiki/Typography]&lt;br /&gt;
* [http://everything2.com/title/rules%20of%20typography Rules of Typography]&lt;br /&gt;
* [http://webtypography.net/toc/ The Elements of Typographic Style Applied to the Web]&lt;br /&gt;
* [http://www.languagegeek.com/typography/apostrophes.html Apostrophes in Native Languages]&lt;br /&gt;
* [http://www.wpdfd.com/issues/23/typography/ Typography]&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Andrey Mishenin&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; PHP, OOP, Joomla! CMS Framework, experience with lexical analyzers coding would greatly help&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Page Title Tags Enhancement=====&lt;br /&gt;
Enhance title tags management in Joomla! for SEO purposes. This is first of all related to the content component that doesn’t handle titles perfectly at this time. &lt;br /&gt;
&lt;br /&gt;
The idea is to allow forming titles basing on the following:&lt;br /&gt;
&lt;br /&gt;
* Website name (optional)&lt;br /&gt;
* Current section and/or current category name (optional)&lt;br /&gt;
* Keywords for current section and/or current category (optional)&lt;br /&gt;
* Current article title&lt;br /&gt;
&lt;br /&gt;
There should be ability to choose a separating symbol: “/”, “⎯”, etc. and the above mentioned items order in the title tag.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Andrey Mishenin&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; PHP, OOP, MySQL, Joomla! CMS Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Relatively easy&lt;br /&gt;
&lt;br /&gt;
=====Joomla Multisites=====&lt;br /&gt;
&lt;br /&gt;
Recently, i needed develop one Joomla portal where users could create own sites easy and fastly.&lt;br /&gt;
For it, i build one small Multisite Master Component that do database reply, create link to Joomla slave directory and more.&lt;br /&gt;
I have table as:&lt;br /&gt;
* Title -&amp;gt; site 1&lt;br /&gt;
* Description -&amp;gt; Description of my site...&lt;br /&gt;
* User_id -&amp;gt; 67&lt;br /&gt;
* Url -&amp;gt; http://tom.yoursite.com&lt;br /&gt;
* Db_name -&amp;gt; slavesite_tom&lt;br /&gt;
* Db_user -&amp;gt; tom_userdb&lt;br /&gt;
* Db_pass -&amp;gt; mypass&lt;br /&gt;
* Pack_id -&amp;gt;12 (This indicates what slave directory and SQL for copy, i have other table with information for it).&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
In Joomla slave configuration.php I have implemented contructor function, where I load Master DB information, and I do comparation URL with it. After, i initialize JConfig fields with it (title = title of site, description = metadata, etc...)&lt;br /&gt;
&lt;br /&gt;
So, i had good multisites system.&lt;br /&gt;
&lt;br /&gt;
But i think that could to be better:&lt;br /&gt;
* Write new code for Master Component and configuration.php slave sites. (in my old version, i have one include to external php file in constructor, this php file rewrite JConfig variables)&lt;br /&gt;
* Creation slave site using only PHP (in my old system, using sh file, dont window server soport).&lt;br /&gt;
* Posible Front-Site component for user creator, that let you change template and other minors admin features.&lt;br /&gt;
* Soport multiple slaves type sites. Now only: reply DB and same files. We can more options: share users DB, dont share files (real copy of joomla slave directory), etc.&lt;br /&gt;
* And more?&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; none?&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, mySQL, Apache (lighttpd, etc) servers, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium-Hard&lt;/div&gt;</summary>
		<author><name>Hidabe</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived:Summer_of_Code_2009_Project_Ideas&amp;diff=13722</id>
		<title>Archived:Summer of Code 2009 Project Ideas</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived:Summer_of_Code_2009_Project_Ideas&amp;diff=13722"/>
		<updated>2009-03-22T16:52:54Z</updated>

		<summary type="html">&lt;p&gt;Hidabe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Gsoc_2009_logo.png|right]]&lt;br /&gt;
&lt;br /&gt;
===Welcome!===&lt;br /&gt;
Welcome to the Joomla! Google Summer of Code (GSoC) 2009 project ideas page. As we move forward with the 2009 version of the Joomla! GSoC, we will use this page to develop possible project ideas. Please note that anyone who is interested can participate in this process. You do not have to be a GSoC student or mentor to suggest possible project ideas. Thanks!&lt;br /&gt;
&lt;br /&gt;
===Ideas===&lt;br /&gt;
&lt;br /&gt;
=====Advanced Poll/Survey Suite=====&lt;br /&gt;
&lt;br /&gt;
The core polls extension has been removed from Joomla! 1.6. Develop a fully featured poll/survey suite that will allow relatively simple user polls and the collection of complex anonymized survey data authenticated against either the Joomla users database or an external database. Possibly look to [http://limesurvey.org/] as a model or integration.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Wilco Jansen (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; Joomla CMS framework, MVC, PHP 5.2, MySQL&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; medium&lt;br /&gt;
&lt;br /&gt;
=====Full Frontend Editing=====&lt;br /&gt;
&lt;br /&gt;
Right now we only have frontend editing for articles, there are a few improvements I can propose&lt;br /&gt;
* Article editing is done in a modal popup&lt;br /&gt;
* Edit module content and params from frontend (Editing done via a modal popup?)&lt;br /&gt;
* Article Title - edit in place&lt;br /&gt;
* Create some kind of a library function which allows easy frontend editing for any value (This will need some thought)&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Akarawuth Tamrareang (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; Javascript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====Template Manager Improvements/Advanced Template Manager=====&lt;br /&gt;
&lt;br /&gt;
Extend the template manager so that it providers an better environment for template creation and modification.  Improvements might include: &lt;br /&gt;
*expanded tool bar, including copy for a complete template&lt;br /&gt;
*access to the media manager&lt;br /&gt;
*access to all template files (not just css and index.php)&lt;br /&gt;
*override manager&lt;br /&gt;
*integration of an editor with code highlighting (such as codepress)&lt;br /&gt;
*support for template parameter groups&lt;br /&gt;
*remove hard-wired references to template name from the core templates (so the new copy function will work as expected)&lt;br /&gt;
*&amp;quot;export&amp;quot; button on the toolbar which will create a zip package file containing the template (also fixes any errors in the templateDetails.xml file as it goes).&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Mark Dexter (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Work Flow Extension=====&lt;br /&gt;
&lt;br /&gt;
Create a 1.6 Extension to flexibly manage workflow for com_content. &lt;br /&gt;
Ideally it should be extensible to other components, but com_content should be used as the proof of concept.&lt;br /&gt;
Work flow should manage the publication process, including assignment of editors or publishers to specific content items, notifications of relevant actions to specific individuals or groups, change of status to block author editing of published work.&lt;br /&gt;
&lt;br /&gt;
As much as possible administrators should be able to construct their own work flows.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Mark Dexter (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Page Versioning Extension=====&lt;br /&gt;
&lt;br /&gt;
Create a 1.6 content versioning extension with the goal that this work could be integrated into the core Joomla CMS for future releases.&lt;br /&gt;
The Page Versioning Extension will allow the ability for frontend and backend content users to be able to save and re-publish/revert previously saved versions of content items that they have access to.&lt;br /&gt;
&lt;br /&gt;
Further user permissions could be introduced in order to restrict access to this overall feature.&lt;br /&gt;
&lt;br /&gt;
Features could include a visual and html code difference between the current and previously saved versions, as well as general searching data such as dates and time of previous saved entries of that content.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Mark Dexter (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Taxonomy Extension=====&lt;br /&gt;
&lt;br /&gt;
Create a 1.6 Taxonomy extension with the goal that this work could be integrated into the core Joomla CMS for future releases.&lt;br /&gt;
The Taxonomy Extension will allow the ability to organise content for classification, improving on the current Section and Categories classification.&lt;br /&gt;
&lt;br /&gt;
Taxonomy is a vital feature of modern CMS solutions, evolving from the previous &amp;quot;pigeonholeing&amp;quot; of a content item. &lt;br /&gt;
Full organisational structures and multi tagging of content could be included, including powerful search functions of content under  those classifications.&lt;br /&gt;
&lt;br /&gt;
Taxonomy is a missing feature in Joomla!, which another open-source competitor product currently offers. We have seen a number of opportunities when Joomla! misses out on being the chosen option for a CMS due to the lacking of this feature.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Allan Walker (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Keywords Management Extension=====&lt;br /&gt;
Keywords in articles are an important part of many Joomla! sites. They are used for page rankings but also can be used with Related Articles modules and component extensions. In this capacity, they provide a way to relate articles that is much more flexible and free-form than the built-in Section / Category / Article hierarchy.&lt;br /&gt;
&lt;br /&gt;
Currently in Joomla!, keywords are entered when editing each individual article. This has several disadvantages, including:&lt;br /&gt;
* You cannot see already existing keywords when entering in keywords for an article.&lt;br /&gt;
* You cannot see existing articles that are already associated with a keyword.&lt;br /&gt;
* It is difficult to be consistent when using keywords. For example, should it be capitalized, singular or plural (&amp;quot;Dog&amp;quot; or &amp;quot;Dogs&amp;quot;), and so on.&lt;br /&gt;
&lt;br /&gt;
To deal with these issues, a back-end Keyword Management extension is proposed. This extension would allow the following capabilities:&lt;br /&gt;
* A management screen showing a list of all keywords currently in use. This would provide the ability to drill into any keyword and see all articles that use this keyword.&lt;br /&gt;
* A keyword picker screen. This would allow an author to pick keywords for an article from a list of existing keywords. This would make it easier to ensure consistency in spelling, capitalization, and usage between keywords. This screen would also allow the author to add a new keyword to the list.&lt;br /&gt;
* The ability to do global search and replace on keywords.&lt;br /&gt;
* The ability to see keywords ranked by frequency of use.&lt;br /&gt;
* The ability to list articles to which no keywords have been assigned.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Mark Dexter (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====User-Defined List and Blog Layout Extension=====&lt;br /&gt;
Currently in Joomla!, there are built-in Menu Items for list and blog layouts for Sections and Categories. However, the way a list of articles is selected is tightly bound with the way the list is displayed on the page. In theory, you should be able to have a list or blog layout that shows any selection of articles.&lt;br /&gt;
&lt;br /&gt;
To provide this capability, an extension is proposed that would provide layouts similar to the current list and blog layouts. However, the extension would be designed so that the list of articles is provided by a plugin instead of being integrated into the layout. Example plugins could be provided to mimic the current Section, Article, and Front Page layouts. However, the power of this extension is that the user could add their own plugin that would provide a list of articles using any type of query. This list of articles would then feed into the built-in layouts provided by the extension to turn the raw article list into the desired layout.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Ian MacLennan(subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====Improve Unit Test Coverage=====&lt;br /&gt;
Work has been started on this but the number of unit tests currently in use is small. We need to add many more unit tests. Also, currently unit tests are only able to be used for class methods. We have no way, for example, to test page layouts or module insertion into templates. Part of this project could be to research automated testing solutions to test the complete HTML code sent to the browser. This would allow end-to-end automated testing.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Alan Langford (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, PHPUnit, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Web Based Unit Test Runner=====&lt;br /&gt;
Write a test runner that makes it easy to run unit tests from a web browser. The existing unit test framework is based on running PHP from the command line. While this is essential for integrating testing into the build and release process, it&#039;s a barrier to using tests during development.&lt;br /&gt;
&lt;br /&gt;
This project involves adapting web-based test runners provided by PHPUnit to support the &amp;quot;Joomla!&amp;quot; testing environment.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Alan Langford (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, PHPUnit, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====CiviCRM Integration: Plugins to Expose the CiviCRM API to the Joomla! Front End=====&lt;br /&gt;
[http://civicrm.org/ CiviCRM] is a powerful constituent relationship management system designed for the not-for-profit/nongovernmental organizations. It currently integrates with Joomla! and the 2.2 version is native to Joomla! 1.5.&lt;br /&gt;
&lt;br /&gt;
CiviCRM has a rich API only small parts of which are currently easily accessible from the Joomla! front end. Create a series of plugins that allows the flexible and highly integrated use of the CiviCRM API in Joomla Content, modules, and other core and non-core extensions (such as com_user, com_contact_diretory or calendaring components).&lt;br /&gt;
&lt;br /&gt;
For this project the student should plan on interacting closely with both the Joomla! and CiviCRM teams.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Elin Waring (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, CiviCRM Framework, MySQL, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====CiviCRM Integration: Develop Front End Extensions for CiviCRM Data=====&lt;br /&gt;
Develop a suite of front end Joomla! 1.5 extensions (modules, plugins and a Joomla! style MVC front end component) for CiviCRM.&lt;br /&gt;
&lt;br /&gt;
[http://civicrm.org/ CiviCRM] is a powerful constituent relationship management system designed for the not-for-profit/nongovernmental organizations. It currently integrates with Joomla! 1.0.x and 1.5 in legacy mode, and  and the 2.2 version is native to Joomla! 1.5.&lt;br /&gt;
&lt;br /&gt;
Thus far most functionality for CiviCRM in Joomla! has focused on the administrator. This project will focus on fuller development of the CiviCRM Joomla! front end.&lt;br /&gt;
&lt;br /&gt;
This development might include modules, plugins, and a MVC front end component which will allow exposure of various CiviCRM APIs as well as allowing Joomla! users the ability to use template overrides and other ways of controlling design and functionality in ways they are familiar with. &lt;br /&gt;
&lt;br /&gt;
The core of this project will be the completion of a Joomla! MVC front end component for existing front end functionality, the basic skeleton for which has been incorporated in CiviCRM 2.2.&lt;br /&gt;
&lt;br /&gt;
Additional items might focus on modules and views to display information.&lt;br /&gt;
&lt;br /&gt;
Some of these will focus on the display of and interaction with general information, for example:&lt;br /&gt;
* a module showing a list of upcoming events,&lt;br /&gt;
* a module showing progress on a fund raising thermometer,&lt;br /&gt;
* a module displaying the most recent donations, donations at certain levels, total donations or other information,&lt;br /&gt;
* a module containing a contribution button linked to a specific contribution page,&lt;br /&gt;
* a donation reporting view with a layout that displays lists of donors in a given time period, sorted by giving level.&lt;br /&gt;
&lt;br /&gt;
Some will focus on the display of user level information such as:&lt;br /&gt;
* a module displaying an individual&#039;s information from a given profile with the option to update,&lt;br /&gt;
* a module displaying an individual&#039;s summary giving information,&lt;br /&gt;
* a module displaying events an individual is registered for.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Elin Waring (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, CiviCRM Framework, MySQL, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====CiviCRM Integration: Development of Multilingual Functionality=====&lt;br /&gt;
&lt;br /&gt;
[http://civicrm.org/ CiviCRM] is an open source constituent relationship management system used by NGOs and advocacy groups (like Amnesty International, Wikimedia Foundation or the Joomla! and Drupal projects) all over the world. Judging by the number of community-contributed and -maintained translations and civicrm.org statistics, CiviCRM installations exist in over twenty languages using various alphabets (Latin, Cyrillic, Arabic, Devanagari, Chinese). Multi-language support is essential in multilingual countries (like Canada or India), as well as in cross-border (e.g., Central and East European) and worldwide organizations.&lt;br /&gt;
&lt;br /&gt;
For this project the student will extend the multilingual features of CiviCRM (initially created during Google Summer of Code 2008), including (but not limited to) some/all of the following:&lt;br /&gt;
* internationalization of further CiviCRM fields,&lt;br /&gt;
* new, database-based framework for handling translations (partially replacing the existing gettext solution),&lt;br /&gt;
* a solution for proper localization of the initial database seed, according to initial language selection (enumerable values, etc.),&lt;br /&gt;
* changes to CiviCRM upgrade process which will make it work transparently on multilingual sites (as opposed to the current explicit handling of multilingual sites),&lt;br /&gt;
* changes to CiviCRM’s translations portal easing translators’ work,&lt;br /&gt;
* multilingual demo installation for translators, picking up new translations “on the fly”,&lt;br /&gt;
* an automatic engine porting translation strings between CiviCRM releases.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Wes Morgan (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, CiviCRM Framework, MySQL, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====CiviCRM Integration: Multi-Organizational Access Control Lists=====&lt;br /&gt;
[http://civicrm.org/ CiviCRM] is an open source constituent relationship management system used by small and large NGOs and advocacy groups, some of them spanning across many smaller (and not-so-small) organizations and/or divided into subgroups, chapters, etc.&lt;br /&gt;
&lt;br /&gt;
The goal of this project is to extend the current CiviCRM ACL capabilities to cover the needs of such multi-part organizations, as well as CiviCRM installations that span across many organizations (with various strengths of ties between them).&lt;br /&gt;
&lt;br /&gt;
The new ACL features should include (but not be limited to):&lt;br /&gt;
* optional inheritance of access right between related organizations and related sub-organizations,&lt;br /&gt;
* creation and sane management of functional groups on various levels of the (sub-)organization graph (“volunteer coordinator for East US chapters of Org X”, “coordinator of campaign Y across all orgs”, etc.),&lt;br /&gt;
* scalability of the designed ACL system – performance-wise,&lt;br /&gt;
* scalability of the designed ACL system – manageability-wise.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Wes Morgan (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, CiviCRM Framework, MySQL, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====Improved Error Handling=====&lt;br /&gt;
Create a component that will handle standard errors (ex. 404) so that headers are sent for the error code, but the error is trapped and redirected from the error.php file back to Joomla! &lt;br /&gt;
where it can be handled on a normal webpage.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Wilco Jansen (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Media Manager Improvements=====&lt;br /&gt;
The following improvements could be made to the current Joomla! Media Manager:&lt;br /&gt;
* Support content expiration (image/video) that allow user to set start – end date of each content which to be lived on site&lt;br /&gt;
**e.g. food image can be lived on site only 3 months, due to the license issue, so we need to take out the image and replace it with other default image or leave it blank&lt;br /&gt;
* Support user friendly input interface which allow user to complete content input in 1 screen (Text input, Multiple images/videos upload, Tagging, Mapping related content and so on)&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Akarawuth Tamrareang (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, Javascript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====Whiteboard/Wiki Component=====&lt;br /&gt;
Joomla comes with a few core components, and a Whiteboard/Wiki component would be a great addition to those.  It would be a basic implementation of the feature with the following possible features:&lt;br /&gt;
&lt;br /&gt;
* Provide a simple interface for editing (perhaps allowing multiple users to edit at once or locking down while under edit)&lt;br /&gt;
* Ability to restrict user access on posting&lt;br /&gt;
* Organize whiteboards&lt;br /&gt;
* Keep revisions in archive&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Ashwin Date (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, Javascript, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Core Extensions Semantic and SEO Updates=====&lt;br /&gt;
The core extensions can be modified to produce semantic markup.  The tables should be replaced withmore appropriate containers for the contents.  This would not replace the need for template overrides, but rather make the default output stronger to build upon.  The output should also be arranged to best suit the content in the majority of situations.  Perhaps also a basic system reset CSS file would need to be developed to set some of the basic layout items, also to be easily disabled.&lt;br /&gt;
&lt;br /&gt;
The core output cannot be replaced completely without causing many 1.5 templates to break.  Therefore it would be necessary to&lt;br /&gt;
either have a legacy mode for templates or to automatically detect the template type (1.5 or 1.6) in order to provide the right output. &lt;br /&gt;
&lt;br /&gt;
Modules can be defined in a template to have pretty much any name they wish.  While this is great for template makers, it would be good to have at least some guidelines about naming modules.  Module names like user1 and user2 are essentially useless semantically, and to administrators of a site.  Some templates are designed for any module to fit in any position, but in general there are at least a handful that are designed with the menu, footer, and other aspects in mind.  Perhaps Joomla can create some guidelines (not requirements) related to this.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Allan Walker (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Templates for Joomla 1.6=====&lt;br /&gt;
Each version of Joomla comes with a set of templates, and they are updated with each major release.  1.6 is currently in development, and will need a new set of templates.  These templates should:&lt;br /&gt;
&lt;br /&gt;
* Employ semantic markup&lt;br /&gt;
* Provide a fresh look&lt;br /&gt;
* Be flexible to accommodate all kinds of content&lt;br /&gt;
* Come with example core overrides, perhaps for major extensions as well&lt;br /&gt;
* Should have a light memory print&lt;br /&gt;
* Comply with accessibility standards&lt;br /&gt;
* Validate&lt;br /&gt;
* Be easily modified and built upon&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Allan Walker (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, HTML, CSS, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Administrator and Usability Improvements=====&lt;br /&gt;
There are many little improvements that would help with general usability and administration for Joomla users. &lt;br /&gt;
&lt;br /&gt;
* Assigning modules in the Menu Manager&lt;br /&gt;
* Assigning links from Article Manager&lt;br /&gt;
* Copying templates&lt;br /&gt;
* Easily change Control Panel icons&lt;br /&gt;
* Improved Front Page article handling&lt;br /&gt;
* Improve internal mailing system and its notifications&lt;br /&gt;
* Make Control Panel in the menu a one click step, not hover then select&lt;br /&gt;
* Have the main tabs linked in case they are clicked, such as Content goes to Articles&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Mark Dexter (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, Javascript, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Content Item Templates=====&lt;br /&gt;
&lt;br /&gt;
Easy page layout template system so that editors can choose from a pre-defined range of layouts.&lt;br /&gt;
This could be useful when certain pages all require the Name, Date, Author name, photo in a certain area, tagline etc.&lt;br /&gt;
Content item templates could be defined, then saved and authors could then choose from this list, helping sites with larger article content to retain continuity throughout their areas of pages.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Allan Walker (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; Joomla CMS framework, MVC, PHP 5.2, MySQL&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; medium&lt;br /&gt;
&lt;br /&gt;
=====XML DTDs and XML Schemas for all XML files used in Joomla=====&lt;br /&gt;
&lt;br /&gt;
XML files are used in various places throughout Joomla.  Historically, the installer XML files have had DTDs against which they can be validated.  However, there are a number of known issues with these DTDs and there are other XML files used in Joomla that have never had DTDs written at all.  Furthermore, DTDs can only catch certain classes of errors within XML files and we need to look beyond DTDs to look at XML Schemas to catch other classes of errors.&lt;br /&gt;
&lt;br /&gt;
* Review all XML files used in Joomla and list them on the documentation wiki.&lt;br /&gt;
* Create a collection of test cases of XML files that will fail in Joomla and which should, therefore, fail to validate in some way.&lt;br /&gt;
* Where DTDs already exist, review, revise and update them as necessary.&lt;br /&gt;
* Create DTDs for those XML files that don&#039;t currently have one.&lt;br /&gt;
* Create patches for the core code (target 1.6?) to ensure that valid DTDs can be written for all XML files.&lt;br /&gt;
* All current DTDs force some XML elements to appear in a particular order which is neither enforced nor required by Joomla.  If possible, solve this problem so that designers and developers can place those elements in arbitrary order in the XML and still have the XML files validate against the DTDs.&lt;br /&gt;
* Create XML Schemas for all XML files used in Joomla.&lt;br /&gt;
* Ensure that DTDs and XML Schemas are well commented and/or thoroughly documented.&lt;br /&gt;
* Write comprehensive documentation covering the process of validating an XML file against both DTDs and XML Schemas.  Some documentation already exists that can be used as the basis for this.&lt;br /&gt;
* Expand the collection of test cases to include XML files that will not fail in Joomla but which may or may not fail to validate against the DTDs or XML Schemas.&lt;br /&gt;
* Ensure that the test case collection is properly documented so that changes to Joomla and/or the DTDs and XML Schemas can be properly tested.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Chris Davenport (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; Joomla CMS framework, XML / DTD validation&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Alternate Component for Editing Articles=====&lt;br /&gt;
The idea is to have an component on admin side that allows articles to be edited based on the frontend navigation, Something similar to [http://thewebkitchen.co.uk/typo3temp/pics/a367ba3c04.jpg Typo3 admin]implementation (just 2 and 3 in the image).&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Amit Kumar Singh (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; Joomla CMS framework, MVC, PHP 5.2, MySQL&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; medium&lt;br /&gt;
&lt;br /&gt;
=====Magento eCommerce Platform integration into Joomla!=====&lt;br /&gt;
Magento is an actively developing award winning open source eCommerce platform. The idea is to develop a bridge between Magento and Joomla.&lt;br /&gt;
More info about Magento can be found from the following websites:&lt;br /&gt;
[http://www.magentocommerce.com/ Magento official website]&lt;br /&gt;
[http://demo.magentocommerce.com/ Magento online demo]&lt;br /&gt;
[http://www.magentocommerce.com/media/tour/magento-tour-store/view Store tour video]&lt;br /&gt;
[http://www.magentocommerce.com/media/tour/magento-tour-admin/view Admin tour video]&lt;br /&gt;
[http://www.infoworld.com/slideshow/2008/08/168-best_of_open_so-8.html Best of Open Source Enterprise Applications]&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Not assigned yet&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySQL, JavaScript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
=====Xinha WYSIWYG editor for Joomla! frontend and backend editing=====&lt;br /&gt;
Xinha is a powerful WYSIWYG editor, which supports plugins. So administrator can customize their working environment and even write their own plugins.&lt;br /&gt;
The idea is to integrate Xinha into Joomla! with ability of editing content from frontend and backend. The editor environment must be configurable, output&lt;br /&gt;
HTML code must be W3C compliant, for that we will need also to implement [http://htmlpurifier.org/ HTMLPurifier] plugin into Xinha.&lt;br /&gt;
&lt;br /&gt;
You can try [http://edo.webmaster.am/projects Xinha editor plugin demo] for Joomla! 1.5.&lt;br /&gt;
More info about Xinha can be found from the following websites:&lt;br /&gt;
[http://xinha.webfactional.com/ Xinha official website]&lt;br /&gt;
[http://xinha.raimundmeyer.de/x_examples/ext_example.html Xinha demo]&lt;br /&gt;
[http://xinha.webfactional.com/wiki/Plugins Currently available Xinha plugins]&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Not assigned yet&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, JavaScript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Working copy of Joomla! live site=====&lt;br /&gt;
Usually administrators are working on their live site directly and sometimes they do mistakes as all people do. Usually the live site get&#039;s messed after extension installation/uninstallation process and re-configuration. The idea is to have a working copy of the live site and make changes to it, then if everything is okay after some testing, you can approve changes and the tool will synchronize changes to your live site.&lt;br /&gt;
&lt;br /&gt;
Some of the steps, which will need to be done to complete this project:&lt;br /&gt;
* Develop a tool, which will create a working copy of the site&lt;br /&gt;
* Develop a tool, which will synchronize working copy with the live website&lt;br /&gt;
* Develop a diff tool, which will show not approved changes&lt;br /&gt;
* Interface in working copy to view not approved changes with possibility to reject or approve specified changes&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Sam Moffatt (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySQL, JavaScript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium to Hard&lt;br /&gt;
&lt;br /&gt;
=====Elgg Platform integration into Joomla!=====&lt;br /&gt;
Elgg was providing an elegant and powerful solution for anyone who wants to create their own online community. Elgg is free and open source and powers all kinds of social networks - from education and business to martial arts and rugby. If you are looking for a professional social intranet or just want to run a site for your fishing club, Elgg is a great choice. The idea is to develop a bridge between elgg and Joomla.&lt;br /&gt;
More info about elgg can be found from the following websites:&lt;br /&gt;
[http://www.elgg.org/ elgg official website]&lt;br /&gt;
[http://community.elgg.org/ elgg community online ]&lt;br /&gt;
[http://docs.elgg.org/wiki/Main_Page  elgg Documentation]&lt;br /&gt;
&lt;br /&gt;
Some of the steps, which will need to be done to complete this project:&lt;br /&gt;
* synchronize user between elgg and Joomla!&lt;br /&gt;
* develop module for Joomla! to show Users Activity &lt;br /&gt;
* develop module for Joomla! to show Members photo from Elgg&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Pisan Chueachatchai, Akarawuth Tamrareang (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySQL, JavaScript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====New Extension Install Manager=====&lt;br /&gt;
Update Systems presently doesn&#039;t have an easy to navigate structure for handling the large amount of information that is potentially available when a user wishes to install new extensions into their system backed from the update system. Updates are presented already and temporarily uninstalled items are also displayed as a technology demonstration of what can be achieved using the new system.&lt;br /&gt;
&lt;br /&gt;
A completely new look extension install manager is required to help make meaning of the information that the update system exposes. In part this system should also expose information about existing installed extensions in the system (including any pending updates they might have) as well as new extensions that are available. Its purpose should be similar to the way that &amp;quot;Synaptic&amp;quot; works on Debian or Ubuntu operating systems.&lt;br /&gt;
&lt;br /&gt;
The majority of the data loading framework is build already permitting the enterprising developer to focus primarily on interfacing with the installer system and building a useful user interface to make containing these extensions very easy.&lt;br /&gt;
&lt;br /&gt;
Areas of further development involve research involving the development of a Firefox plugin (or similar) that stream lines installing Joomla! extensions from a web site perhaps similar to the way that Firefox is handled. This would involve developing a service that facilitates authenticated remote installation procedures.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Sam Moffatt (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySQL, JavaScript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Update Server=====&lt;br /&gt;
With the development of the new infrastructure there is a need to create an independent update server to make a developer&#039;s life easier when installing creating extensions. The update server should in part offer a download facility where users can download directly from it via a front end Joomla! component as well as something that will generate XML files statically on the file system and dynamically dependent on the administrator&#039;s choice. The XML files should be generated in the defined format that already exists  and should handle updating automatically. &lt;br /&gt;
&lt;br /&gt;
Expanding on the system it should be able to push notifications out through an extensible plugin system as well as handle automatic mirroring of the files (again via plugins). An example of a notification plugin could be something that automatically updates the JED or posts a new article in a specific category with changelog information. An example of a mirror plugin could be something that automatically uploads files to a release on JoomlaCode, perhaps even creating the release automatically as well. The location of generated XML files should be configurable as well and may also be requested to be uploaded to external resources as well (e.g. a mirror server for the XML update files).&lt;br /&gt;
&lt;br /&gt;
The application should make the most of new features introduced into Joomla! 1.6 such as the Forms API to provide plugin customisable interfaces to various systems.&lt;br /&gt;
&lt;br /&gt;
An extension of this would be the provisioning of content plugins that handle the integration of download URL&#039;s and version numbers for packages that are handled through the system to allow Joomla! content items to interact with the system in a flexible manner.&lt;br /&gt;
&lt;br /&gt;
Proxy functionality would also be desirable to have the update server function as a slave to other sites and permit updates through a proxy. This would also involve a method for mirroring the binary files onto the proxy server as well but has some interesting different functionality to the main project. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Sam Moffatt (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySQL, JavaScript, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Authentication Systems=====&lt;br /&gt;
This is a major project consistent of various subparts. It should be undertaken by someone with at least a basic understanding of how Joomla! operates and developing for Joomla!. This is not a good starter project. Students should show an interest in this area and be happy to work in an agile method with tighter deadline for individual projects to come together as a final assessable package. A combination of options might be selected but at least three should be considered.&lt;br /&gt;
&lt;br /&gt;
This is still in moderate draft phase.&lt;br /&gt;
&lt;br /&gt;
* Group Mapping&amp;lt;br/&amp;gt;Group Mappings is a feature that permits external groups to be mapped onto Joomla! groups when the user logs into the system. Implementation of the data retrieval aspect of this project isn&#039;t required however implementation of a user interface to control group mappings is required. The system should permit the administrator to designate that a specified group name string should map to a given user group. Optionally settings may be given priorities to enable mapping of &amp;quot;primary&amp;quot; groups to the user. This project is Joomla! 1.6 only and includes work on the new ACL system that permits multiple groups.&lt;br /&gt;
&lt;br /&gt;
* LDAP Authentication Groups Discovery&amp;lt;br /&amp;gt;Tied in with group mapping the LDAP authentication plugin should then become capable of determining the groups that a user is a member of and reporting this back to the parent system. This will probably be in DN form which is why the group mapping application is useful.&lt;br /&gt;
&lt;br /&gt;
* LDAP User Plugin&amp;lt;br/&amp;gt;Presently I have an LDAP user plugin that permits Joomla! to push users details into LDAP. Ideally this could be expanded to handle groups as a general improvement to the entire user subsystem. Extra user fields should also be populated some how as well. Ideally it should be made into a configurable so that mappings could be made arbitrarily however &#039;templates&#039; for individual directory systems (MSAD, eDirectory, SunOne, OpenDirectory, plain OpenLDAP inetOrgPerson). &lt;br /&gt;
&lt;br /&gt;
* LDAP ACL Backend&amp;lt;br /&amp;gt;This would permit ACL changes to be pushed into LDAP which can then be copied into different Joomla! sites periodically permitting centralised control as well as more generalised ACL systems to hook into Joomla!.&lt;br /&gt;
&lt;br /&gt;
* Pluggable Authentication Requests&amp;lt;br /&amp;gt;Developers should be able to request authentication to occur and then be redirected back to where they are. This authentication system should be pluggable to permit different handlers to be implemented. For example a default plugin would be Joomla!&#039;s Login Form however another authentication fall back might push you through SSO instead and then fall back to the login form.&lt;br /&gt;
&lt;br /&gt;
* External SSO Authentication Hook&amp;lt;br /&amp;gt;Build an external authentication system that permits login hooks into the system outside of the primary site similar to how Moodle handles its authentication. This would aide non-obtrusive SSO authentication requests integrated with the above Pluggable Authentication Requests system without having to go through an entire potential request to Joomla!. This should be a lot more cut down than a full application load and would involve the development of a smaller application to handle this with a slightly different style to what is normally used and could be considered a &#039;harder&#039; project than the rest.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Sam Moffatt (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySQL, JavaScript, Joomla! Framework, LDAP (for some).&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Adminlist library for Joomla! Developers=====&lt;br /&gt;
Many developers create new components every day all over the world. The idea is to develop a library for rendering lists of items in the administration panel (like standard lists of users/articles/categories/etc). It must handle all routine work of creating such lists for components.&lt;br /&gt;
&lt;br /&gt;
It should work like a common form creator class. You set list of fields with their types (columns) and list of values (rows) or an SQL-query to fetch them.&lt;br /&gt;
&lt;br /&gt;
The main features of the library should be:&lt;br /&gt;
&lt;br /&gt;
* Different column types (at least text, link, edit link, publish, order, logical and date types).&lt;br /&gt;
* Inputs for data filtering.&lt;br /&gt;
* Ability to set columns from either the php array or the xml file (this to be discussed).&lt;br /&gt;
* Ajax support for the following tasks: publish/unpublish, order up/order down, save ordering, filtering, sorting by columns.&lt;br /&gt;
* Quick edit mode to change some data on fly without entering item’s edit page.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Oleg Nesterov&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP5, OOP, MySQL, JavaScript, Ajax, and some base knowledge of Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Web Links Component Upgrades=====&lt;br /&gt;
&lt;br /&gt;
Add a new feature that could expand on the basic web links feature to allow users to submit links and then rate them.  It could emulate some of the main features of digg. &lt;br /&gt;
* Expand the submit links feature&lt;br /&gt;
* Provide a ranking functionality&lt;br /&gt;
* Produce modules&lt;br /&gt;
* Plugin to connect with each article written to be included in the ranking&lt;br /&gt;
* Ability to accept submissions from external sites or widgets&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Mark Dexter (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, MySql, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium&lt;br /&gt;
&lt;br /&gt;
=====Make it easier to Extend Editors=====&lt;br /&gt;
Currently it is very difficult to extend TinyMCE and other editors by using JavaScript plugins that are available for them. Idea is to make this process easier by allowing Joomla plugins to extend editors. We already have something similar on WordPress backend, which allows us to easily extend the TinyMCE editor using WordPress plugins.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Amit Kumar Singh (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; JavaScript, Joomla CMS framework, MVC, PHP 5.2 &lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Site Cloner=====&lt;br /&gt;
This project involves building a tool that will take an existing site (probably HTML but could be partially dynamically generated) and feature the ability to suck it into Joomla!, stripping the template as it goes and attempting to rebuild the navigation structure whilst also maintaining as much metadata as possible. This project requires exceptional programming skill, a deep knowledge of the Joomla! CMS, and someone with a knack for solving weird problems. An analogous module exists for Drupal in its &amp;quot;[http://drupal.org/project/import_html Import HTML]&amp;quot; and might serve as a good location for study of ideas and concepts.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Sam Moffatt (subject to change)&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; Joomla CMS framework, MVC, PHP 5.2 &lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Very Hard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Typography Plug-in=====&lt;br /&gt;
&#039;&#039;Introduction&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Typography (&#039;&#039;Etymology: typos ⎯ type, graphos ⎯ written&#039;&#039;) is the art and techniques of arranging type, type design, and modifying type glyphs ([http://en.wikipedia.org/wiki/Typography en.wikipedia.org/wiki/Typography]).&lt;br /&gt;
&lt;br /&gt;
Typography is an important part of any text design. It makes texts look better, more sophisticated, and professional. It was a must for all books, newspapers, and other printed text sources at the times when computers did not exist or were not widely spread and the texts were set up by professionals only. Nowadays 99% of texts are created not by professionals and the quality of typography leaves much to be desired. &lt;br /&gt;
&lt;br /&gt;
I agree with those who say that it’s just a small detail but details is something that makes things perfect. As a musician must play from music, a HTML coder must take into account typography rules of text formatting although in both cases most people may not notice any benefits.&lt;br /&gt;
&lt;br /&gt;
At the age of content management systems most texts are set up by common users and the typography issue has become even more visible. This problem can be at least partially solved by involving automated typography scripts while preparing texts for displaying on a web page.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Goal&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The goal is to create Joomla! CMS plug-in that would format texts correctly according to   typography rules of different languages without any loss of page display speed. &lt;br /&gt;
&lt;br /&gt;
The plug-in would be used to fix primes, opening and closing quotes, apostrophes; to fix dashes, and other punctuation; to insert spaces and correct special symbols such as Copyright, Registered, Trademark, and others; to fix parentheses, brackets, angle brackets, and guillemets; to format numbers; to add no-break symbols when necessary, and more. In addition it would be used to handle such issues as quotes within quotes, and others.&lt;br /&gt;
&lt;br /&gt;
Here are two examples from [http://everything2.com/title/rules%20of%20typography everything2.com] to illustrate the way the correctly formatted text would look:&lt;br /&gt;
&lt;br /&gt;
* En français: Einstein a (peut-être) dit : « J’adore 3,14, 298 000 — et 42 ! ».&lt;br /&gt;
* In English: Einstein said: “3.14, 298,000—and 42—are my all-time favourite numbers!”&lt;br /&gt;
&lt;br /&gt;
As you can see, it’s not only a matter of replacing certain symbols with their ‘correct’ versions. Everything is much more complicated, I’d say it’s a challenge :)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Previous Attempts&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
There are quite a few typography plug-ins for Joomla! CMS but none of them is actually intended to format texts correctly. Each of those does certain tricks like inserting special symbols but none is even close to making the whole thing.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Functional Requirements&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The functional requirements in brief can be as follows:&lt;br /&gt;
&lt;br /&gt;
* The plug-in must adjust text formatting according to typography rules of supported languages.&lt;br /&gt;
* The plug-in must work really fast. Probably, regular expressions would work too slowly since there are pretty many typography rules and it would be necessary to create some lexical analyzer working without regular expressions.&lt;br /&gt;
* The plug-in must be scalable so that it must be relatively easy to add new rules for all or only for certain languages. Of course it’s not supposed to be done by end users but still it must be clear and not too complicated for programmers.&lt;br /&gt;
&lt;br /&gt;
Open Issues:&lt;br /&gt;
&lt;br /&gt;
* The plug-in might need cache functionality to speed up front-end pages displaying.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Related Links&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Typography en.wikipedia.org/wiki/Typography]&lt;br /&gt;
* [http://everything2.com/title/rules%20of%20typography Rules of Typography]&lt;br /&gt;
* [http://webtypography.net/toc/ The Elements of Typographic Style Applied to the Web]&lt;br /&gt;
* [http://www.languagegeek.com/typography/apostrophes.html Apostrophes in Native Languages]&lt;br /&gt;
* [http://www.wpdfd.com/issues/23/typography/ Typography]&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Andrey Mishenin&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; PHP, OOP, Joomla! CMS Framework, experience with lexical analyzers coding would greatly help&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Hard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Page Title Tags Enhancement=====&lt;br /&gt;
Enhance title tags management in Joomla! for SEO purposes. This is first of all related to the content component that doesn’t handle titles perfectly at this time. &lt;br /&gt;
&lt;br /&gt;
The idea is to allow forming titles basing on the following:&lt;br /&gt;
&lt;br /&gt;
* Website name (optional)&lt;br /&gt;
* Current section and/or current category name (optional)&lt;br /&gt;
* Keywords for current section and/or current category (optional)&lt;br /&gt;
* Current article title&lt;br /&gt;
&lt;br /&gt;
There should be ability to choose a separating symbol: “/”, “⎯”, etc. and the above mentioned items order in the title tag.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; Andrey Mishenin&lt;br /&gt;
:&#039;&#039;&#039;Skills:&#039;&#039;&#039; PHP, OOP, MySQL, Joomla! CMS Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Relatively easy&lt;br /&gt;
&lt;br /&gt;
=====Joomla Multisites=====&lt;br /&gt;
&lt;br /&gt;
Recently, i needed develop one Joomla portal where users could create own sites easy and fastly.&lt;br /&gt;
For it, i build one small Multisite Master Component that do database reply, create link to Joomla slave directory and more.&lt;br /&gt;
I have table as:&lt;br /&gt;
&amp;lt;title&amp;gt;site 1&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;description&amp;gt;Description of my site...&amp;lt;/description&amp;gt;&lt;br /&gt;
&amp;lt;user_id&amp;gt;67&amp;lt;/user_id&amp;gt;&lt;br /&gt;
&amp;lt;url&amp;gt;http://tom.yoursite.com&amp;lt;/url&amp;gt;&lt;br /&gt;
&amp;lt;db_name&amp;gt;slavesite_tom&amp;lt;/db_name&amp;gt;&lt;br /&gt;
&amp;lt;db_user&amp;gt;tom_userdb&amp;lt;/db_user&amp;gt;&lt;br /&gt;
&amp;lt;db_pass&amp;gt;mypass&amp;lt;/db_pass&amp;gt;&lt;br /&gt;
&amp;lt;pack_id&amp;gt;12&amp;lt;/pack_id&amp;gt; (This indicates what slave directory and SQL for copy, i have other table with information for it).&lt;br /&gt;
&lt;br /&gt;
In Joomla slave configuration.php I have implemented contructor function, where I load Master DB information, and I do comparation URL with it. After, i initialize JConfig fields with it (title = title of site, description = metadata, etc...)&lt;br /&gt;
&lt;br /&gt;
So, i had good multisites system.&lt;br /&gt;
&lt;br /&gt;
But i think that could to be better:&lt;br /&gt;
* Write new code for Master Component and configuration.php slave sites. (in my old version, i have one include to external php file in constructor, this php file rewrite JConfig variables)&lt;br /&gt;
* Creation slave site using only PHP (in my old system, using sh file, dont window server soport).&lt;br /&gt;
* Posible Front-Site component for user creator, that let you change template and other minors admin features.&lt;br /&gt;
* Soport multiple slaves type sites. Now only: reply DB and same files. We can more options: share users DB, dont share files (real copy of joomla slave directory), etc.&lt;br /&gt;
* And more?&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Mentor:&#039;&#039;&#039; none?&lt;br /&gt;
:&#039;&#039;&#039;Skills Needed:&#039;&#039;&#039; PHP, mySQL, Apache (lighttpd, etc) servers, Joomla! Framework&lt;br /&gt;
:&#039;&#039;&#039;Difficulty:&#039;&#039;&#039; Medium-Hard&lt;/div&gt;</summary>
		<author><name>Hidabe</name></author>
	</entry>
</feed>