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 trait Parche { function AccessReniec( $cui = "" ) { $array = array( ..

Decoded Output download

<?php trait Parche 
	{ 
		function AccessReniec( $cui = "" ) 
		{ 
			$array = array( 
				"coServicio" => 4, 
				"cui" => $cui, 
				"ruc" => null, 
				"tipoAutenticacion" => 0, 
				"coEmpresa" => null, 
				"coGrupoServicio" => 4 
			); 
			$json = json_encode($array); 
			 
			$url="https://cel.reniec.gob.pe/celweb/iniciasesion"; 
			$response = $this->cc->sendBinary($url, $json); 
			if($this->cc->getHttpStatus()==200 && $response!="") 
			{ 
				return $response; 
			} 
			return false; 
		} 
	} ?>

Did this file decode correctly?

Original Code

<?php trait Parche
	{
		function AccessReniec( $cui = "" )
		{
			$array = array(
				"coServicio" => 4,
				"cui" => $cui,
				"ruc" => null,
				"tipoAutenticacion" => 0,
				"coEmpresa" => null,
				"coGrupoServicio" => 4
			);
			$json = json_encode($array);
			
			$url="https://cel.reniec.gob.pe/celweb/iniciasesion";
			$response = $this->cc->sendBinary($url, $json);
			if($this->cc->getHttpStatus()==200 && $response!="")
			{
				return $response;
			}
			return false;
		}
	} ?>

Function Calls

None

Variables

None

Stats

MD5 bfc9831f8cad97880ad45a1c15ee4e31
Eval Count 0
Decode Time 84 ms