Advertisement
Guest User

Untitled

a guest
Mar 5th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 3.0.8.0
  8. * @ Author : DeZender
  9. * @ Release on : 25.09.2017
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. include 'common.php';
  15. $cur_title = $lang['Activation_title'];
  16.  
  17. if (isset( $_REQUEST['activate'] )) {
  18. $key = _obfuscate_DQE2MQpcPi0qWxk_HT83Mzg0BSlbNDI( $_REQUEST['key'] );
  19.  
  20. if (strlen( $key ) == 0) {
  21. $error = $lang['activation_no_key'];
  22. }
  23. else if (strlen( $key ) != 14) {
  24. $error = $lang['activation_invalid_key'];
  25. }
  26. else {
  27. $ccode = time( );
  28. $data_ver = DATA_VER;
  29. $snoopy = new Snoopy( );
  30. $snoopy->proxy_host = $config['proxy_host'];
  31. $snoopy->proxy_port = $config['proxy_port'];
  32. $snoopy->proxy_user = $config['proxy_user'];
  33. ...........................................................................
  34. .................................
  35. ............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement