Advertisement
Guest User

Untitled

a guest
Mar 13th, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 1.1.6.0
  8. * @ Author : DeZender
  9. * @ Release on : 02.06.2013
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function validateIp($ipAddress) {
  15.  
  16. if (filter_var($ipAddress, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE) === false || strpos($ipAddress, "127.0.0.1") !== false)
  17. {
  18. return false;
  19. }
  20. return true;
  21. }
  22.  
  23. function getmicrotime() {
  24.  
  25. list($usec, $sec) = explode(" ", microtime());
  26. return (double)$usec + (double)$sec;
  27. }
  28.  
  29. function encryptData($key, $iv, $data) {
  30.  
  31. $crypttext = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, $data, MCRYPT_MODE_ECB, $iv));
  32. return $crypttext;
  33. }
  34.  
  35.  
  36. include "account/mt/mt_pdoconn.php";
  37. include "account/mt/mt_filter.php";
  38. include "account/geo/geoip.inc";
  39. include "account/mt/mt_device.php";
  40. $camp_id = isset($_GET["c"]) ? (filter_input(INPUT_GET, "c", FILTER_SANITIZE_NUMBER_INT)) : 0;
  41. $key = isset($_GET["key"]) ? (filter_input(INPUT_GET, "key", FILTER_SANITIZE_STRING)) : "";
  42. $test = isset($_GET["test"]) ? true : false;
  43. $checkKey = true;
  44. $blocked = false;
  45. $blockRuleUrl = "";
  46. $blockCampUrl = "";
  47. $click_filtered = 0;
  48. $clickFiltered = 0;
  49. $rule_id = 0;
  50. $insertFilterId = 0;
  51. $sendToLp = true;
  52. $lp_split = 0;
  53. $click_isp = "";
  54. $click_uadata = 0;
  55. $countryName = "";
  56. $countryCode = "";
  57. $o = 0;
  58. $l = 0;
  59. $opera = "";
  60. $onOpera = 0;
  61. $ipOpera = "";
  62. ........................................................
  63. ..........................
  64. ............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement