summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/FreakhareComFolder.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter/FreakhareComFolder.py')
-rw-r--r--module/plugins/crypter/FreakhareComFolder.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/module/plugins/crypter/FreakhareComFolder.py b/module/plugins/crypter/FreakhareComFolder.py
index c5df7ff17..ddc05199b 100644
--- a/module/plugins/crypter/FreakhareComFolder.py
+++ b/module/plugins/crypter/FreakhareComFolder.py
@@ -21,9 +21,11 @@ from module.plugins.internal.SimpleCrypter import SimpleCrypter
class FreakhareComFolder(SimpleCrypter):
__name__ = "FreakhareComFolder"
+ __version__ = "0.01"
__type__ = "crypter"
+
__pattern__ = r'http://(?:www\.)?freakshare\.com/folder/.+'
- __version__ = "0.01"
+
__description__ = """Freakhare.com folder decrypter plugin"""
__author_name__ = "stickell"
__author_mail__ = "l.stickell@yahoo.it"
@@ -32,6 +34,7 @@ class FreakhareComFolder(SimpleCrypter):
TITLE_PATTERN = r'Folder:</b> (?P<title>.+)'
PAGES_PATTERN = r'Pages: +(?P<pages>\d+)'
+
def loadPage(self, page_n):
if not hasattr(self, 'f_id') and not hasattr(self, 'f_md5'):
m = re.search(r'http://freakshare.com/\?x=folder&f_id=(\d+)&f_md5=(\w+)', self.html)