# -*- coding: utf-8 -*- from module.plugins.internal.Crypter import Crypter import re class PastedCo(Crypter): __name__ = "PastedCo" __type__ = "crypter" __version__ = "0.05" __status__ = "testing" __pattern__ = r'http://pasted\.co/\w+' __config__ = [("activated", "bool", "Activated", True)] __description__ = """Pasted.co decrypter plugin""" __license__ = "GPLv3" __authors__ = [("Frederik Möllers", "fred-public@posteo.de")] NAME_PATTERN = r'
'
    FS_URL_SUFFIX = ''
    def decrypt(self, pyfile):
        package = pyfile.package()
        pack_name = package.name
        pack_folder = package.folder
        html = self.load(pyfile.url, decode = True).splitlines()
        fs_url = None
        FS_URL_RE = re.compile('%s/fullscreen\.php\?hash=[0-9a-f]*' % pyfile.url)
        for line in html:
            match = FS_URL_RE.search(line)
            if match:
                fs_url = match.group()
                break
        if not fs_url:
            raise Exception("Could not find pasted.co fullscreen URL!")
        urls = self.load(fs_url, decode = True)
        urls = urls[urls.find(PastedCo.FS_URL_PREFIX) + len(PastedCo.FS_URL_PREFIX):]
        urls = urls[:urls.find(PastedCo.FS_URL_SUFFIX)].splitlines()
        self.packages.append((pack_name, urls, pack_folder))