Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2020
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <?php
  2. // decoded by http://phpdecode.xyz/
  3.  
  4. if( !function_exists("curl_init") || !function_exists("curl_exec") || !function_exists("curl_setopt") )
  5. {
  6. exit( "PHP Curl Library not found" );
  7. }
  8.  
  9. static $temp_lfile = NULL;
  10. $license_data = get_license_file_data();
  11. $run_check = license_run_check($license_data);
  12. if( $run_check )
  13. {
  14. $domain = str_replace("www.", "", $_SERVER["SERVER_NAME"]);
  15. $directory = __DIR__;
  16. if( isset($_SERVER["HTTP_CLIENT_IP"]) )
  17. {
  18. $ip = $_SERVER["HTTP_CLIENT_IP"];
  19. }
  20. else
  21. {
  22. if( isset($_SERVER["HTTP_X_FORWARDED_FOR"]) )
  23. {
  24. $ip = $_SERVER["HTTP_X_FORWARDED_FOR"];
  25. }
  26. else
  27. {
  28. $ip = $_SERVER["REMOTE_ADDR"];
  29. }
  30.  
  31. }
  32.  
  33. $server_ip = $_SERVER["SERVER_ADDR"];
  34. $entered = "http://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];
  35. $referer = (isset($_SERVER["HTTP_REFERER"]) ? $_SERVER["HTTP_REFERER"] : "");
  36. $address = "https://www.sosyofix.com/license/checking/044b840d2c358c0c079e48b25a848e79/86?";
  37. $address .= "domain=" . $doma................................................................................
  38. .....................................................................................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement