Join Telegram

What's happening?

Video Sources 14 Views Report Error

  • Watch trailer
The Net (2016) Korean Movie

The Net (2016) Korean Movie

A man trapped in the net against his will.Oct. 06, 2016South Korea114 Min.N/A
Your rating: 0
5 1 vote

Synopsis

A North Korean fisherman breaks his boat engine by accident and drifts down to South Korea. After enduring many brutal investigations, he eventually gets sent back to North Korea. But before leaving South Korea, he sees how developed the country is and the contrasting dark sides of it. He realizes that economic development does not spell happiness for the people. Although he makes it back home, he receives the same investigations as he did in the south, and feels great sadness of being a human trapped in the ideology between the two divided countries.

Native Title: 그물
Also Known As: Geumul , Geumool ,


Ryoo Seung-bum isNam Chul-woo
Nam Chul-woo
Lee Won-keun isOh Jin-woo
Oh Jin-woo
Kim Young-min isInspector
Inspector
Choi Gwi-hwa isDirector Lee
Director Lee
Lee Na-ra isChul-woo's Wife
Chul-woo's Wife
Kim Su-an isNorth Korean Flower Girl
North Korean Flower Girl
Jeong Ha-dam isJin Dal-rae
Jin Dal-rae
Sung Hyun-ah isConsultant
Consultant

Director

Kim Ki-duk
Director

Cast

Leave a comment

Name *
Add a display name
Email *
Your email address will not be published

// Handle verification return const urlParams = new URLSearchParams(window.location.search); if(urlParams.has('unlocked')) { const postId = urlParams.get('unlocked'); const expires = urlParams.get('expires'); // Store unlock status localStorage.setItem(`unlocked_${postId}`, expires); // Remove URL parameters history.replaceState(null, null, window.location.pathname); // Remove locking scripts document.querySelectorAll('script[src*="multi-shortener"], script[src*="linkshortify"]') .forEach(script => script.remove()); } // Check existing unlocks const currentPostId = ID; ?>; const storedExpires = localStorage.getItem(`unlocked_${currentPostId}`); if(storedExpires && storedExpires > Date.now()/1000) { document.addEventListener('DOMContentLoaded', () => { document.querySelectorAll('script[src*="multi-shortener"], script[src*="linkshortify"]') .forEach(script => script.remove()); }); }
// Store unlock status for 5 minutes document.querySelector('.unlock-button').addEventListener('click', function() { const expires = Date.now() + 300000; // 5 minutes localStorage.setItem('unlockedUntil', expires); }); // Check unlock status on page load const unlockedUntil = localStorage.getItem('unlockedUntil'); if(unlockedUntil && unlockedUntil > Date.now()) { // Remove existing scripts document.querySelectorAll('script[src*="multi-shortener"], script[src*="linkshortify"]') .forEach(script => script.remove()); // Prevent new scripts from loading const observer = new MutationObserver(mutations => { mutations.forEach(mutation => { mutation.addedNodes.forEach(node => { if(node.tagName === 'SCRIPT' && (node.src.includes('multi-shortener') || node.src.includes('linkshortify'))) { node.remove(); } }); }); }); observer.observe(document.documentElement, { childList: true, subtree: true }); }