summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/RelinkUs.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter/RelinkUs.py')
-rw-r--r--module/plugins/crypter/RelinkUs.py78
1 files changed, 39 insertions, 39 deletions
diff --git a/module/plugins/crypter/RelinkUs.py b/module/plugins/crypter/RelinkUs.py
index 8f29a9158..104968e06 100644
--- a/module/plugins/crypter/RelinkUs.py
+++ b/module/plugins/crypter/RelinkUs.py
@@ -1,12 +1,13 @@
# -*- coding: utf-8 -*-
-from Crypto.Cipher import AES
-from module.plugins.Crypter import Crypter
import base64
import binascii
import re
import os
+from Crypto.Cipher import AES
+from module.plugins.Crypter import Crypter
+
class RelinkUs(Crypter):
__name__ = "RelinkUs"
@@ -27,45 +28,44 @@ class RelinkUs(Crypter):
CAPTCHA_TOKEN = "container_captcha.php"
CAPTCHA_ERROR_ROKEN = "You have solved the captcha wrong"
CAPTCHA_IMG_URL = "http://www.relink.us/core/captcha/circlecaptcha.php"
- CAPTCHA_SUBMIT_URL = "http://www.relink.us/container_captcha.php"
+ CAPTCHA_SUBMIT_URL = "http://www.relink.us/container_captcha.php"
FILE_TITLE_REGEX = r"<th>Title</th><td><i>(.*)</i></td></tr>"
FILE_NOTITLE = 'No title'
-
+
CNL2_FORM_REGEX = r'<form id="cnl_form-(.*?)</form>'
CNL2_FORMINPUT_REGEX = r'<input.*?name="%s".*?value="(.*?)"'
CNL2_JK_KEY = "jk"
CNL2_CRYPTED_KEY = "crypted"
DLC_LINK_REGEX = r'<a href=".*?" class="dlc_button" target="_blank">'
- DLC_DOWNLOAD_URL = "http://www.relink.us/download.php"
- WEB_FORWARD_REGEX = r"getFile\('(?P<link>.+)'\)";
- WEB_FORWARD_URL = "http://www.relink.us/frame.php"
+ DLC_DOWNLOAD_URL = "http://www.relink.us/download.php"
+ WEB_FORWARD_REGEX = r"getFile\('(?P<link>.+)'\)"
+ WEB_FORWARD_URL = "http://www.relink.us/frame.php"
WEB_LINK_REGEX = r'<iframe name="Container" height="100%" frameborder="no" width="100%" src="(?P<link>.+)"></iframe>'
-
-
+
def setup(self):
self.fileid = None
self.package = None
self.password = None
self.html = None
self.captcha = False
-
+
def decrypt(self, pyfile):
# Init
self.initPackage(pyfile)
-
+
# Request package
self.requestPackage()
-
+
# Check for online
if not self.isOnline():
self.offline()
-
+
# Check for protection
if self.isPasswordProtected():
self.unlockPasswordProtection()
self.handleErrors()
-
+
if self.isCaptchaProtected():
self.captcha = True
self.unlockCaptchaProtection()
@@ -95,38 +95,38 @@ class RelinkUs(Crypter):
self.url = pyfile.url
def requestPackage(self):
- self.html = self.load(self.url, decode = True)
+ self.html = self.load(self.url, decode=True)
def isOnline(self):
if self.OFFLINE_TOKEN in self.html:
self.logDebug("File not found")
return False
return True
-
+
def isPasswordProtected(self):
if self.PASSWORD_TOKEN in self.html:
self.logDebug("Links are password protected")
return True
-
+
def isCaptchaProtected(self):
if self.CAPTCHA_TOKEN in self.html:
self.logDebug("Links are captcha protected")
return True
return False
-
+
def unlockPasswordProtection(self):
self.logDebug("Submitting password [%s] for protected links" % self.password)
passwd_url = self.PASSWORD_SUBMIT_URL + "?id=%s" % self.fileid
- passwd_data = { 'id': self.fileid, 'password': self.password, 'pw': 'submit' }
+ passwd_data = {'id': self.fileid, 'password': self.password, 'pw': 'submit'}
self.html = self.load(passwd_url, post=passwd_data, decode=True)
-
+
def unlockCaptchaProtection(self):
self.logDebug("Request user positional captcha resolving")
captcha_img_url = self.CAPTCHA_IMG_URL + "?id=%s" % self.fileid
coords = self.decryptCaptcha(captcha_img_url, forceUser=True, imgtype="png", result_type='positional')
self.logDebug("Captcha resolved, coords [%s]" % str(coords))
captcha_post_url = self.CAPTCHA_SUBMIT_URL + "?id=%s" % self.fileid
- captcha_post_data = { 'button.x': coords[0], 'button.y': coords[1], 'captcha': 'submit' }
+ captcha_post_data = {'button.x': coords[0], 'button.y': coords[1], 'captcha': 'submit'}
self.html = self.load(captcha_post_url, post=captcha_post_data, decode=True)
def getPackageInfo(self):
@@ -139,30 +139,30 @@ class RelinkUs(Crypter):
if not self.FILE_NOTITLE in title:
name = folder = title
self.logDebug("Found name [%s] and folder [%s] in package info" % (name, folder))
-
+
# Fallback to defaults
if not name or not folder:
name = self.package.name
folder = self.package.folder
self.logDebug("Package info not found, defaulting to pyfile name [%s] and folder [%s]" % (name, folder))
-
+
# Return package info
- return name, folder
-
- def handleErrors(self):
+ return name, folder
+
+ def handleErrors(self):
if self.PASSWORD_ERROR_ROKEN in self.html:
msg = "Incorrect password, please set right password on 'Edit package' form and retry"
self.logDebug(msg)
- self.fail(msg)
+ self.fail(msg)
- if self.captcha:
+ if self.captcha:
if self.CAPTCHA_ERROR_ROKEN in self.html:
self.logDebug("Invalid captcha, retrying")
self.invalidCaptcha()
self.retry()
else:
self.correctCaptcha()
-
+
def handleLinkSource(self, source):
if source == 'cnl2':
return self.handleCNL2Links()
@@ -172,7 +172,7 @@ class RelinkUs(Crypter):
return self.handleWEBLinks()
else:
self.fail('Unknown source [%s] (this is probably a bug)' % source)
-
+
def handleCNL2Links(self):
self.logDebug("Search for CNL2 links")
package_links = []
@@ -186,13 +186,13 @@ class RelinkUs(Crypter):
except:
self.logDebug("Unable to decrypt CNL2 links")
return package_links
-
+
def handleDLCLinks(self):
self.logDebug('Search for DLC links')
package_links = []
m = re.search(self.DLC_LINK_REGEX, self.html)
if m is not None:
- container_url = self.DLC_DOWNLOAD_URL + "?id=%s&dlc=1" % self.fileid
+ container_url = self.DLC_DOWNLOAD_URL + "?id=%s&dlc=1" % self.fileid
self.logDebug("Downloading DLC container link [%s]" % container_url)
try:
dlc = self.load(container_url)
@@ -203,7 +203,7 @@ class RelinkUs(Crypter):
f.close()
package_links.append(dlc_filepath)
except:
- self.logDebug("Unable to download DLC container")
+ self.logDebug("Unable to download DLC container")
return package_links
def handleWEBLinks(self):
@@ -214,7 +214,7 @@ class RelinkUs(Crypter):
for index, fw_param in enumerate(fw_params):
try:
fw_url = self.WEB_FORWARD_URL + "?%s" % fw_param
- self.logDebug("Decrypting Web link %d, %s" % (index+1, fw_url))
+ self.logDebug("Decrypting Web link %d, %s" % (index + 1, fw_url))
fw_response = self.load(fw_url, decode=True)
dl_link = re.search(self.WEB_LINK_REGEX, fw_response).group('link')
package_links.append(dl_link)
@@ -223,15 +223,15 @@ class RelinkUs(Crypter):
self.setWait(4)
self.wait()
return package_links
-
+
def _getCipherParams(self, cnl2_form):
-
+
# Get jk
- jk_re = self.CNL2_FORMINPUT_REGEX % self.CNL2_JK_KEY
+ jk_re = self.CNL2_FORMINPUT_REGEX % self.CNL2_JK_KEY
vjk = re.findall(jk_re, cnl2_form, re.IGNORECASE)
-
+
# Get crypted
- crypted_re = self.CNL2_FORMINPUT_REGEX % RelinkUs.CNL2_CRYPTED_KEY
+ crypted_re = self.CNL2_FORMINPUT_REGEX % RelinkUs.CNL2_CRYPTED_KEY
vcrypted = re.findall(crypted_re, cnl2_form, re.IGNORECASE)
# Log and return