Guest User

Untitled

a guest
May 16th, 2021
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 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.1.0.1
  8. * @ Author : DeZender
  9. * @ Release on : 29.08.2020
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. header('Content-type: application/json');
  15. error_reporting(32767);
  16. ini_set('display_errors', 0);
  17. include 'config.php';
  18. $content = file_get_contents('php://input');
  19. $_POST['json2'] = str_replace('json=', '', $content);
  20.  
  21. if (isset($_POST['json'])) {
  22. $json = $_POST['json'];
  23. $json = str_replace(['!', ')', '('], ['+', '/', '='], $json);
  24. $json = base64_decode($json);
  25. $json = $F->xor_parse($json, '9yLxnB0XIO');
  26. }
  27. else {
  28. exit('b$');
  29. }
  30.  
  31. $json = json_decode($json, true);
  32. $mode = trim(htmlspecialchars(strip_tags($json['mode'])));
  33. $userCode = trim(htmlspecialchars(strip_tags($json['code'])));
  34. $mac = trim(htmlspecialchars(strip_tags($json['mac'])));
  35. .....................................................................
  36. ........................................
  37. ...................
Add Comment
Please, Sign In to add comment