From f98a9eea978ccf56d41f4ce355f2b514fc9e4af1 Mon Sep 17 00:00:00 2001 From: spoob Date: Thu, 3 Dec 2009 23:33:46 +0100 Subject: Convert read_url_list to new Plugin --- module/plugins/RSDF.py | 40 ++++++++++++++++++---------------------- 1 file changed, 18 insertions(+), 22 deletions(-) (limited to 'module/plugins/RSDF.py') diff --git a/module/plugins/RSDF.py b/module/plugins/RSDF.py index 50fca9b1f..5ce8fd716 100644 --- a/module/plugins/RSDF.py +++ b/module/plugins/RSDF.py @@ -13,7 +13,7 @@ class RSDF(Plugin): props = {} props['name'] = "RSDF" props['type'] = "container" - props['pattern'] = r".*\.rsdf" + props['pattern'] = r"(?!http://).*\.rsdf" props['version'] = "0.2" props['description'] = """RSDF Container Decode Plugin""" props['author_name'] = ("RaNaN", "spoob") @@ -29,31 +29,27 @@ class RSDF(Plugin): return True def proceed(self, url, location): - try: - from Crypto.Cipher import AES + from Crypto.Cipher import AES - infile = url.replace("\n", "") - Key = binascii.unhexlify('8C35192D964DC3182C6F84F3252239EB4A320D2500000000') + infile = url.replace("\n", "") + Key = binascii.unhexlify('8C35192D964DC3182C6F84F3252239EB4A320D2500000000') - IV = binascii.unhexlify('FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF') - IV_Cipher = AES.new(Key, AES.MODE_ECB) - IV = IV_Cipher.encrypt(IV) + 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) + obj = AES.new(Key, AES.MODE_CFB, IV) - rsdf = open(infile, 'r') + rsdf = open(infile, 'r') - data = rsdf.read() - data = binascii.unhexlify(''.join(data.split())) - data = data.splitlines() + data = rsdf.read() + data = binascii.unhexlify(''.join(data.split())) + data = data.splitlines() - for link in data: - link = base64.b64decode(link) - link = obj.decrypt(link) - decryptedUrl = link.replace('CCF: ', '') - self.links.append(decryptedUrl) + for link in data: + link = base64.b64decode(link) + link = obj.decrypt(link) + decryptedUrl = link.replace('CCF: ', '') + self.links.append(decryptedUrl) - rsdf.close() - - except: - print "Kein Crypto installiert, RSDF Plugin kann nicht genutzt werden" + rsdf.close() -- cgit v1.2.3 From ed14601a9a83439ce096441ad7ca7a8c4d9b13f8 Mon Sep 17 00:00:00 2001 From: spoob Date: Sat, 19 Dec 2009 20:50:26 +0100 Subject: Fixed file_exists function for local files --- module/plugins/RSDF.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'module/plugins/RSDF.py') diff --git a/module/plugins/RSDF.py b/module/plugins/RSDF.py index 5ce8fd716..0b6a63722 100644 --- a/module/plugins/RSDF.py +++ b/module/plugins/RSDF.py @@ -23,11 +23,6 @@ class RSDF(Plugin): self.multi_dl = True self.links = [] - def file_exists(self): - """ returns True or False - """ - return True - def proceed(self, url, location): from Crypto.Cipher import AES -- cgit v1.2.3 From 8e87787753b2e049917a5491727d285b1c5a7095 Mon Sep 17 00:00:00 2001 From: mkaay Date: Sun, 27 Dec 2009 00:20:21 +0100 Subject: closes #13 --- module/plugins/RSDF.py | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 module/plugins/RSDF.py (limited to 'module/plugins/RSDF.py') diff --git a/module/plugins/RSDF.py b/module/plugins/RSDF.py deleted file mode 100644 index 0b6a63722..000000000 --- a/module/plugins/RSDF.py +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -import base64 -import binascii - -from module.Plugin import Plugin - -class RSDF(Plugin): - - def __init__(self, parent): - Plugin.__init__(self, parent) - props = {} - props['name'] = "RSDF" - props['type'] = "container" - props['pattern'] = r"(?!http://).*\.rsdf" - props['version'] = "0.2" - props['description'] = """RSDF Container Decode Plugin""" - props['author_name'] = ("RaNaN", "spoob") - props['author_mail'] = ("RaNaN@pyload.org", "spoob@pyload.org") - self.props = props - self.parent = parent - self.multi_dl = True - self.links = [] - - def proceed(self, url, location): - from Crypto.Cipher import AES - - infile = 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() - data = binascii.unhexlify(''.join(data.split())) - data = data.splitlines() - - for link in data: - link = base64.b64decode(link) - link = obj.decrypt(link) - decryptedUrl = link.replace('CCF: ', '') - self.links.append(decryptedUrl) - - rsdf.close() -- cgit v1.2.3