A. Kodandarami Reddy

Recently added

Bhargava Ramudu
0
HDTV

Bhargava Ramudu

Jul. 04, 1987

Bhargava Ramudu

Bhargava Ramudu is a 1987 Telugu film directed by Kodandarami Reddy. The film stars Balakrishna, Vijayashanti and Sharada in lead roles.
Iddaru Iddare
7.8
HDTV

Iddaru Iddare

Sep. 05, 1990

Iddaru Iddare

Iddaru Iddare is a 1990 Telugu Action drama film, produced by Akkineni Venkat and Yarllagada Surendra under Annapurna Studios & S.S. ...
Surya IPS
6.6
HDTV

Surya IPS

Sep. 05, 1991

Surya IPS

A Garage Mechanic, Chaitanya, who wants to participate in a car race, finds himself beaten and left for dead after he comes to the assistance of ...
President Gari Pellam
6.5
HDTV

President Gari Pellam

Oct. 30, 1992

President Gari Pellam

Swapna pretends to be Raja’s lover to humiliate him in front of the villagers. In retaliation, Raja challenges her father and stands ...
Muta Mesthri
7.1
HDTV

Muta Mesthri

Jan. 16, 1993

Muta Mesthri

Muta Mesthri is action based movie in which, Bose (Chiranjeevi) is a very patriotic man who fights for the rights of the local market workers ...
Maatho Pettukoku
6.9
HDTV

Maatho Pettukoku

Jul. 28, 1995

Maatho Pettukoku

A bold police officer, with the help of his twin brother, fights against law breakers.
Priyaraagalu
5.8
HDTV

Priyaraagalu

Oct. 21, 1997

Priyaraagalu

When Madhu neglects his son while dealing with his wife’s demise, Sneha enters his life as his son’s nanny. Though she falls for ...
Donga
7.4
Bluray

Donga

Mar. 14, 1985

Donga

Donga is action drama based movie in which, Phani (Chiranjeevi) who commits thefts just to help the poor. He loves Kodandaramayya’s daughter ...
Rakshasudu
7.6
Bluray

Rakshasudu

Oct. 02, 1986

Rakshasudu

Pursha is searching for his mother. He meets JK, who has the information on his mother but he first wants Pursha to finish off his rivals. In his ...
Oka Radha Iddaru Krishnulu
6.6
Bluray

Oka Radha Iddaru Krishnulu

Oka Radha Iddaru Krishnulu is a 1986 Indian Telugu-language comedy film, directed and written by A. Kodandarami Reddy. It stars Kamal Haasan, ...
Marana Mrudangam
0
Bluray

Marana Mrudangam

Aug. 04, 1988

Marana Mrudangam

Jaani runs a small time restaurant/casino with his partner Bhillu. One fine day he helps two women stuck with their broken car and gives them a ...
Trinetrudu
0
Bluray

Trinetrudu

Sep. 22, 1988

Trinetrudu

Jaani runs a small time restaurant/casino with his partner Bhillu. One fine day he helps two women stuck with their broken car and gives them a ...
Punya Bhoomi Naa Desam
5.6
Bluray

Punya Bhoomi Naa Desam

A lazy, alcoholic youngster is thrown out of his village at a very young age by his mother for disobeying her orders. He meets a journalist who ...
Muddula Mogudu
7.1
Bluray

Muddula Mogudu

Apr. 25, 1997

Muddula Mogudu

Muddula Mogudu is a 1997 Telugu drama film produced by K. Nageswara Rao under the Ramaa films banner, presented by Kaikala Satyanayana and ...
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();