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 /****************** * Developed by CXUideas * Project: Wapking Grabber * D..

Decoded Output download

<?php 
/****************** 
 
* Developed by CXUideas 
 
* Project: Wapking Grabber 
 
* Developed on 28/05/2014 
 
* Coded by Febin Baiju 
 
* CXUideas | [email protected] 
 
******************/ 
 
error_reporting(0); 
ob_start(); 
 
include 'w.php'; 
$id = $_GET['id']; 
 
$size = $_GET['size']; 
$u = 'http://waploft.com/files/download/id/'.$id.''; 
if(!empty($size)) 
$u = 'http://waploft.com/files/download/id/'.$id.'/size/'.$size.''; 
include 'config.php'; 
$orig_url = get_headers($u); 
 
$orig_url = trim(str_replace('Location: ',null,$orig_url[7])); 
$ext = strtolower(@end(@explode('.',$orig_url))); 
$base = basename($orig_url); 
 
$paths = str_replace('/'.$base.'',null,preg_replace('@http://(.*?).waploft.com/@',null,$orig_url)); 
$filename = str_ireplace(array('wapking.cc','waploft.com'),$sitename,$base); 
 
if(!file_exists($paths)) 
mkdir($paths,0777,true); 
$r_file = $paths.'/'.$filename; 
if(!file_exists($r_file)) 
 
{ 
if(copy($orig_url,$r_file)) 
{ 
if(strtolower(@end(@explode('.',$r_file)))=='mp3') 
{ 
$sname = $r_file; 
include 'id.php'; 
} 
if(@in_array(strtolower(@end(@explode('.',$r_file))),array('jpg','jpeg','png','gif'))) 
{ 
watermark($r_file); 
} 
header('location:'.$path_url.''.$r_file.''); 
} 
} 
else  
header('location:'.$path_url.''.$r_file.''); 
 
ob_flush(); 
?>

Did this file decode correctly?

Original Code

<?php
/******************

* Developed by CXUideas

* Project: Wapking Grabber

* Developed on 28/05/2014

* Coded by Febin Baiju

* CXUideas | [email protected]

******************/

error_reporting(0);
ob_start();

include 'w.php';
$id = $_GET['id'];

$size = $_GET['size'];
$u = 'http://waploft.com/files/download/id/'.$id.'';
if(!empty($size))
$u = 'http://waploft.com/files/download/id/'.$id.'/size/'.$size.'';
include 'config.php';
$orig_url = get_headers($u);

$orig_url = trim(str_replace('Location: ',null,$orig_url[7]));
$ext = strtolower(@end(@explode('.',$orig_url)));
$base = basename($orig_url);

$paths = str_replace('/'.$base.'',null,preg_replace('@http://(.*?).waploft.com/@',null,$orig_url));
$filename = str_ireplace(array('wapking.cc','waploft.com'),$sitename,$base);

if(!file_exists($paths))
mkdir($paths,0777,true);
$r_file = $paths.'/'.$filename;
if(!file_exists($r_file))

{
if(copy($orig_url,$r_file))
{
if(strtolower(@end(@explode('.',$r_file)))=='mp3')
{
$sname = $r_file;
include 'id.php';
}
if(@in_array(strtolower(@end(@explode('.',$r_file))),array('jpg','jpeg','png','gif')))
{
watermark($r_file);
}
header('location:'.$path_url.''.$r_file.'');
}
}
else 
header('location:'.$path_url.''.$r_file.'');

ob_flush();
?>

Function Calls

ob_start 1
error_reporting 1

Variables

None

Stats

MD5 531c3018fabfb622a9c935c44d65bb64
Eval Count 0
Decode Time 88 ms