diff options
author | zoidberg10 <zoidberg@mujmail.cz> | 2012-11-01 21:58:49 +0100 |
---|---|---|
committer | zoidberg10 <zoidberg@mujmail.cz> | 2012-11-01 21:58:49 +0100 |
commit | 1064072f30ee3e71b6f8034f882a7123844fad2c (patch) | |
tree | 2525198424dfabec8a55b2d0604cddedacebf076 /module/plugins/crypter/LixIn.py | |
parent | update bezvadata,fastshare,dataport (diff) | |
download | pyload-1064072f30ee3e71b6f8034f882a7123844fad2c.tar.xz |
update lix.in crypter - closed #707, hotfile.com - decode, enable checksum
Diffstat (limited to 'module/plugins/crypter/LixIn.py')
-rw-r--r-- | module/plugins/crypter/LixIn.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/LixIn.py b/module/plugins/crypter/LixIn.py index 379b10764..1ed5510fd 100644 --- a/module/plugins/crypter/LixIn.py +++ b/module/plugins/crypter/LixIn.py @@ -9,12 +9,12 @@ class LixIn(Crypter): __name__ = "LixIn" __type__ = "container" __pattern__ = r"http://(www.)?lix.in/(?P<id>.*)" - __version__ = "0.21" + __version__ = "0.22" __description__ = """Lix.in Container Plugin""" __author_name__ = ("spoob") __author_mail__ = ("spoob@pyload.org") - CAPTCHA_PATTERN='<img src="(?P<image>captcha_img.php\?PHPSESSID=.*?)"' + CAPTCHA_PATTERN='<img src="(?P<image>captcha_img.php\?.*?)"' SUBMIT_PATTERN=r"value='continue.*?'" LINK_PATTERN=r'name="ifram" src="(?P<link>.*?)"' |