# -*- coding: utf-8 -*- from __future__ import with_statement import base64 import binascii import re from module.plugins.Container import Container from module.utils import fs_encode class RSDF(Container): __name__ = "RSDF" __version__ = "0.25" __pattern__ = r'.+\.rsdf$' __description__ = """RSDF container decrypter plugin""" __license__ = "GPLv3" __authors__ = [("RaNaN", "RaNaN@pyload.org"), ("spoob", "spoob@pyload.org")] def decrypt(self, pyfile): from Crypto.Cipher import AES infile = fs_encode(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) try: with open(infile, 'r') as rsdf: data = rsdf.read() except IOError, e: self.fail(e) if re.search(r"