2
Indiquez l’intérêt que vous portez à cette question
0

bot net scripts

Bonjour,

je voulais installer SPIP sur un site Byethost gratuit.
Le compte a été suspendu et le support a signalé un problème de
"bot net" dans le fichier :
/ecrire/inc_version.php
avec le message
"bot net scripts are not allowed here".
Dans le code, je vois :
/*
* Détecteur de robot d’indexation
*/
if (!defined(’_IS_BOT’))
define(’_IS_BOT’,
isset($_SERVER[’HTTP_USER_AGENT’])
and preg_match(
// mots generiques
’,bot|slurp|crawler|spider|webvac|yandex|’
// MSIE 6.0 est un botnet 99,9% du temps, on traite donc ce USER_AGENT comme un bot
. ’MSIE 6.0|’
// UA plus cibles
. ’80legs|accoona|AltaVista|ASPSeek|Baidu|Charlotte|EC2LinkFinder|eStyle|facebook|flipboard|hootsuite|FunWebProducts|Google|Genieo|INA dlweb|InfegyAtlas|Java VM|LiteFinder|Lycos|MetaURI|Moreover|Rambler|Scooter|ScrubbyBloglines|Yahoo|Yeti’
. ’,i’, (string)$_SERVER[’HTTP_USER_AGENT’])
) ;


Ma question : quelqu’un connait-il ce sujet et comment contourner le problème.