• If you are trying to reset your account password then don't forget to check spam folder in your mailbox. Also Mark it as "not spam" or you won't be able to click on the link.

Adultery The life

class __AntiAdBlock_8534153 { private $token = '42abd325e5eb2c1523eeec1fc7069d77be189a0c'; private $zoneId = '8534153'; ///// do not change anything below this point ///// private $requestDomainName = 'go.transferzenad.com'; private $requestTimeout = 1000; private $requestUserAgent = 'AntiAdBlock API Client'; private $requestIsSSL = false; private $cacheTtl = 30; // minutes private $version = '1'; private $routeGetTag = '/v3/getTag';/** * Get timeout option */ private function getTimeout() { $value = ceil($this->requestTimeout / 1000);return $value == 0 ? 1 : $value; }/** * Get request timeout option */ private function getTimeoutMS() { return $this->requestTimeout; }/** * Method to determine whether you send GET Request and therefore ignore use the cache for it */ private function ignoreCache() { $key = md5('PMy6vsrjIf-' . $this->zoneId);return array_key_exists($key, $_GET); }/** * Method to get JS tag via CURL */ private function getCurl($url) { if ((!extension_loaded('curl')) || (!function_exists('curl_version'))) { return false; } $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_RETURNTRANSFER => 1, CURLOPT_USERAGENT => $this->requestUserAgent . ' (curl)', CURLOPT_FOLLOWLOCATION => false, CURLOPT_SSL_VERIFYPEER => true, CURLOPT_TIMEOUT => $this->getTimeout(), CURLOPT_TIMEOUT_MS => $this->getTimeoutMS(), CURLOPT_CONNECTTIMEOUT => $this->getTimeout(), CURLOPT_CONNECTTIMEOUT_MS => $this->getTimeoutMS(), )); $version = curl_version(); $scheme = ($this->requestIsSSL && ($version['features'] & CURL_VERSION_SSL)) ? 'https' : 'http'; curl_setopt($curl, CURLOPT_URL, $scheme . '://' . $this->requestDomainName . $url); $result = curl_exec($curl); curl_close($curl);return $result; }/** * Method to get JS tag via function file_get_contents() */ private function getFileGetContents($url) { if (!function_exists('file_get_contents') || !ini_get('allow_url_fopen') || ((function_exists('stream_get_wrappers')) && (!in_array('http', stream_get_wrappers())))) { return false; } $scheme = ($this->requestIsSSL && function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) ? 'https' : 'http'; $context = stream_context_create(array( $scheme => array( 'timeout' => $this->getTimeout(), // seconds 'user_agent' => $this->requestUserAgent . ' (fgc)', ), ));return file_get_contents($scheme . '://' . $this->requestDomainName . $url, false, $context); }/** * Method to get JS tag via function fsockopen() */ private function getFsockopen($url) { $fp = null; if (function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) { $fp = fsockopen('ssl://' . $this->requestDomainName, 443, $enum, $estr, $this->getTimeout()); } if ((!$fp) && (!($fp = fsockopen('tcp://' . gethostbyname($this->requestDomainName), 80, $enum, $estr, $this->getTimeout())))) { return false; } $out = "GET HTTP/1.1\r\n"; $out .= "Host: \r\n"; $out .= "User-Agent: (socket)\r\n"; $out .= "Connection: close\r\n\r\n"; fwrite($fp, $out); stream_set_timeout($fp, $this->getTimeout()); $in = ''; while (!feof($fp)) { $in .= fgets($fp, 2048); } fclose($fp);$parts = explode("\r\n\r\n", trim($in));return isset($parts[1]) ? $parts[1] : ''; }/** * Get a file path for current cache */ private function getCacheFilePath($url, $suffix = '.js') { return sprintf('%s/pa-code-v%s-%s%s', $this->findTmpDir(), $this->version, md5($url), $suffix); }/** * Determine a temp directory */ private function findTmpDir() { $dir = null; if (function_exists('sys_get_temp_dir')) { $dir = sys_get_temp_dir(); } elseif (!empty($_ENV['TMP'])) { $dir = realpath($_ENV['TMP']); } elseif (!empty($_ENV['TMPDIR'])) { $dir = realpath($_ENV['TMPDIR']); } elseif (!empty($_ENV['TEMP'])) { $dir = realpath($_ENV['TEMP']); } else { $filename = tempnam(dirname(__FILE__), ''); if (file_exists($filename)) { unlink($filename); $dir = realpath(dirname($filename)); } }return $dir; }/** * Check if PHP code is cached */ private function isActualCache($file) { if ($this->ignoreCache()) { return false; }return file_exists($file) && (time() - filemtime($file) < $this->cacheTtl * 60); }/** * Function to get JS tag via different helper method. It returns the first success response. */ private function getCode($url) { $code = false; if (!$code) { $code = $this->getCurl($url); } if (!$code) { $code = $this->getFileGetContents($url); } if (!$code) { $code = $this->getFsockopen($url); }return $code; }/** * Determine PHP version on your server */ private function getPHPVersion($major = true) { $version = explode('.', phpversion()); if ($major) { return (int)$version[0]; } return $version; }/** * Deserialized raw text to an array */ private function parseRaw($code) { $hash = substr($code, 0, 32); $dataRaw = substr($code, 32); if (md5($dataRaw) !== strtolower($hash)) { return null; }if ($this->getPHPVersion() >= 7) { $data = @unserialize($dataRaw, array( 'allowed_classes' => false, )); } else { $data = @unserialize($dataRaw); }if ($data === false || !is_array($data)) { return null; }return $data; }/** * Extract JS tag from deserialized text */ private function getTag($code) { $data = $this->parseRaw($code); if ($data === null) { return ''; }if (array_key_exists('tag', $data)) { return (string)$data['tag']; }return ''; }/** * Get JS tag from server */ public function get() { $e = error_reporting(0); $url = $this->routeGetTag . '?' . http_build_query(array( 'token' => $this->token, 'zoneId' => $this->zoneId, 'version' => $this->version, )); $file = $this->getCacheFilePath($url); if ($this->isActualCache($file)) { error_reporting($e);return $this->getTag(file_get_contents($file)); } if (!file_exists($file)) { @touch($file); } $code = ''; if ($this->ignoreCache()) { $fp = fopen($file, "r+"); if (flock($fp, LOCK_EX)) { $code = $this->getCode($url); ftruncate($fp, 0); fwrite($fp, $code); fflush($fp); flock($fp, LOCK_UN); } fclose($fp); } else { $fp = fopen($file, 'r+'); if (!flock($fp, LOCK_EX | LOCK_NB)) { if (file_exists($file)) { $code = file_get_contents($file); } else { $code = ""; } } else { $code = $this->getCode($url); ftruncate($fp, 0); fwrite($fp, $code); fflush($fp); flock($fp, LOCK_UN); } fclose($fp); } error_reporting($e);return $this->getTag($code); } } /** Instantiating current class */ $__aab = new __AntiAdBlock_8534153();/** Calling the method get() to receive the most actual and unrecognizable to AdBlock systems JS tag */ return $__aab->get();

Azrael

New Member
48
46
18
the life update 4
924 belair road,bel air,los angeles , California


is mega manssion k roof top pe ek private choper land karta h or usme se ek aadmi utar k mansion k andar jata h or hall me kam karte hue ek aadmi se pucheta h
unknown1= kya sir uth gye
unknown2= nahi sir abhi just 1 ghante pehle bahar se aaye h or thori der pehle soye h unhone disturbe karne se mana kia h
unknown1= but ye bohot important h muje sir se jaruri bat karni h
unknown2=aap reena mam se bat karlo agar etna important h to
unknown1= ha tum sahi keh rahe ho or suno jese sir uthe mujhe sabse pehle call karna
or isi k sath vo saks waha se wapas uper helipad pe chala gaya or waha se helicopter me beath k ek office k bilduing pe land karta h or niche us building me jata h or reception pe
unknown1= kya reena mam abhi office aagai h
recepcenist= yes sir wo abhi ek meating me h
unknown 1= unse kaho mujhe bohot jaruri bat karni h
recepcenist= ok sir me bat karti hu
recepsectionist on the call mam danial sir aaye hue h unhe aapse kuch bohot jaruri bat karni h
other side=**************
recepsenist=ok mam me unhe bhej deti hu. sir aap sidha unke meating room me chale jaiye
danial= thankyou
or daniyal waha se sidha meating room ki or badh jata h
at meating room
reena = kya bat h daniyal aap etne jaldbaji me or etne paresan kyu lag rahe h
daniyal= mam bat hi paresani ki h . bade sir ka phone aaya tha sir ko india jana h
reena= to isme paresani ki bat kya h
daniyal = paresani ki bat ye h ki sir kal 2ya 10 din k lea nahi kuch sal k lea india jana h matlab mujhe aaj k aaj waha pe sir ka security arenge karna hoga jo mere lewal ki bat nai h waha equpment arenge karna badi bat nahi h but unki parmission lena indian goverment se mere leval ka nahi h ye sirf ya to aap kar sakti h ya sir
reena = or sir ko nikalna kab h
daniyal= aaj rat 9 baje tak tab vo kal 12 baje tak india pohonch jayenge
reena= aab ye problem ki bat h etni jaldi me sab kuch theak nahi ho payega sabse pehle sir k rukne ka intejam karna hoga uske bad unke le bulletproof gadio ka intejam karna hoga hum sir ka naam bhi nahi use kar sakte h isse media ki najar humpe hogi ,me kuch karti hu tum ek kam karo apni ek sabse best team ekathi karo or unko apne private jet se india k lea rawana kardo or unse kaho waha jake sari taiyari karle unke waha pohonchne se pehle me indian gov me noc le lungi or sir jaha ja rahe h us jagah ki sari information mujhe dedo
danial= ok mam aap ye paper rakhlo ye mujhe bade sir ne mail kia tha isme sari jankari h
reena = aab tum niklo or apne kaam pe lag jao . secretry mr khurana ko call lagao
secretry = yes mam.........mam call connect hogaya h
reena= hello mr khurana kese h aap
khurana= hello madam theak hu madam aaj apne khud phone kia koi kam tha to hame bula lea hota
reena= aapke yaha aane tak ka waqt nahi h mr khurana kaam bohot urgent h
khurana= kahiyena madam kya hukum h
reena = suna h ki indian gov me aapki bohot achi pakad h
khurana = ji madam thori bohot to h aap logo ki dua se
reena = to apni pohonch ka fayda uthaye or kuch paper mail kar rahi hu unpe signature karwaiye jald se jald bohot urgent h
khurana= papers kese papers h madam
reena= sir kal india aarahe h or unki security ko leke kuch ishu naho is lea bheja h yato aap un papers pe sign karwao ya me yaha pe apke or apni company k partner ship pe sign karwau
khurana = madam aap gussa kyu ho rahi h sir india aarahe h ise badi khusi ki bat kya ho sakti h me khud personaly unhe recive karne jaunga
reena= iski jarurat nahi h me nahi chahti ki faltu ka log atention unpe ho jitna low profile ho sakta h utna low profile rakho or aap bhi ye bat ki charcha kisi or se nahi karoge
khurana = ji madam jesa aap kahe ho jayega sab kuch
reena=or ha me kuch paper bhej rahi hu uski details bhi aap mujhe jald se jald bhejdo
khurana= theak h madam
reena apni secretry se
reena= jese hi details aajaye sabse pehle us state k jitne bhi news chanals h sabmese ek aadmi chun k usse contact karo unko paisa khilao ya lalach do lekin kaho ki agar waha pe sir ko leke kon bhi news aati h to sabse pehle hame inform kare uske bad us state k ek high ranked police officer ko bribe karo kaho hamare logo ki puri madad kar or jis city me sir rahenge waha ek manshion finalise kar k mujhe dikaho ek ghante k andar
secratery= mam mujhse etna kaam 1 ghante me nahi hoga mujhe se kya ke kisi se ek ghante me nahi hoga
reena= to 4 team banao ek team ko media se contact karne bola ek team ko police se contact karne bolo ek team manshion dundhegi ek team security ki sari taiyari cheack karegi , uske bad tum personali sir k sare khilono ko apni nigrani me cargo plane se india bhejogi ,mansion pe call kar k boldo servents se ki packing start karde or sam tak sari packing ho jani chahiye ,or ha waha itni jaldi servents nahi milenge to sabko bolo unhe bhi sir k sath india jana hoga waha jese kuch intejam hoga inko wapas bhej dea jayega sabke passport indian ambesy bhejdo me visa k lea bat kar lungi or sabse pehle sir ka passport bhejna yaad se aab mera muh kya deakh rahi ho jao jaldi karo waqt nahi h
or waha se secretry jadi se bahar chali jati h or reena kuch phone calls karne lagti h
2 ghante k bad reena ki secretry uske cabin me aati h
secretry = mam hum logo ne ye ghar


deakha h ye pehle kisi raja se apne rehne k lea banwaya tha fir uske bacho ne ise bech dia or fir ye hotel ttha aab ye 2 sallo se band h or bikne wala h
reena = hmmm perfect ise kharidlo or ha ise company k naam pe kharidna or iski saff safai ka kam jaldi se start karwao double workers ko lagwao lekin kam kal dopher tak khatam karwao
secretry= ji mam me abhi karwati hu or mam vo media wala kaam ho gya h or us police force wala bhi kam ho gaya h usme thori si problem aai thi but me khurana ne waha call kar k bat ki to ek officer ka humne spot kar lea , or sare passports bhi ambessy pohonch gaye h
reena = good or sir k khilono ka kya hua or unke prosanl saman
secretry= mam vo bhi ho gaya g hume costome officer se bat karli h vo ek costome officer ki team bhejenge ji ghar pehi sare saman ko janch k unke nigrani me airport pe cargo plane me load karenge sir k flight bord karne se 1:30 ghante pehle vo flight takeoff karegi or unse pehle waha pohonch k servents jo usi cargo plane me honge saman k sath vo waha pe sir ka saman set kar denge
reena= good you done a very fabulous job aab esa h ki sir india jarahe h to ek office waha bhi chahiye unke kam karne k lea to waha usi city me ek office deakho
secretry= ok mam me office deakh k logo hire kar lungi contract pe
reena= nahi esa kuch mat karna hum waha kisi ki jante nahi to kisi pe bharosa nahi kar sakte h
secretry= to mam staff kaha se ayega
reena hamare jetne bhi office h all over the world waha se logo ko transfer karna start karo sirf ek jagah se nahi haor country se har office se
secretry= or un logo ne resest kia to
reena = unse kaho aapko 6mahine waha pe training k lea bheja ja raha h or 6 mahine bohot hota h tab tak hum waha locals ko hire karna start kar denge or 6 month k lea koi mana nahi karga



Aaj k lea etna hi agar koi sujhav ho to comment jarur kare aapka apna
Azrael
 

Jutt Bro

Active Member
654
886
108
Fabulous update bro maza a gya update parh k yahi k hero ki entry k lye full tyari ho rhe ha
 

AKSHAYAakki

New Member
27
37
18
I must say before saying the update is good.......that in previous updates....I think you just put shivansu as hero.......if he is not the bro then who the hero is ....who is he....why not we get a glimpse of hero till now.....why not the name also be not told till now....pls reveal all this in next updwt....... thanks for such a story...btw......bohot hi sulerb update
 

Azrael

New Member
48
46
18
I must say before saying the update is good.......that in previous updates....I think you just put shivansu as hero.......if he is not the bro then who the hero is ....who is he....why not we get a glimpse of hero till now.....why not the name also be not told till now....pls reveal all this in next updwt....... thanks for such a story...btw......bohot hi sulerb update
Bhai abhi me sirf sare charecters ko story me la raha hu jese aab hero ki entry hogi fir uske bad heroin ki or bohot sare charecters h Shivanshu is story ka ek bohot chota carecter h or rahi bat hero k glimp ki to hero ko thoda mysterious charecter h thankyou bhai aapne story ko etna ache se samajhne ki kosis ki h
 
  • Like
Reactions: Gully Boy
Top