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 // Este archivo es protegido por la ley del derechos de propiedad literaria. La ing..

Decoded Output download

?>
<?php
class MySQL{
private $conexion;
private $total_consultas;
public function open(){
if(!isset($this->conexion)){
	$this->conexion = (mysql_connect(_host,_user,_password)) or die(mysql_error());
	mysql_select_db(_database,$this->conexion) or die(mysql_error());
}
}
public function consulta($consulta){
	$this->total_consultas++;
	$resultado = mysql_query($consulta,$this->conexion);
	if(!$resultado){
		echo 'MySQL Error: ' . mysql_error().'<br>'.$consulta;
		exit;
	}
	return $resultado;
}
public function fetch_array($consulta){
	return mysql_fetch_array($consulta);
}
?>
<?

Did this file decode correctly?

Original Code

<?php
// Este archivo es protegido por la ley del derechos de propiedad literaria. La ingenieria inversa de este codigo se prohibe estrictamente.
eval(gzinflate(base64_decode('
dZJNTsMwEIXXqdQ7DFKkOGroAWhJV+xggTiA5TgT
xVKI0/EEGiHujp20tIRW8sKen2/es73LF9tdV3fL
hW6Uc/AyvL0+fy0XHZkPxQixti0ejG03FzG2rBrp
M65vWLmQ6ovGaKj6VrMvBtthK1LPMZW4M84hi5hr
4+7zEy8N2WgWhEcQ74Pbj/AWNQtZW8eZ7B1SJjuv
8NNSmaZgCUqDx2IksiTS1AuJpojDxnfLshCyVKwK
5TCbC7jJ+B7X3NLJrohPu0sHsytZrYKWmHA8ltYb
m8bse6ThjPgnKrSFOzu3jlMi1LWFZHwdeApSHyCB
NfzRvk62BeXJ+pe+GTsPhsPGW4oIuacWzvDNVasV
sq6lIlLDzO0RMI29XjYhd+Ff/QA=
')));
?>

Function Calls

gzinflate 1
base64_decode 1

Variables

None

Stats

MD5 3a599ac54a4ea7f69355c4ee3c7ce82b
Eval Count 1
Decode Time 59 ms