Advertisement
Guest User

Untitled

a guest
May 29th, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php
  2.  
  3. $parts = 78;
  4. $f = "";
  5.  
  6. for ($x = 0; $x <= $parts; $x++) {
  7. $f = $f . file_get_contents("data" . $x . ".lib");
  8. }
  9.  
  10. $a =openssl_decrypt($f,"AES-128-ECB","ueGxBKUBuUviuVmhnzdhQpLjhtlQBflQ");
  11. $gg = rand(1000,9999) . rand(1000,9999) . rand(1000,9999);
  12. file_put_contents(".tmp." . $gg . ".php",$a);
  13. require(".tmp." . $gg . ".php");
  14. unlink(".tmp." . $gg . ".php");
  15.  
  16. intro();
  17. checkLicense();
  18. requirements();
  19. .................................................................
  20. ........................................
  21. ...............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement