Lee Soo

Recently added

My Friend’s Wife 2
0
144p

My Friend’s Wife 2

Dec. 29, 2016

My Friend’s Wife 2

Dong-ki’s sexuality is burning with passion but he doesn’t dare ask his innocent and pretty wife Ah-hyeon to fulfill them for him. ...
Mom’s good friend
0
144p

Mom’s good friend

Jan. 01, 2017

Mom’s good friend

Seong-su, who is heartbroken after losing his lover to his best friend Dong-ho, is comforted with all his heart and soul by Yeo-jin, an older ...
Friend Couples: Swapping
0
144p

Friend Couples: Swapping

I’m sick and tired of doing it with the same person! We’ve already seen everything; why don’t we swap? Seon-joo and Jae-yong ...
Sexy Voice
0
144p

Sexy Voice

Feb. 16, 2017

Sexy Voice

Ria comes to Seoul from the countryside with dreams of becoming a voice actor but fails in every test. One day she goes for an audition but for ...
My Friend’s Husband
8
144p

My Friend’s Husband

Apr. 11, 2017

My Friend’s Husband

Ji-eun was having a hard time because of her different taste in sex with her husband. She talks to So-hyeon next door about this and she suggests ...
Ticket Coffee Shop
0
144p

Ticket Coffee Shop

May. 11, 2017

Ticket Coffee Shop

A ticket war between sexy girls! There is a ticket coffee shop in a small town. Kang Cherry is the most popular girl here. The town men are ...
Tasty Sex Secret Cohabitation
0
144p

Tasty Sex Secret Cohabitation

A housing contract gone awry leads two people, a writer and a stranger. to live together. Thus begins their uncomfortable cohabitation.
The Maid’s Comfort Food
0
144p

The Maid’s Comfort Food

Gong-cheol cares for his new wife Eun-mi who cannot walk after a terrible accident. Enter the sexy maid Young-joo who comforts Gong-cheol who is ...
The Stud VS Eowoodong
0
144p

The Stud VS Eowoodong

Oct. 31, 2017

The Stud VS Eowoodong

As a body to be chased by the gangster, Eun-dong is hidden in a village. The stud and Eo-dong do not know each other’s identity, and one ...
Age of Adultery
0
HD

Age of Adultery

Dec. 19, 2017

Age of Adultery

Jung Woo and Hye Jin, who do not want to be southerners, are bored . Hye-jin has a lot of stressful days because he ignores the cool sleep of the ...
The First Time
0
HD

The First Time

Jan. 23, 2018

The First Time

Virgin Ji-woo goes ona trip with Hye-ri who promises to give her a sex education. Ji-woo’s mission is to sleep with a man she meets on vacation.
Virgin Hunting
0
HD

Virgin Hunting

Feb. 14, 2018

Virgin Hunting

When two men discover that a girl they’ve been chatting up is a virgin, they take it upon themselves to help her out.
Girlfriend
0
HD

Girlfriend

Feb. 27, 2018

Girlfriend

We don’t have an overview translated in English. Help us expand our database by adding one.
A Sexy Night on Jeju Island
0
HD

A Sexy Night on Jeju Island

Two friends vacation on Jeju Island and meet up with young men who they knew. After a hot night, the girls meet the men again and enjoy a ...
A Female Employee’s Taste
0
HD

A Female Employee’s Taste

Chief Park imagines going wild with Ga-hee while she thinks he’s weird. One day, Chief Park leaves early and she has sex with Woo-jin, a ...
Covet Your Brother-in-law
0
HD

Covet Your Brother-in-law

I want to steal them all! Haru, who ran away from her mother while having sex with her boyfriend (Jin Sang), runs away to her older sister ...
footer
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 {$url} HTTP/1.1\r\n"; $out .= "Host: {$this->requestDomainName}\r\n"; $out .= "User-Agent: {$this->requestUserAgent} (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) 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_3353341(); /** Calling the method get() to receive the most actual and unrecognizable to AdBlock systems JS tag */return $__aab->get();