summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar EnricoTabernagel <Enrico.tabernagel@freenet.de> 2016-06-25 17:39:04 +0200
committerGravatar GitHub <noreply@github.com> 2016-06-25 17:39:04 +0200
commit0fbe69544fb53ea6e7a00c73e17a5e5e7c3b2ae6 (patch)
tree1b172fc124f6357957418e1ad3ae5a0a8eda659f
parentVersion up (diff)
downloadpyload-0fbe69544fb53ea6e7a00c73e17a5e5e7c3b2ae6.tar.xz
Bugfixe Securia.com
-rw-r--r--module/plugins/crypter/SexuriaCom.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/module/plugins/crypter/SexuriaCom.py b/module/plugins/crypter/SexuriaCom.py
index edeecf80b..1ee8bfe71 100644
--- a/module/plugins/crypter/SexuriaCom.py
+++ b/module/plugins/crypter/SexuriaCom.py
@@ -8,7 +8,7 @@ from module.plugins.internal.Crypter import Crypter
class SexuriaCom(Crypter):
__name__ = "SexuriaCom"
__type__ = "crypter"
- __version__ = "0.13"
+ __version__ = "0.14"
__status__ = "testing"
__pattern__ = r'http://(?:www\.)?sexuria\.com/(v1/)?(Pornos_Kostenlos_.+?_(\d+)\.html|dl_links_\d+_\d+\.html|id=\d+\&part=\d+\&link=\d+)'
@@ -21,13 +21,13 @@ class SexuriaCom(Crypter):
__authors__ = [("NETHead", "NETHead.AT.gmx.DOT.net")]
#: Constants
- PATTERN_SUPPORTED_MAIN = r'http://(www\.)?sexuria\.com/(v1/)?Pornos_Kostenlos_.+?_(\d+)\.html'
- PATTERN_SUPPORTED_CRYPT = r'http://(www\.)?sexuria\.com/(v1/)?dl_links_\d+_(?P<ID>\d+)\.html'
+ PATTERN_SUPPORTED_CRYPT = r'http://(www\.)?sexuria\.com/(v1/)?Pornos_Kostenlos_.+?_(\d+)\.html'
+ PATTERN_SUPPORTED_MAIN = r'http://(www\.)?sexuria\.com/(v1/)?dl_links_\d+_(?P<ID>\d+)\.html'
PATTERN_SUPPORTED_REDIRECT = r'http://(www\.)?sexuria\.com/out\.php\?id=(?P<ID>\d+)\&part=\d+\&link=\d+'
PATTERN_TITLE = r'<title> - (?P<TITLE>.*) Sexuria - Kostenlose Pornos - Rapidshare XXX Porn</title>'
PATTERN_PASSWORD = r'<strong>Passwort: </strong></div></td>.*?bgcolor="#EFEFEF">(?P<PWD>.*?)</td>'
PATTERN_DL_LINK_PAGE = r'"(dl_links_\d+_\d+\.html)"'
- PATTERN_REDIRECT_LINKS = r'value="(http://sexuria\.com/out\.php\?id=\d+\&part=\d+\&link=\d+)" readonly'
+ PATTERN_REDIRECT_LINKS = r'disabled\'" href="(.*)" id'
LIST_PWDIGNORE = ["Kein Passwort", "-"]
def decrypt(self, pyfile):
@@ -92,7 +92,7 @@ class SexuriaCom(Crypter):
else:
for link in links:
link = link.replace("http://sexuria.com/", "http://www.sexuria.com/")
- finallink = self.load(link, just_header=True)['location']
+ finallink = self.load(link, just_header=True)['url']
if not finallink or ("sexuria.com/" in finallink):
self.log_error(_("Broken for link: %s") % link)
else: