diff options
Diffstat (limited to 'pyload/plugins/crypter/DebugCrypter.py')
-rw-r--r-- | pyload/plugins/crypter/DebugCrypter.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pyload/plugins/crypter/DebugCrypter.py b/pyload/plugins/crypter/DebugCrypter.py new file mode 100644 index 000000000..a10d7c8e7 --- /dev/null +++ b/pyload/plugins/crypter/DebugCrypter.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- + +from random import randint +from time import sleep + +from pyload.plugins.Crypter import Crypter + +class DebugCrypter(Crypter): + """ Generates link used by debug hoster to test the decrypt mechanism """ + + __version__ = 0.1 + __pattern__ = r"^debug_crypter=(\d+)$" + + + def decryptURL(self, url): + + m = self.pattern.search(url) + n = int(m.group(1)) + + sleep(randint(3, n if n > 2 else 3)) + + return ["debug_hoster=%d" % i for i in range(n)] + + + + + + + |