fix: servers/decrypters/zcrypt.py
per link http://vcrypt.net/myfoldersakstream.php
This commit is contained in:
@@ -47,13 +47,17 @@ def get_video_url(page_url, premium=False, user="", password="", video_password=
|
|||||||
data, status = unshortenit.unshorten(url)
|
data, status = unshortenit.unshorten(url)
|
||||||
logger.info("Data - Status zcrypt xshield.net: [%s] [%s] " %(data, status))
|
logger.info("Data - Status zcrypt xshield.net: [%s] [%s] " %(data, status))
|
||||||
elif 'vcrypt.net' in url:
|
elif 'vcrypt.net' in url:
|
||||||
from lib import unshortenit
|
if 'myfoldersakstream.php': continue #'very' in url or
|
||||||
data, status = unshortenit.unshorten(url)
|
else:
|
||||||
logger.info("Data - Status zcrypt vcrypt.net: [%s] [%s] " %(data, status))
|
from lib import unshortenit
|
||||||
|
data, status = unshortenit.unshorten(url)
|
||||||
|
logger.info("Data - Status zcrypt vcrypt.net: [%s] [%s] " %(data, status))
|
||||||
elif 'linkup' in url or 'bit.ly' in url:
|
elif 'linkup' in url or 'bit.ly' in url:
|
||||||
idata = httptools.downloadpage(url).data
|
if '/olink/' in url: continue
|
||||||
data = scrapertoolsV2.find_single_match(idata, "<iframe[^<>]*src=\\'([^'>]*)\\'[^<>]*>")
|
else:
|
||||||
#fix by greko inizio
|
idata = httptools.downloadpage(url).data
|
||||||
|
data = scrapertoolsV2.find_single_match(idata, "<iframe[^<>]*src=\\'([^'>]*)\\'[^<>]*>")
|
||||||
|
#fix by greko inizio
|
||||||
if not data:
|
if not data:
|
||||||
data = scrapertoolsV2.find_single_match(idata, 'action="(?:[^/]+.*?/[^/]+/([a-zA-Z0-9_]+))">')
|
data = scrapertoolsV2.find_single_match(idata, 'action="(?:[^/]+.*?/[^/]+/([a-zA-Z0-9_]+))">')
|
||||||
from lib import unshortenit
|
from lib import unshortenit
|
||||||
|
|||||||
Reference in New Issue
Block a user