Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by deZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 1.1.6.0
- * @ Author : DeZender
- * @ Release on : 02.06.2013
- * @ Official site : http://DeZender.Net
- *
- */
- function validateIp($ipAddress) {
- 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)
- {
- return false;
- }
- return true;
- }
- function getmicrotime() {
- list($usec, $sec) = explode(" ", microtime());
- return (double)$usec + (double)$sec;
- }
- function encryptData($key, $iv, $data) {
- $crypttext = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, $data, MCRYPT_MODE_ECB, $iv));
- return $crypttext;
- }
- include "account/mt/mt_pdoconn.php";
- include "account/mt/mt_filter.php";
- include "account/geo/geoip.inc";
- include "account/mt/mt_device.php";
- $camp_id = isset($_GET["c"]) ? (filter_input(INPUT_GET, "c", FILTER_SANITIZE_NUMBER_INT)) : 0;
- $key = isset($_GET["key"]) ? (filter_input(INPUT_GET, "key", FILTER_SANITIZE_STRING)) : "";
- $test = isset($_GET["test"]) ? true : false;
- $checkKey = true;
- $blocked = false;
- $blockRuleUrl = "";
- $blockCampUrl = "";
- $click_filtered = 0;
- $clickFiltered = 0;
- $rule_id = 0;
- $insertFilterId = 0;
- $sendToLp = true;
- $lp_split = 0;
- $click_isp = "";
- $click_uadata = 0;
- $countryName = "";
- $countryCode = "";
- $o = 0;
- $l = 0;
- $opera = "";
- $onOpera = 0;
- $ipOpera = "";
- ........................................................
- ..........................
- ............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement