diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2016-06-25 11:59:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-25 11:59:36 +0200 |
commit | fef049ba286f308fdca6ee361a0e067986b95ac8 (patch) | |
tree | fd5605907976ed1dcff91cf048d8a0b8eb1808d9 | |
parent | Merge pull request #2522 from OzzieIsaacs/patch-1 (diff) | |
parent | Crypter Filecrypt.cc captcha protected links working again (diff) | |
download | pyload-fef049ba286f308fdca6ee361a0e067986b95ac8.tar.xz |
Merge pull request #2523 from OzzieIsaacs/patch-2
Crypter Filecrypt.cc captcha protected links working again
-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)'" |