Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 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.9.0
  8. * @ Author : DeZender
  9. * @ Release on : 08.08.2019
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. define('MIN_PHP_VERS', '7.1.0');
  15. Tracy\Debugger::enable(ENVIRONMENT == 'development' ? Tracy\Debugger::DEVELOPMENT : Tracy\Debugger::PRODUCTION, APP_PATH . DS . 'logs' . DS . 'Tracy', 'salvis1989@gmail.com');
  16. $security = load_class('security');
  17.  
  18. if ($security->isIPBanned()) {
  19. header('HTTP/1.1 403 Forbidden');
  20. exit('Your ip is black listed!');
  21. }
  22. set_exception_handler(function($e) {
  23. obf_DTYNHVsrNQI8EAxcOxAFGhYIBh4kHAE($e);
  24. });
  25.  
  26. if (!version_compare(MIN_PHP_VERS, PHP_VERSION, '<=')) {
  27. throw new Exception('You must be using PHP ' . MIN_PHP_VERS . ' or better. You are currently using: ' . PHP_VERSION);
  28. ......................................................................
  29. ..........................................
  30. ..................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement