diff options
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/hooks/BypassCaptcha.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/module/plugins/hooks/BypassCaptcha.py b/module/plugins/hooks/BypassCaptcha.py index 892c5cca6..c68f8a66b 100644 --- a/module/plugins/hooks/BypassCaptcha.py +++ b/module/plugins/hooks/BypassCaptcha.py @@ -46,13 +46,13 @@ class BypassCaptchaException(Exception): class BypassCaptcha(Addon): __name__ = "BypassCaptcha" - __version__ = "0.01" + __version__ = "0.02" __description__ = """send captchas to bypasscaptcha.com""" __config__ = [("activated", "bool", "Activated", True), ("key", "str", "Key", ""), - ("force", "bool", "Force CT even if client is connected", False), - __author_name__ = ("RaNaN") - __author_mail__ = ("RaNaN@pyload.org") + ("force", "bool", "Force CT even if client is connected", False),] + __author_name__ = ("Godofdream") + __author_mail__ = ("soilfcition@gmail.com") SUBMIT_URL = "http://bypasscaptcha.com/upload.php" RESPOND_URL = "http://bypasscaptcha.com/check_value.php" @@ -164,4 +164,4 @@ class BypassCaptcha(Addon): return task.data["ticket"] = ticket - task.setResult(result)
\ No newline at end of file + task.setResult(result) |