diff options
Diffstat (limited to 'module/plugins/container')
| -rw-r--r-- | module/plugins/container/CCF.py | 42 | ||||
| -rw-r--r-- | module/plugins/container/RSDF.py | 49 | ||||
| -rw-r--r-- | module/plugins/container/__init__.py | 0 | 
3 files changed, 0 insertions, 91 deletions
| diff --git a/module/plugins/container/CCF.py b/module/plugins/container/CCF.py deleted file mode 100644 index ab7ff1099..000000000 --- a/module/plugins/container/CCF.py +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -import re -from urllib2 import build_opener - -from module.plugins.Crypter import Crypter -from module.lib.MultipartPostHandler import MultipartPostHandler - -from os import makedirs -from os.path import exists, join - -class CCF(Crypter): -    __name__ = "CCF" -    __version__ = "0.2" -    __pattern__ = r"(?!http://).*\.ccf$" -    __description__ = """CCF Container Convert Plugin""" -    __author_name__ = ("Willnix") -    __author_mail__ = ("Willnix@pyload.org") - -    def decrypt(self, pyfile): -     -        infile = pyfile.url.replace("\n", "") - -        opener = build_opener(MultipartPostHandler) -        params = {"src": "ccf", -            "filename": "test.ccf", -            "upload": open(infile, "rb")} -        tempdlc_content = opener.open('http://service.jdownloader.net/dlcrypt/getDLC.php', params).read() - -        download_folder = self.config['general']['download_folder'] -        location = download_folder #join(download_folder, self.pyfile.package().folder.decode(sys.getfilesystemencoding())) -        if not exists(location):  -            makedirs(location) -             -        tempdlc_name = join(location, "tmp_%s.dlc" % pyfile.name) -        tempdlc = open(tempdlc_name, "w") -        tempdlc.write(re.search(r'<dlc>(.*)</dlc>', tempdlc_content, re.DOTALL).group(1)) -        tempdlc.close() - -        self.packages.append((tempdlc_name, [tempdlc_name], tempdlc_name)) - diff --git a/module/plugins/container/RSDF.py b/module/plugins/container/RSDF.py deleted file mode 100644 index cbc9864b1..000000000 --- a/module/plugins/container/RSDF.py +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -import base64 -import binascii -import re - -from module.plugins.Crypter import Crypter - -class RSDF(Crypter): -    __name__ = "RSDF" -    __version__ = "0.21" -    __pattern__ = r".*\.rsdf" -    __description__ = """RSDF Container Decode Plugin""" -    __author_name__ = ("RaNaN", "spoob") -    __author_mail__ = ("RaNaN@pyload.org", "spoob@pyload.org") - -     -    def decrypt(self, pyfile): -     -        from Crypto.Cipher import AES - -        infile = pyfile.url.replace("\n", "") -        Key = binascii.unhexlify('8C35192D964DC3182C6F84F3252239EB4A320D2500000000') - -        IV = binascii.unhexlify('FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF') -        IV_Cipher = AES.new(Key, AES.MODE_ECB) -        IV = IV_Cipher.encrypt(IV) - -        obj = AES.new(Key, AES.MODE_CFB, IV) - -        rsdf = open(infile, 'r') - -        data = rsdf.read() -        rsdf.close() - -        if re.search(r"<title>404 - Not Found</title>", data) is None: -            data = binascii.unhexlify(''.join(data.split())) -            data = data.splitlines() - -            links = [] -            for link in data: -                link = base64.b64decode(link) -                link = obj.decrypt(link) -                decryptedUrl = link.replace('CCF: ', '') -                links.append(decryptedUrl) - -            self.log.debug("%s: adding package %s with %d links" % (self.__name__,pyfile.package().name,len(links))) -            self.packages.append((pyfile.package().name, links))         diff --git a/module/plugins/container/__init__.py b/module/plugins/container/__init__.py deleted file mode 100644 index e69de29bb..000000000 --- a/module/plugins/container/__init__.py +++ /dev/null | 
