Affects XS2 and Icy Phoenix Beta

In the file .htaccess we have these lines:
Code: [Download] [Hide]
  1. # You may want to enable these lines below to disallow php and perl scripts to access your site  
  2. #RewriteCond %{HTTP_USER_AGENT} ^.*PHP.*$ [OR]  
  3. #RewriteCond %{HTTP_USER_AGENT} ^.*libwww-perl [NC,OR]  
  4.  


I have enabled these lines because I do not let receive registries like:
Code: [Download] [Hide]
  1. ... - [23/Jan/2007:10:29:21 -0800] "GET /xs2/includes/functions_kb.php?phpbb_root_path=xxxxxxx? HTTP/1.1" 403 18085 "-" "libwww-perl/5.805"  
  2.  


The line works or would have of being:
Code: [Download] [Hide]
  1. RewriteCond %{HTTP_USER_AGENT} ^.*libwww-perl.*$ [NC,OR]  
  2.  


Bye