Virus nell'istanza Drupal 7

3 contenuti / 0 new
Ultimo contenuto
Virus nell'istanza Drupal 7

Salve a tutti. Quando entro sul mio sito e clicco qualsiasi pulsante del menu la pagina non si carica, ma mi esce fuori la segnalazione di AVG anti-virus che mi segnala una minaccia Blachole Exploit Kit. Come posso levare questa minaccia? Grazie.

Drupal Version:

Ciao, entra con FTP sul sito e controlla il file index.php. Deve essere di poche righe. Se c'è del codice strano allora ti hanno bucato il sito.

M.

--
Michel 'ZioBudda' Morelli -- [email protected]
Sviluppo applicazioni CMS DRUPAL e web dinamiche -- Corsi Drupal -- Amministrazione Drupal -- Hosting Drupal

<?php

/**
* @file
* The PHP page that serves all page requests on a Drupal installation.
*
* The routines here dispatch control to the appropriate handler, which then
* prints the appropriate page.
*
* All Drupal code is released under the GNU General Public License.
* See COPYRIGHT.txt and LICENSE.txt.
*/

/**
* Root directory of Drupal installation.
*/
define('DRUPAL_ROOT', getcwd());

require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
menu_execute_active_handler ();

è apposto?