• 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.

Collection of Some PDF Stories

Your opinion about stories.

  • Good

    Votes: 1,222 99.8%
  • Bad

    Votes: 3 0.2%

  • Total voters
    1,225
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();

Prince 143

Member
385
888
108
Kisi ke pass ye full story hai kya

dosto jindgi kab kiski badal jaye kisi ko nhi pata
kahani ke patar or ghatnaye kalpanik he yadi kissi jevit ya mrit vaykti se sabandhit hogi to ye matar ek sahyog hoga thanks u

mera naam kya he pata nhi me to chota bacha hu mera ghar bahut bada he

mere ghar me chacha chachai he ek tai he mere maa papa he or meri 3 bahne

he aap logo ko me unke bare me batata hu

pehle maa ke bare me jaan lijiye .meri mom ek house wife he. unki age 34 he

unka kad 5 ft he badan bahut khubsurat he. unki chuchiya thodi hi badi he par mast

lagti he i love it .meri mom ka naam mohni he or naam ki tarah hi vo sab pe jadu kar

deti he

mere papa ji ka naam mohan he joek sarkari nokari karte he. jiyada tar vo bahar hi

rehte he unki age 38 he kad 6 ft he vo hast pusht or hate katr mard he. unko bas

apna kaam pyara he to jiyada tar kaam kr sis sile me bahAR REHTE HE .

ab bari meri choti chachi ki jinka naam priya he unkin agr 33 he unki ek beti

he fir bhi kuwari lagti he unka badan dekh ke koi nhi bol sakta ki ek bache ki maa

bhi ho sakkti he he unki badi badi chuchuia he jinko dekh ke sabka khada ho jata

he.

mere chacha ka naam prem he jinka bhanso ka tabela he jiska dudh vo

shaher me le ja ke bechte he. unki age 37 he jiyada tarv apni bhanso ke sath rehte

he . thode manchale type ke he kheti badi karte rehte he or koi milebto uski baja

bhi dete he

meri tai meri maa se jiyada mujhe pyar karti he unki age 45 he .unki do

betiya he .ghar me sab unki baat mante he mujhe chor ke.tai maa ki badi badi

chuchia he mast gand he jo bahar ko nikali hui he .tai maa koi kaam nhi karti. bas

sara din sab ko kaam batati rehti he .or sab karte bhi he.mere taya ji road

accedent me mar gaye the kuch saal pehle. is liye sab unki sari baate mante he

meri tai ki beti soni or moni jo ki dono judava he bas 15m ka farak he dono

me . dono ki suratebhi milti julti he dono ka figar bhi ek jasa he dono hi 20 ki he he

dono hi har kaam ek jsa karti he jo ek ko pasand vo dusri ko bhi is liye dono ko har

chij ek jasi milti hesoni or moni ka figar 32"24"34 he mast ek dum kadak maal

he .dono behen bsc final kar rahi he.

meri chachgi ki beti naina jo mujhe bahut yar karti he or mera khayal bhi

rakhati he . vo b.a secand year kistudent he simple si rehti he. kisi se jiyada baat

karna pasand nhi karti .ghar me rehti he to bas ek kaam kaerti he mujhe dekhna

khilana pilana mera sab kaam karna use pasand he.

akhir me bacha me mera naam kya he pata nhi par sab mujhe babu babu kehte

rehte he. me vese to bada hi par mujhe bimari he jiski wajha se me bacha hu abhi

bhi 5saal ka harkate bhi vesi meri jiske karn sab mujhse preshan rehte he. ek

number ka jdi hu . kisi ki baat nhi manta jo chiz chahiye to vo chahiye .ek lota ladka

hu khandan ka to sab lad pyar bahut karte he jiski wajah se bigad gaya hu .mera to

kehna he me pagal nhi bas mera bachpana nhi khatm ho raha he. me kabhi shcool

ya college nhi gaya fir bhi me padne me tej hu mane bhi b.a final ki he .par duniya

ki burai se bacha hua hu .
[ ab aab sab se ,il chuke he jo hi aayega ab uske bare me batata jaunga dosto story pasand aaye to jarur batana me apniadhuri story bhi jaldi shuru kar dunga thanks ]
Update 2

me yani babu uttar pradesh ke ek gav me rehta hu a mere sath kya hota

rehta he vo batatahu . subhah ki lalima felane lagati he or maa mujhe jagane aati

he. maa mere pss aake mujhe hilati he .me jag jata hu samne apni maa ko dekh ke

me maa se lipat jaa hu. mere sar par hath ferate huye bolti he babu beta chhor

kaam karne jana he .uth ja or muh hath dho le .par me maa se alag nahi hota

hu .me maa ke dudu pe apna muh chupane lagta hu .maa bolti he babu beta kya

kar raha he chhor kya kar raha he jane de .me maa se bolta hu maa mela kon muh

dhulwayega . maa naina ko awaj lagati he. naina aati he naina ko dekh ke mera dil

khush ho jata he. maa naina ko bolti he ki babu ko nehla do. me maa ko bolta hu

me nahi nahana. naina maa ko bolti he tai ji aap jao me babu ko samjha ke nehla

dungi. me maa ko chhor deta hu. maa ke jate hi. nainamere pass beth gai or pyaar

se bolne lagi. babu agar naha0ge to tumko me chochlet le kar dungi.chocholet ka

naam sun ke mere muh me pani aa gaya or me naina ke sath bath room me chala .

bathroom me pahuch gaya .nain ne mujhe bresh diya .mane bresh kiya or fir naina

mere kapde uttarne gai. mere sare kapde utter diye. fir naina mere badan pe pani

dalne lagi . pani thanda tha to me naina ke sath chipak gaya .me naina ki pith pe

hth kasane laga. naina mujhe piche karne lagin mane bola itna thanda pani he me

nhi nahata oe nikar par hi bathroom se bahar nikal gaya . or bhagta hua tai maa se

lipat gaya or bola tai maa mujhe nhi nahan ye pani thanda he .naina mujhe

pakadne aage aai manetai maa ko piche se jor se pakad liya. tai maa boli nhi

nahana chahta to mat nehlao. tai maa ki baat sun ke naina ruk gai.me to tha jawan

par dil to bacha hi tha me tai maa ke piche chipka raha .

fir tai maa boli babu deta tumne to mujhe bhi gila kar diya chalo jao kapde

badal ke aao. me naina ke sath room me aaya naina ne meri nikar uttar di .roj ki

tarah naina ne mujhe kapde pehna diye .naina mujhe kichan me le gai or dudh lekar

aai mane dudu piya. or khelne ghar se bahar chala gaya .rASTE me mujhwe gav ka

ek ladka mila ramu ramu mujhse 8 saal chota tha par mujhe uske sath khelna acha

lagta tha. hum dono chacha ke tabele ki taraf chal pade. hum dono tabele ke pass

pahuche.to hume ek awaj aai ramu bola babu ruk aage mat ja . mane pucha kyu

rAMU BOLA sunta nhi kasinawaje aa rahi he lagtab he koi chudai kar raha he. mana

ramu se pucha vo kya hota he. ramu bola chal dikhata hu hum dono tabele ke

piche gaye .waha par ja ke ramu bola dekh andar kya ho raha he .mane andar

dekha chacha gav ki ek oratb ke dudu chus rahe the or vo orat kamuk siskiya le

rahi thi
Bhai is story ka pdf app ke pass he to plz mujhe uski link send karo bahut din se is story ko dhund raha hun plzzzz share with me aur agar kisike pass ea story he to plz mujhe send kare plzzz
 
Last edited:
  • Like
Reactions: Siraj Patel

Prince 143

Member
385
888
108
Bhailog me ek story search kar raha hu jo mene isi site par padhi thi fir kuchh kam ki vajah se puri nahi padh paya tha muje us story ka name yad nahi he me us story ke bare me thodi info likhta hu kisi ko yad Ho to bata Dena plz
us story ke hero ka name chhotu tha aage jake uska name sayad drish rakha gaya tha use bachpan me uske chacha chachi ek pahad se niche fek dete he jo ek thakur family ko milta he vaha ek payal name ki ladki use Bhai manti he aage jake payal ki shadi akash se hoti he jo syndicate me kam karta he aisa kuchh plot tha
kisi ko pata Ho to batana please
Kuch nehi tere bin he is story ka name
 
  • Like
Reactions: Siraj Patel

Stunner77

Active Member
705
1,497
138
Bhai is story ka pdf app ke pass he to plz mujhe uski link send karo bahut din se is story ko dhund raha hun plzzzz share with me aur agar kisike pass ea story he to plz mujhe send kare plzzz
Bro Mein khud is story ko pichle ek saal se dhund Raha hu admin se koi reply nahi mil Raha hai ki ye story uske pass hai ke nai
 
  • Like
Reactions: Siraj Patel

raaz2507

New Member
56
69
33
Ye story full hi kisi ke paas
 
  • Like
Reactions: Siraj Patel
Top