Advertisement
Guest User

Untitled

a guest
Apr 4th, 2018
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. /**
  2. *
  3. * @ This file is created by http://DeZender.Net
  4. * @ deZender (PHP5 Decoder for ionCube Encoder)
  5. *
  6. * @ Version : 3.0.8.0
  7. * @ Author : DeZender
  8. * @ Release on : 25.09.2017
  9. * @ Official site : http://DeZender.Net
  10. *
  11. */
  12.  
  13. function NewScriptolutionToken()
  14. {
  15. $scriptolutionrandomtoken = md5( uniqid( rand( ), true ) );
  16. return $scriptolutionrandomtoken;
  17. }
  18.  
  19. function scriptolution_dotcom_data($text)
  20. {
  21. return htmlentities( strip_tags( stripslashes( $text ) ), ENT_COMPAT, 'UTF-8' );
  22. }
  23.  
  24. function scriptolution_dotcom_software($scriptolution_reurl)
  25. {
  26. global $SCRIPTOLUTION_ID;
  27. global $config;
  28.  
  29. if ('0' < $SCRIPTOLUTION_ID) {
  30. }
  31. else {
  32. $rurl = base64_encode( $scriptolution_reurl );
  33. header( 'Location:' . $config['baseurl'] . '/login?r=' . $rurl );
  34. exit( );
  35. }
  36. }
  37.  
  38. function scriptolution_db($scriptolution_variable, $scriptolution_table)
  39. {
  40. global $SCRIPTOLUTION_ID;
  41. ..............................................................................
  42. ..........................................
  43. ............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement