コード例 #1
0
    def getSource(self,
                  url,
                  form_data,
                  referer='',
                  xml=False,
                  mobile=False,
                  demystify=False):
        data = super(DemystifiedWebRequest,
                     self).getSource(url, form_data, referer, xml, mobile)
        if not data:
            return None

        if not demystify:
            # remove comments
            r = re.compile('<!--.*?(?!//)--!*>',
                           re.IGNORECASE + re.DOTALL + re.MULTILINE)
            m = r.findall(data)
            if m:
                for comment in m:
                    data = data.replace(comment, '')
        else:
            import decryptionUtils as crypt
            data = crypt.doDemystify(data)

        return data
コード例 #2
0
    def getSource(self,
                  url,
                  form_data,
                  referer='',
                  xml=False,
                  mobile=False,
                  demystify=False):
        data = super(DemystifiedWebRequest, self).getSource(
            url, form_data, referer, xml, mobile)
        if not data:
            return None

        if not demystify:
            # remove comments
            r = re.compile('<!--.*?(?!//)--!*>',
                           re.IGNORECASE + re.DOTALL + re.MULTILINE)
            m = r.findall(data)
            if m:
                for comment in m:
                    data = data.replace(comment, '')
        else:
            import decryptionUtils as crypt
            data = crypt.doDemystify(data)

        return data
コード例 #3
0
def manual_html_fix(url, html, headers):

    if 'livetv.sx' in url or 'shadow' in url or 'futandres' in url and 'goto/' not in url:
        import requests
        s = requests.Session()
        s.headers.update(headers)
        html = s.get(url).text
        try:
            if 'zonasports' not in url:
                html = decryptionUtils.doDemystify(html)

        except:
            pass

    return html
コード例 #4
0
def manual_html_fix(url,html, headers):
    
    
    if 'livetv.sx' in url or 'shadow' in url or 'futandres' in url and 'goto/' not in url:
        import requests
        s = requests.Session()
        s.headers.update(headers)
        html = s.get(url).text
        try:
            if 'zonasports' not in url:
                html = decryptionUtils.doDemystify(html)

        except: pass


    
    return html
コード例 #5
0
ファイル: wasteg.py プロジェクト: andromeda420/andromeda420
def compose(ref, url):
    
    common.log("waSteG: " + url + " <= " + ref)
    
    headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Safari/537.36', 
               'Referer': ref}
    
    req = urllib2.Request(url,None,headers)
    response = urllib2.urlopen(req)
    s = response.read()
    response.close()

    match = re.compile(r'(?:var\s*)?\b(\w{4}=[^;]+)').findall(s)
    for var in match:
        exec(var)    

    match = re.compile(r'sw=[\'"]{1,2}([^\'";]+)').findall(s)
    if ("+" in match[0]):
        tmp = match[0].strip('+')
        sw = eval(tmp)
    else:
        sw = match[0]

    match = re.compile(r'ch=[\'"]{1,2}([^\'";]+)').findall(s)
    if ("+" in match[0]):
        tmp = match[0].strip('+')
        ch = eval(tmp)
    else:
        ch = match[0]

    match = re.compile(r'src="([^\'";]+)').findall(s)
    tmpUrl = match[0] + sw + '/' + ch

    req = urllib2.Request(tmpUrl,None,headers)
    response = urllib2.urlopen(req)
    s = response.read()
    response.close()

    unpacked = crypt.doDemystify(s)
    match = re.compile(r'(?s)SWFObject\(\'([^\']+).*var\s*flile\s*=\s*\'(.*?)\'(?:.*?flile=flile.replace\([\'"](\w+)[\'"].*?[\'"](.*?)[\'"])?.*?tkta\s*=\s*\'(.*?)\'.*?bmakz\s*=\s*\'(.*?)\'.*?st2tas\s*=\s*\'(rtmpe?://)?(.*?)\';').findall(unpacked)
    if (match and match[0].count > 4):  
        swf = match[0][0]		
        flile = match[0][1].replace(match[0][2],match[0][3])
        tkta = match[0][4]
        bmakz = urlparse.unquote(match[0][5])
        prot = match[0][6] != "" and match[0][6] or "rtmp://"
        host = match[0][7]
        rtmp = prot + host
        uri = rtmp + '/flash playpath=' + flile + '?' + tkta + bmakz + ' swfVfy=1 swfUrl=' + swf + ' pageUrl=' + tmpUrl
        
    else:
        match = re.compile(r'(?s)SWFObject\(\'([^\']+).*?file\',unescape\(\'(.*?)\'.*?streamer\',unescape\(\'(.*?)\'').findall(unpacked)
        if (match and match[0].count > 1):
            swf = match[0][0]
            rtmp = urlparse.unquote(match[0][2])
            flile = urlparse.unquote(match[0][1])
            uri = rtmp + ' playpath=' + flile + ' swfVfy=1 swfUrl=' + swf + ' pageUrl=' + tmpUrl

        else:
            match = re.compile(r"(?s)SWFObject\('([^']+).*flile\s*=\s*'(.*?)'.*?tkta\s*=\s*'(.*?)'.*?st2tas\s*=\s*'(rtmpe?://)?(.*?)';").findall(unpacked)
            if (match and match[0].count > 3):
                swf = match[0][0]
                flile = match[0][1]
                tkta = match[0][2]
                prot = match[0][3] != "" and match[0][3] or "rtmp://"
                rtmp = prot + match[0][4]
                uri = rtmp + ' playpath=' + flile + '?' + tkta + ' swfVfy=1 swfUrl=' + swf + ' pageUrl=' + tmpUrl

            else: uri = "http://no.stream.found"
            
    return uri.replace("rtmpe","rtmp")