diff options
Diffstat (limited to 'module/plugins/crypter/ShSt.py')
-rw-r--r-- | module/plugins/crypter/ShSt.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/module/plugins/crypter/ShSt.py b/module/plugins/crypter/ShSt.py index 99c2f0db1..232729e25 100644 --- a/module/plugins/crypter/ShSt.py +++ b/module/plugins/crypter/ShSt.py @@ -1,9 +1,10 @@ # -*- coding: utf-8 -*- -from module.plugins.internal.Crypter import Crypter +import re import pycurl -import re + +from module.plugins.internal.Crypter import Crypter, create_getInfo class ShSt(Crypter): @@ -30,3 +31,6 @@ class ShSt(Crypter): header = self.load(self.pyfile.url, just_header = True, decode = False) target_url = header.get('location') self.urls.append(target_url) + + +getInfo = create_getInfo(ShSt) |