forked from HowDoesExcelWork/RocketMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaptcha.py
325 lines (278 loc) · 12.3 KB
/
captcha.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
- Captcha Overseer:
- Tracks incoming new captcha tokens
- Monitors the captcha'd accounts queue
- Launches captcha_solver threads
- Captcha Solver Threads each:
- Have a unique captcha token
- Attempts to verifyChallenge
- Puts account back in active queue
- Pushes webhook messages with captcha status
'''
import logging
import time
import requests
from datetime import datetime
from threading import Thread
from pgoapi import PGoApi
from .fakePogoApi import FakePogoApi
from .models import Token
from .transform import jitter_location
from .account import check_login
from .proxy import get_new_proxy
from .utils import now
log = logging.getLogger(__name__)
def captcha_overseer_thread(args, account_queue, account_captchas,
key_scheduler, wh_queue):
solverId = 0
while True:
# Run once every 15 seconds.
sleep_timer = 15
tokens_needed = len(account_captchas)
if tokens_needed > 0:
tokens = Token.get_valid(tokens_needed)
tokens_available = len(tokens)
solvers = min(tokens_needed, tokens_available)
log.debug('Captcha overseer running. Captchas: %d - Tokens: %d',
tokens_needed, tokens_available)
for i in range(0, solvers):
hash_key = None
if args.hash_key:
hash_key = key_scheduler.next()
t = Thread(target=captcha_solver_thread,
name='captcha-solver-{}'.format(solverId),
args=(args, account_queue, account_captchas,
hash_key, wh_queue, tokens[i]))
t.daemon = True
t.start()
solverId += 1
if solverId > 999:
solverId = 0
# Wait a bit before launching next thread
time.sleep(1)
# Adjust captcha-overseer sleep timer
sleep_timer -= 1 * solvers
# Hybrid mode
if args.captcha_key and args.manual_captcha_timeout > 0:
tokens_remaining = tokens_needed - tokens_available
# Safety guard
tokens_remaining = min(tokens_remaining, 5)
for i in range(0, tokens_remaining):
account = account_captchas[0][1]
last_active = account['last_active']
hold_time = (datetime.utcnow() -
last_active).total_seconds()
if hold_time > args.manual_captcha_timeout:
log.debug('Account %s waited %ds for captcha token ' +
'and reached the %ds timeout.',
account['username'], hold_time,
args.manual_captcha_timeout)
if args.hash_key:
hash_key = key_scheduler.next()
t = Thread(target=captcha_solver_thread,
name='captcha-solver-{}'.format(solverId),
args=(args, account_queue, account_captchas,
hash_key, wh_queue))
t.daemon = True
t.start()
solverId += 1
if solverId > 999:
solverId = 0
# Wait a bit before launching next thread
time.sleep(1)
else:
break
time.sleep(sleep_timer)
def captcha_solver_thread(args, account_queue, account_captchas, hash_key,
wh_queue, token=None):
status, account, captcha_url = account_captchas.popleft()
status['message'] = 'Waking up account {} to verify captcha token.'.format(
account['username'])
log.info(status['message'])
if args.mock != '':
api = FakePogoApi(args.mock)
else:
api = PGoApi()
if hash_key:
log.debug('Using key {} for solving this captcha.'.format(hash_key))
api.activate_hash_server(hash_key)
proxy_url = False
if args.proxy:
# Try to fetch a new proxy
proxy_num, proxy_url = get_new_proxy(args)
if proxy_url:
log.debug('Using proxy %s', proxy_url)
api.set_proxy({'http': proxy_url, 'https': proxy_url})
location = account['last_location']
if not args.no_jitter:
# Jitter location before uncaptcha attempt
location = jitter_location(location)
api.set_position(*location)
check_login(args, account, api, location, proxy_url)
wh_message = {'status_name': args.status_name,
'status': 'error',
'mode': 'manual',
'account': account['username'],
'captcha': status['captcha'],
'time': 0}
if not token:
token = token_request(args, status, captcha_url)
wh_message['mode'] = '2captcha'
response = api.verify_challenge(token=token)
last_active = account['last_active']
hold_time = (datetime.utcnow() - last_active).total_seconds()
wh_message['time'] = int(hold_time)
if 'success' in response['responses']['VERIFY_CHALLENGE']:
status['message'] = (
"Account {} successfully uncaptcha'd, returning to " +
'active duty.').format(account['username'])
log.info(status['message'])
account_queue.put(account)
wh_message['status'] = 'success'
else:
status['message'] = (
'Account {} failed verifyChallenge, putting back ' +
'in captcha queue.').format(account['username'])
log.warning(status['message'])
account_captchas.append((status, account, captcha_url))
wh_message['status'] = 'failure'
if args.webhooks:
wh_queue.put(('captcha', wh_message))
# Make sure status is updated
time.sleep(1)
def handle_captcha(args, status, api, account, account_failures,
account_captchas, whq, response_dict, step_location):
try:
captcha_url = response_dict['responses'][
'CHECK_CHALLENGE']['challenge_url']
if len(captcha_url) > 1:
status['captcha'] += 1
if not args.captcha_solving:
status['message'] = ('Account {} has encountered a captcha. ' +
'Putting account away.').format(
account['username'])
log.warning(status['message'])
account_failures.append({
'account': account,
'last_fail_time': now(),
'reason': 'captcha found'})
if args.webhooks:
wh_message = {'status_name': args.status_name,
'status': 'encounter',
'mode': 'disabled',
'account': account['username'],
'captcha': status['captcha'],
'time': 0}
whq.put(('captcha', wh_message))
return False
if args.captcha_key and args.manual_captcha_timeout == 0:
if automatic_captcha_solve(args, status, api, captcha_url,
account, whq):
return True
else:
account_failures.append({
'account': account,
'last_fail_time': now(),
'reason': 'captcha failed to verify'})
return False
else:
status['message'] = ('Account {} has encountered a captcha. ' +
'Waiting for token.').format(
account['username'])
log.warning(status['message'])
account['last_active'] = datetime.utcnow()
account['last_location'] = step_location
account_captchas.append((status, account, captcha_url))
if args.webhooks:
wh_message = {'status_name': args.status_name,
'status': 'encounter',
'mode': 'manual',
'account': account['username'],
'captcha': status['captcha'],
'time': args.manual_captcha_timeout}
whq.put(('captcha', wh_message))
return False
except KeyError, e:
log.error('Unable to check captcha: {}'.format(e))
return None
# Return True if captcha was succesfully solved
def automatic_captcha_solve(args, status, api, captcha_url, account, wh_queue):
status['message'] = (
'Account {} is encountering a captcha, starting 2captcha ' +
'sequence.').format(account['username'])
log.warning(status['message'])
if args.webhooks:
wh_message = {'status_name': args.status_name,
'status': 'encounter',
'mode': '2captcha',
'account': account['username'],
'captcha': status['captcha'],
'time': 0}
wh_queue.put(('captcha', wh_message))
time_start = now()
captcha_token = token_request(args, status, captcha_url)
time_elapsed = now() - time_start
if 'ERROR' in captcha_token:
log.warning('Unable to resolve captcha, please check your ' +
'2captcha API key and/or wallet balance.')
if args.webhooks:
wh_message['status'] = 'error'
wh_message['time'] = time_elapsed
wh_queue.put(('captcha', wh_message))
return False
else:
status['message'] = (
'Retrieved captcha token, attempting to verify challenge ' +
'for {}.').format(account['username'])
log.info(status['message'])
response = api.verify_challenge(token=captcha_token)
time_elapsed = now() - time_start
if 'success' in response['responses']['VERIFY_CHALLENGE']:
status['message'] = "Account {} successfully uncaptcha'd.".format(
account['username'])
log.info(status['message'])
if args.webhooks:
wh_message['status'] = 'success'
wh_message['time'] = time_elapsed
wh_queue.put(('captcha', wh_message))
return True
else:
status['message'] = (
'Account {} failed verifyChallenge, putting away ' +
'account for now.').format(account['username'])
log.info(status['message'])
if args.webhooks:
wh_message['status'] = 'failure'
wh_message['time'] = time_elapsed
wh_queue.put(('captcha', wh_message))
return False
def token_request(args, status, url):
s = requests.Session()
# Fetch the CAPTCHA_ID from 2captcha.
try:
request_url = (
'http://2captcha.com/in.php?key={}&method=userrecaptcha' +
'&googlekey={}&pageurl={}').format(args.captcha_key,
args.captcha_dsk, url)
captcha_id = s.post(request_url).text.split('|')[1]
captcha_id = str(captcha_id)
# IndexError implies that the retuned response was a 2captcha error.
except IndexError:
return 'ERROR'
status['message'] = (
'Retrieved captcha ID: {}; now retrieving token.').format(captcha_id)
log.info(status['message'])
# Get the response, retry every 5 seconds if it's not ready.
recaptcha_response = s.get(
'http://2captcha.com/res.php?key={}&action=get&id={}'.format(
args.captcha_key, captcha_id)).text
while 'CAPCHA_NOT_READY' in recaptcha_response:
log.info('Captcha token is not ready, retrying in 5 seconds...')
time.sleep(5)
recaptcha_response = s.get(
'http://2captcha.com/res.php?key={}&action=get&id={}'.format(
args.captcha_key, captcha_id)).text
token = str(recaptcha_response.split('|')[1])
return token