diff options
author | OzzieIsaacs <OzzieIsaacs@users.noreply.github.com> | 2016-06-25 11:51:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-25 11:51:36 +0200 |
commit | 4f4705215db3eb11e8191281601825d6bd315900 (patch) | |
tree | c257e4adb72fe6a87e6b281ecbca3f1e3f288f65 /module | |
parent | [RelinkUs] fix #2513 (diff) | |
download | pyload-4f4705215db3eb11e8191281601825d6bd315900.tar.xz |
Crypter Filecrypt.cc captcha protected links working again
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/crypter/FilecryptCc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/crypter/FilecryptCc.py b/module/plugins/crypter/FilecryptCc.py index 3c57e5dfc..bd4a9ddc2 100644 --- a/module/plugins/crypter/FilecryptCc.py +++ b/module/plugins/crypter/FilecryptCc.py @@ -36,7 +36,7 @@ class FilecryptCc(Crypter): DLC_LINK_PATTERN = r'onclick="DownloadDLC\(\'(.+)\'\);">' WEBLINK_PATTERN = r"openLink.?'([\w\-]*)'," - CAPTCHA_PATTERN = r'class="safety">Security prompt<' + CAPTCHA_PATTERN = r'<h2>Security prompt</h2>' INTERNAL_CAPTCHA_PATTERN = r'<img id="nc" src="(.+?)"' CIRCLE_CAPTCHA_PATTERN = r'<input type="image" src="(.+?)"' KEY_CAPTCHA_PATTERN = r"<script language=JavaScript src='(http://backs\.keycaptcha\.com/swfs/cap\.js)'" |