Menu Content
Home arrow News arrow Checking your Joomla! site security

JoomSEF 3.1.2 and 2.2.7 Released

Ostrava, 9.7.2008 - JoomSEF 3.1.2 and JoomSEF 2.2.7 are now available for download or upgrade. 3.1.2 is the second service release for Joomla! 1.5 compatible 3.1.x series which fixes bugs reported by users, especially occuring with PHP 4 running in CGI mode. Version 2.2.7 for Joomla 1.0.x  fixes problems with anchors and trailing slashes.
Read more...

JoomSEF 3.1.1 Released

Ostrava, 27.6.2008 - JoomSEF 3.1.1 is now available for download or upgrade. This is the first service release for 3.1.x series which fixes many bugs reported by users and discovered during extensive production testing since 3.1.0 release. It also allows content URLs to be generated in Google News compatible format. Please note that it is only possible to online upgrade from 3.1.0, not from 3.0.x.

Read more...

Neste Oil Rally in Himos

Jämsä, 2.4.2008 - Artio Group is pleased to announce the new site of Neste Oil Rally week in Himos area. The site is based on Joomla! CMS system and it is tuned by Artio's JoomSEF (Search Engine Optimization) service.
Read more...

Himosfestival, 10 years anniversary site

Jämsä, 2.4.2008 - Artio Group has published a new site for Himosfestival.com, Midsummer Day festival in Jämsä, Finland. This will be the 10th anniversary year of Himos Festival, which is one of the biggest rock festivals in Finland.
Read more...

JoomSEF 3.1 is out! Brings SEO Joomla! 1.5. Now native!

Ostrava, 14.6.2008 - JoomSEF 3.1 has just left a long-lasting beta testing phase. The popular SEO component for making Joomla! URLs search engine friendly is now available for download. The 3.1 series in now Joomla! 1.5 native component, so it does not need legacy mode to run.
Read more...

Checking your Joomla! site security

Recently, we have experienced some attempts of Joomla! attack attempts. Therefore, we have decided to publish this article. It is no new discovery, but it brings information to help you sleep well. Especially important this article is for users who are using older Joomla! versions (previous to 1.0.12).
First of all, you should check that your .htaccess file contains following rules, which are now parts of Joomla! distribution by default, but it has not been always so.

########## Begin - Rewrite rules to block out some common exploits## If you experience problems on your site block out the operations listed below## This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits


You should have these rules enabled no matter whether you are using SEF components or not.

Now, what does JoomSEF 2.2.2 adds to this? The answer is simple. If you will install or upgrade to JoomSEF 2.2.2, your site will be protected against most known hacks even when you do not have the rules above included in your .htaccess file. But in any case, we recommend you do not rely on this and except upgrading to JoomSEF 2.2.2 you also check that you have the rules in place and if not, add them.