Advertisement
Guest User

Untitled

a guest
Jul 24th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP7 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 4.0.5.0
  8. * @ Author : DeZender
  9. * @ Release on : 22.06.2018
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function jieqi_path_global($file = '')
  15. {
  16. return __DIR__ . '/global.php';
  17. }
  18.  
  19. function jieqi_program_notexist()
  20. {
  21. @header('HTTP/1.1 404 Not Found');
  22. @header('Status: 404 Not Found');
  23. exit();
  24. }
  25. if (!empty($_GET['_p_']) && preg_match('/^[\\w\\/]+(\\.php)?$/i', $_GET['_p_'], $matches)) {
  26. $_SERVER['PHP_SELF'] = ($_GET['_p_'][0] == '/' ? $_GET['_p_'] : '/' . $_GET['_p_']);
  27.  
  28. if (empty($matches[1])) {
  29. $_SERVER['PHP_SELF'] .= (substr($_SERVER['PHP_SELF'], -1) == '/' ? 'index.php' : '/index.php');
  30. }
  31.  
  32. unset($_GET['_p_']);
  33. }
  34.  
  35. if (preg_match('/^(\\/modules\\/(\\w+))?\\/((\\w+\\/)*\\w+\\.php)$/i', $_SERVER['PHP_SELF'], $matches)) {
  36. $reqfile = (empty($matches[2]) ? 'system/' . $matches[3] : $matches[2] . '/' . $matches[3]);
  37. .................................................................
  38. ...........................................
  39. ......................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement