# -*- coding: utf-8 -*- import pycurl from module.network.HTTPRequest import BadHeader from module.network.RequestFactory import getRequest as get_request from module.plugins.internal.Addon import Addon, threaded class BypassCaptchaException(Exception): def __init__(self, err): self.err = err def get_code(self): return self.err def __str__(self): return "" % self.err def __repr__(self): return "" % self.err class BypassCaptcha(Addon): __name__ = "BypassCaptcha" __type__ = "hook" __version__ = "0.09" __status__ = "testing" __config__ = [("activated" , "bool" , "Activated" , False), ("passkey" , "password", "Access key" , "" ), ("check_client", "bool" , "Don't use if client is connected", True )] __description__ = """Send captchas to BypassCaptcha.com""" __license__ = "GPLv3" __authors__ = [("RaNaN" , "RaNaN@pyload.org" ), ("Godofdream", "soilfcition@gmail.com"), ("zoidberg" , "zoidberg@mujmail.cz" )] PYLOAD_KEY = "4f771155b640970d5607f919a615bdefc67e7d32" SUBMIT_URL = "http://bypasscaptcha.com/upload.php" RESPOND_URL = "http://bypasscaptcha.com/check_value.php" GETCREDITS_URL = "http://bypasscaptcha.com/ex_left.php" def get_credits(self): res = self.load(self.GETCREDITS_URL, post={'key': self.get_config('passkey')}) data = dict(x.split(' ', 1) for x in res.splitlines()) return int(data['Left']) def submit(self, captcha, captchaType="file", match=None): req = get_request() #: Raise timeout threshold req.c.setopt(pycurl.LOW_SPEED_TIME, 80) try: res = self.load(self.SUBMIT_URL, post={'vendor_key': self.PYLOAD_KEY, 'key': self.get_config('passkey'), 'gen_task_id': "1", 'file': (pycurl.FORM_FILE, captcha)}, req=req) finally: req.close() data = dict(x.split(' ', 1) for x in res.splitlines()) if not data or "Value" not in data: raise BypassCaptchaException(res) result = data['Value'] ticket = data['TaskId'] self.log_debug("Result %s : %s" % (ticket, result)) return ticket, result def respond(self, ticket, success): try: res = self.load(self.RESPOND_URL, post={'task_id': ticket, 'key': self.get_config('passkey'), 'cv': 1 if success else 0}) except BadHeader, e: self.log_error(_("Could not send response"), e) def captcha_task(self, task): if "service" in task.data: return False if not task.isTextual(): return False if not self.get_config('passkey'): return False if self.pyload.isClientConnected() and self.get_config('check_client'): return False if self.get_credits() > 0: task.handler.append(self) task.data['service'] = self.classname task.setWaiting(100) self._process_captcha(task) else: self.log_info(_("Your account has not enough credits")) def captcha_correct(self, task): if task.data['service'] is self.classname and "ticket" in task.data: self.respond(task.data['ticket'], True) def captcha_invalid(self, task): if task.data['service'] is self.classname and "ticket" in task.data: self.respond(task.data['ticket'], False) @threaded def _process_captcha(self, task): c = task.captchaFile try: ticket, result = self.submit(c) except BypassCaptchaException, e: task.error = e.get_code() return task.data['ticket'] = ticket task.setResult(result)