-
Notifications
You must be signed in to change notification settings - Fork 224
/
geetest_break.py
532 lines (444 loc) · 23.8 KB
/
geetest_break.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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
#coding:utf-8
# geetest验证码破解
# 传入gt和challenge
# 得到new_challenge和validate
# 需要 t_dict.pkl 真实路径列表 采样得到
# 会生成两张图片 bg fullbg
from __future__ import division
import re
import random
import time
from lxml import etree
import urllib,urllib2
import requests
import json
import re
import os
import cPickle
import cStringIO
import PIL.Image as image
# 获得bg和fullbg的地址
def get_bg_fullbg(gt,challenge):
url='http://api.geetest.com/get.php'
headers = {
"Accept-Language": "zh-CN,zh;q=0.8",
"Accept-Encoding": "gzip, deflate, sdch",
"Host": "api.geetest.com",
"Accept": "*/*",
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36",
"Connection": "keep-alive",
# "Cookie": "_qddaz=QD.qzoxk9.gfcxu3.j0tbuez7; GeeTestUser=3a3f47d8f6c14464d694c53957c91d32; GeeTestAjaxUser=ed48e252bed836a5dd959e55403b8208; Hm_lvt_25b04a5e7a64668b9b88e2711fb5f0c4=1492523359; Hm_lpvt_25b04a5e7a64668b9b88e2711fb5f0c4=1492523359; sensorsdata2015jssdkcross=%7B%22distinct_id%22%3A%2215b81531ab1f8-060ba3ef5-4349052c-2073600-15b81531ab232c%22%2C%22props%22%3A%7B%22%24latest_referrer%22%3A%22%22%2C%22%24latest_referrer_host%22%3A%22%22%7D%7D",
# "Referer": "http://www.gsxt.gov.cn/corp-query-search-1.html"
}
data={
'gt':gt,
'challenge':challenge,
'product':'popup',
'offline':'false',
'protocol':'',
'type':'slide',
'slide':'180.97.161.162:80/static/js/geetest.5.10.10.js',
'callback':'geetest_1493114890460'
}
res=requests.get(url,headers=headers,params=data).content
print res
website='http://static.geetest.com/'
json_data=re.findall(r'\((.*?)\)',res)[0]
json_data=json_data.replace('false','"0"').replace('true','"0"')
json_data=eval(json_data)
challenge=json_data['challenge']
bg=website+json_data['bg']
fullbg=website+json_data['fullbg']
return challenge,bg,fullbg
def get_merge_image(filename,location_list):
im=image.open(filename)
im_list_upper=[]
im_list_down=[]
for location in location_list:
if location['y']==-58:
im_list_upper.append(im.crop((
abs(location['x']),58,
abs(location['x'])+10,58+58)))
if location['y']==0:
im_list_down.append(im.crop((
abs(location['x']),0,
abs(location['x'])+10,0+58)))
# 通过小图片合成新的图片
new_im=image.new('RGB',(260,116))
# 图片左上角(0,0)
# 上部分拼接
x_offset=0
for im in im_list_upper:
new_im.paste(im,(x_offset,0)) # 将im 粘贴到new_im 位置(x_offset,0)
x_offset+=im.size[0]
# new_im.save(pic_path+os.sep+'new_%s_upper.jpg' %flag)
# 下部分拼接
x_offset=0
for im in im_list_down:
new_im.paste(im,(x_offset,58)) # 将im 粘贴到new_im 位置(x_offset,58)
x_offset+=im.size[0]
return new_im
def is_similar(image1,image2,x,y):
'''
image1 image2 只要部分缺口处RGB值相差较大
对比RGB
'''
pixel1=image1.getpixel((x,y))
pixel2=image2.getpixel((x,y))
# RGB 3个通道 只要有一个通道的值相差大于50就算是找到了缺口
for i in range(3):
if abs(pixel1[i]-pixel2[i])>=50:
return False
return True
# 计算缺口距离
def get_dist(image1,image2):
# 合并图片使用
location_list=cPickle.load(open('location_list.pkl'))
jpgfile1=cStringIO.StringIO(urllib2.urlopen(image1).read())
new_image1=get_merge_image(jpgfile1,location_list)
new_image1.save('image1.jpg')
jpgfile2=cStringIO.StringIO(urllib2.urlopen(image2).read())
new_image2=get_merge_image(jpgfile2,location_list)
new_image2.save('image2.jpg')
i=0
for i in range(260):
for j in range(116):
if is_similar(new_image1,new_image2,i,j)==False:
# 找到缺口 返回缺口的横坐标i
# 因为图片是水平移动 所以不需要缺口的纵坐标
return i
# 得到原始轨迹 [[x,y,t],...]
def format_track(track):
track_list=map(lambda x:map(int,x.split(',')),re.findall('{(.*?)}',track))
return track_list
# 选择一条路径
def choice_track_list(dist):
source_track=[
'{-13,-23,0};{0,0,0};{1,0,91};{2,0,96};{5,0,107};{9,0,112};{12,0,121};{15,0,128};{17,0,137};{20,0,144};{23,0,152};{26,0,160};{29,0,168};{32,0,176};{35,0,184};{39,0,192};{44,0,200};{51,0,208};{58,0,216};{64,0,224};{69,0,232};{73,0,240};{78,0,248};{82,0,256};{86,0,264};{90,0,272};{99,0,280};{105,0,288};{114,0,296};{121,0,304};{126,0,312};{132,0,320};{137,0,328};{141,0,336};{146,0,344};{149,0,353};{151,0,360};{154,0,368};{156,0,376};{157,0,385};{158,0,392};{160,0,401};{161,0,408};{162,0,432};{163,0,440};{164,1,448};{166,1,464};{168,1,472};{169,1,480};{170,1,488};{171,1,496};{172,1,504};{173,1,512};{174,1,519};{175,1,528};{176,1,536};{177,1,544};{179,1,552};{180,1,568};{181,1,584};{182,1,600};{183,1,608};{184,1,623};{185,1,632};{186,1,640};{188,1,655};{189,1,664};{191,1,681};{192,1,728};{194,1,760};{194,1,1127};{194,1,1127};{194,1,1127};{194,1,1128};{192,1,1479};{190,1,1511};{189,1,1536};{189,1,1841};',
'{-18,-19,0};{0,0,0};{2,0,256};{4,-1,266};{6,-1,272};{8,-3,282};{9,-3,297};{11,-3,313};{12,-3,360};{13,-4,376};{14,-4,433};{15,-4,449};{16,-4,456};{18,-4,473};{19,-4,520};{19,-4,542};{19,-4,543};{19,-4,543};{19,-4,544};{20,-4,546};{20,-4,549};{20,-4,549};{20,-4,549};{20,-4,550};{20,-4,550};{20,-4,552};{20,-4,552};{20,-4,553};{20,-4,554};{21,-4,585};{22,-4,633};{24,-4,657};{24,-4,678};{24,-4,678};{24,-4,678};{25,-4,728};{27,-4,777};{28,-4,809};{29,-4,858};{30,-4,880};{31,-4,889};{32,-4,920};{33,-4,936};{34,-4,960};{35,-4,984};{36,-4,992};{37,-4,1016};{38,-4,1056};{39,-4,1089};{40,-4,1144};{41,-4,1176};{42,-4,1203};{43,-4,1219};{44,-4,1241};{46,-4,1250};{48,-4,1283};{49,-4,1329};{51,-4,1377};{52,-4,1441};{54,-4,1504};{55,-4,1530};{56,-4,1536};{57,-4,1547};{58,-4,1553};{60,-4,1577};{61,-4,1594};{63,-4,1649};{64,-4,1672};{66,-4,1704};{67,-3,1754};{68,-3,1906};{69,-3,1912};{71,-3,1928};{72,-3,1945};{73,-3,1960};{74,-3,1977};{75,-3,1993};{75,-2,2001};{76,-2,2064};{77,-2,2072};{78,-2,2089};{79,-2,2233};{80,-2,2408};{81,-2,2416};{82,-2,2450};{83,-2,2504};{84,-2,2552};{85,-2,2640};{86,-2,2664};{88,-1,2697};{89,-1,2768};{90,-1,2785};{91,-1,3120};{92,-1,3168};{94,0,3184};{95,0,3224};{96,0,3249};{97,0,3280};{97,1,3304};{98,1,3369};{99,1,3401};{100,1,3448};{101,1,3546};{102,1,3601};{103,1,3656};{104,1,3794};{106,1,3809};{107,1,3825};{108,1,3842};{109,1,3928};{110,1,3976};{111,1,4000};{112,2,4096};{113,2,4224};{114,2,4240};{115,2,4276};{116,3,4296};{117,3,4338};{118,3,4354};{119,3,4392};{120,3,4409};{121,3,4417};{121,4,4424};{122,4,4457};{123,4,4472};{124,4,4512};{125,4,4584};{126,4,4634};{127,4,4656};{128,4,4704};{129,4,4713};{130,4,4728};{131,4,4760};{132,4,4777};{133,4,4784};{134,5,4792};{135,5,4801};{136,5,4809};{138,6,4840};{139,6,4864};{140,6,4888};{141,6,4899};{142,6,4912};{143,6,4946};{144,6,4961};{145,6,4968};{146,6,4994};{147,6,5010};{148,6,5032};{149,6,5080};{150,6,5121};{151,6,5136};{152,6,5241};{153,6,5305};{155,7,5328};{156,7,5489};{157,7,5544};{158,7,5624};{159,7,5632};{160,7,5696};{162,8,5800};{162,9,5824};{163,9,5856};{164,9,5897};{165,9,5912};{166,9,5954};{167,9,5955};{168,9,5968};{169,9,6032};{170,9,6072};{171,9,6108};{172,9,6128};{173,9,6225};{174,9,6256};{175,9,6272};{176,9,6368};{177,9,6416};{178,9,6456};{179,9,6560};{181,10,6600};{182,10,6696};{183,10,6744};{184,10,6760};{185,10,6888};{186,10,6936};{187,10,6976};{188,10,7096};{189,10,7104};{190,10,7129};{191,10,7177};{192,10,7193};{193,10,7200};{194,10,7248};{195,10,7264};{196,10,7280};{198,11,7320};{198,12,7344};{199,12,7352};{200,12,7448};{201,12,7512};{202,12,7521};{203,12,7664};{204,12,7680};{205,12,7720};{206,12,7786};{207,12,7824};{208,13,7840};{209,13,8008};{209,13,8042};',
'{-25,-20,0};{0,0,0};{-1,0,63};{-1,-1,79};{-1,-3,95};{0,-3,103};{0,-3,106};{0,-3,107};{0,-3,107};{0,-3,107};{0,-3,108};{0,-3,108};{0,-3,109};{0,-3,109};{0,-3,109};{1,-3,110};{2,-3,119};{5,-3,127};{8,-3,135};{9,-4,143};{12,-4,151};{15,-4,159};{19,-4,167};{23,-4,175};{28,-4,183};{33,-4,191};{37,-4,199};{42,-4,207};{49,-4,215};{57,-4,223};{62,-4,231};{71,-4,241};{77,-4,248};{77,-4,249};{77,-4,249};{77,-4,249};{86,-4,256};{91,-4,263};{95,-4,272};{100,-4,279};{103,-4,289};{107,-4,295};{111,-4,303};{115,-4,311};{118,-4,319};{120,-4,327};{124,-4,335};{127,-4,343};{128,-4,351};{130,-4,359};{132,-4,367};{134,-4,375};{137,-4,383};{139,-4,391};{140,-4,399};{141,-4,407};{142,-4,423};{143,-4,431};{144,-4,447};{145,-4,455};{146,-4,463};{148,-4,471};{150,-4,487};{151,-4,495};{154,-4,503};{157,-4,512};{158,-4,519};{160,-4,527};{162,-4,535};{164,-4,543};{165,-4,551};{166,-4,559};{167,-4,567};{168,-4,575};{169,-4,591};{170,-4,607};{171,-4,623};{172,-4,640};{174,-4,647};{175,-4,663};{176,-4,671};{177,-4,687};{178,-4,759};{179,-4,767};{180,-4,783};{181,-4,847};{182,-4,863};{183,-4,871};{184,-4,975};{185,-4,991};{186,-4,1056};{187,-4,1074};{188,-4,1079};{189,-4,1096};{189,-4,1463};',
'{-23,-18,0};{0,0,0};{0,0,0};{0,1,285};{1,1,293};{3,1,309};{5,1,317};{8,1,325};{11,1,336};{14,1,341};{15,1,351};{17,1,357};{19,1,366};{21,1,373};{22,1,382};{24,1,389};{26,1,398};{29,1,405};{32,1,414};{33,1,421};{36,1,429};{39,1,437};{40,1,445};{43,1,453};{44,1,461};{46,1,469};{47,1,477};{50,1,486};{51,1,501};{54,1,509};{55,1,518};{57,1,525};{58,1,534};{61,2,541};{62,2,550};{64,2,557};{66,2,566};{68,2,573};{69,2,589};{70,2,597};{72,2,605};{73,2,621};{74,2,630};{75,2,637};{76,2,653};{77,2,662};{78,2,669};{79,2,686};{80,2,695};{81,2,701};{82,2,717};{84,2,725};{86,2,741};{87,2,749};{88,2,765};{89,2,781};{91,2,814};{92,2,821};{93,2,829};{94,2,837};{96,2,845};{97,2,853};{99,2,862};{100,2,869};{101,2,878};{102,2,886};{103,2,901};{104,2,909};{105,2,917};{107,2,943};{108,2,949};{109,2,957};{110,2,965};{111,2,973};{112,2,981};{115,2,990};{116,2,1007};{118,2,1014};{120,2,1029};{121,2,1039};{123,2,1054};{124,2,1061};{125,2,1070};{126,2,1086};{128,2,1094};{130,2,1109};{132,1,1117};{134,1,1150};{135,1,1205};{137,1,1229};{138,1,1253};{139,1,1285};{140,1,1325};{140,1,1598};',
'{-11,-25,0};{0,0,0};{0,0,5};{3,1,229};{6,1,237};{8,1,245};{10,2,253};{11,2,262};{12,2,269};{13,2,278};{14,2,293};{16,2,333};{17,2,342};{18,2,373};{19,2,381};{20,2,389};{21,2,397};{22,2,406};{23,2,413};{24,2,421};{26,2,429};{27,2,437};{29,2,453};{30,2,477};{32,2,485};{33,2,493};{34,2,501};{35,2,509};{36,2,517};{38,2,525};{39,2,541};{40,2,558};{41,2,573};{42,2,581};{43,2,589};{45,2,597};{46,2,605};{48,2,613};{49,2,621};{52,2,629};{53,2,637};{56,2,645};{57,2,654};{59,2,661};{62,2,669};{67,2,677};{70,2,685};{73,2,693};{76,2,701};{78,2,709};{79,2,717};{81,2,725};{83,2,733};{85,2,749};{86,2,765};{88,2,773};{89,2,781};{90,2,789};{91,2,797};{92,2,813};{93,2,821};{94,2,829};{96,2,845};{96,3,854};{97,3,861};{98,3,877};{99,3,893};{100,3,902};{101,3,958};{102,3,1017};{103,3,1038};{104,3,1181};{105,3,1205};{107,4,1248};{108,4,1365};{109,4,1381};{110,4,1638};{110,4,1825};',
'{-16,-23,0};{0,0,0};{1,0,232};{5,0,240};{7,0,248};{9,0,255};{10,0,264};{12,0,272};{14,1,280};{15,1,288};{17,1,296};{18,1,304};{19,2,320};{21,2,328};{22,2,336};{24,3,345};{26,3,352};{29,3,360};{32,3,368};{34,3,376};{37,3,384};{40,3,393};{45,5,400};{49,5,408};{55,6,416};{63,6,423};{67,6,432};{73,6,440};{78,6,448};{82,6,456};{85,6,464};{88,6,472};{89,6,488};{92,6,495};{96,6,504};{99,6,512};{100,6,528};{102,6,600};{103,6,624};{106,6,632};{110,7,642};{114,7,648};{118,7,658};{122,7,664};{128,7,674};{135,7,680};{142,7,689};{146,7,696};{150,7,705};{153,7,712};{155,7,720};{158,7,727};{161,7,736};{164,7,744};{166,7,752};{168,7,759};{169,7,768};{172,7,775};{174,7,784};{176,7,792};{177,7,895};{176,7,1104};{173,7,1118};{171,7,1131};{170,7,1149};{169,7,1641};{168,7,1657};{167,7,1704};{167,7,2144};',
'{-10,-20,0};{0,0,0};{1,0,164};{2,0,212};{3,0,228};{4,0,244};{5,0,270};{6,0,277};{7,0,292};{8,0,309};{9,0,318};{10,0,324};{11,0,340};{12,0,356};{13,0,365};{14,0,388};{15,0,396};{16,0,404};{17,0,420};{18,0,429};{19,0,436};{20,0,468};{21,0,492};{22,0,524};{24,0,534};{25,0,550};{26,0,566};{27,0,572};{28,0,583};{30,0,597};{31,0,613};{33,0,630};{35,0,636};{36,0,646};{37,0,652};{39,0,661};{41,0,668};{43,0,677};{44,0,684};{45,0,692};{47,0,701};{48,0,716};{50,0,726};{51,0,748};{52,1,764};{53,1,780};{54,1,812};{55,1,820};{56,1,828};{57,1,845};{58,1,852};{59,1,861};{60,1,878};{61,1,884};{62,1,893};{63,1,900};{64,1,908};{65,1,916};{66,1,932};{68,1,941};{69,1,948};{70,2,964};{71,2,972};{72,2,980};{74,2,988};{75,2,1004};{77,2,1021};{78,2,1037};{80,2,1052};{80,3,1060};{81,3,1076};{83,3,1141};{84,3,1334};{86,3,1356};{87,3,1437};{87,2,1542};{86,2,1566};{84,1,1572};{83,1,1588};{81,1,1605};{80,1,1621};{79,1,1636};{78,1,1644};{77,1,1669};{76,0,1700};{76,0,2158};',
'{-27,-20,0};{0,0,0};{1,0,175};{2,0,183};{5,0,191};{6,0,200};{8,0,215};{9,0,225};{10,0,232};{11,0,240};{12,0,263};{13,0,273};{15,0,279};{17,0,295};{18,0,304};{21,0,312};{22,0,320};{24,0,328};{26,0,336};{28,0,343};{30,0,352};{33,0,359};{36,0,369};{39,0,375};{41,0,383};{44,0,391};{47,0,399};{49,0,407};{52,0,415};{54,0,423};{55,0,431};{58,0,439};{60,0,447};{63,0,456};{66,0,464};{69,0,471};{70,0,479};{73,0,487};{74,0,495};{76,0,504};{77,0,523};{79,0,527};{81,0,543};{84,0,553};{85,0,559};{86,0,570};{87,0,576};{89,0,589};{90,0,593};{92,0,601};{93,0,608};{95,0,624};{97,0,633};{99,1,640};{100,1,648};{101,1,656};{103,1,666};{104,2,672};{106,2,688};{107,2,696};{108,2,704};{109,2,713};{110,2,728};{111,2,736};{113,2,744};{114,2,760};{116,2,771};{117,2,776};{118,2,784};{120,3,792};{120,4,802};{121,4,816};{122,4,824};{123,4,834};{125,4,840};{126,4,856};{128,4,866};{129,4,880};{131,4,904};{132,4,936};{133,4,944};{134,4,960};{135,4,976};{136,4,984};{137,4,992};{139,4,1008};{140,4,1016};{141,4,1024};{142,4,1032};{143,4,1040};{144,4,1048};{145,4,1064};{146,4,1072};{147,4,1080};{148,4,1113};{149,4,1121};{150,4,1152};{151,4,1688};{152,4,1818};{152,4,2331};'
]
# 计算tmp在哪个子文件中
tmp=str(dist%10)
t_dict=cPickle.load(open('t_dict.pkl'))
if str(dist) in t_dict:
print 'in file %s' %dist
return t_dict[str(dist)],1
if str(dist-1) in t_dict:
print 'in file %s-1' %(dist)
return t_dict[str(dist-1)],1
if str(dist+1) in t_dict:
print 'in file %s+1' %(dist)
return t_dict[str(dist+1)],1
if str(dist-2) in t_dict:
print 'in file %s-2' %(dist)
return t_dict[str(dist-2)],1
if str(dist+2) in t_dict:
print 'in file %s+2' %(dist)
return t_dict[str(dist+2)],1
# 先前没有保存t_dict.pkl的时候 使用了source_track中的值
# 若t_dick收集的完善,将不会执行到这一步,可将一下代码注释
# 若某个小概率距离t_dick中未出现,则从source_track的轨迹中截取
s='{%d,' %dist
print s
tmp_track_list=[]
for item in source_track[:]:
if s in item:
tmp_track_list.append(item)
if len(tmp_track_list)>0:
return random.sample(tmp_track_list,1)[0],0
else:
return source_track[0],0
# 根据js源码中的函数 改写成py
# 由challenge+track ==> 解析得到 userresponse 和 a
def get_userresponse_a(challenge,track_list):
# 路径需要自己拟合
l=track_list[-1][0]
skip_list=fun_c(track_list)
print skip_list
for item in skip_list[1:]:
print '%.2f' %(item[0]/item[2]),
a=fun_f(track_list)
userresponse=cal_userresponse(l,challenge)
return userresponse,a
# 计算每次间隔 相当于c函数
def fun_c(a):
g=[]
e=[]
f=0
for h in range(len(a)-1):
b=int(round(a[h+1][0]-a[h][0]))
c=int(round(a[h+1][1]-a[h][1]))
d=int(round(a[h+1][2]-a[h][2]))
g.append([b,c,d])
if b==c==d==0:
pass
else:
if b==c==0:
f+=d
else:
e.append([b,c,d+f])
f=0
if f!=0:
e.append([b,c,f])
return e
def fun_e(item): # 相当于e函数
b=[[1, 0], [2, 0], [1, -1], [1, 1], [0, 1], [0, -1], [3, 0], [2, -1], [2, 1]]
c='stuvwxyz~'
for i,t in enumerate(b):
if t==item[:2]:
return c[i]
return 0
def fun_d(a):
b='()*,-./0123456789:?@ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqr'
c=len(b)
d=''
e=abs(a)
f=int(e/c)
if f>=c:
f=c-1
if f>0:
d=b[f]
e%=c
g=''
if a<0:
g+='!'
if d:
g+='$'
return g+d+b[e]
def fun_f(track_list):
skip_list=fun_c(track_list)
g,h,i=[],[],[]
for j in range(len(skip_list)):
b=fun_e(skip_list[j])
if b:
h.append(b)
else:
g.append(fun_d(skip_list[j][0]))
h.append(fun_d(skip_list[j][1]))
i.append(fun_d(skip_list[j][2]))
return ''.join(g)+'!!'+''.join(h)+'!!'+''.join(i)
# 解析第三个包 得到最终目标 validate
def parse_3(url,gt,challenge,userresponse,passtime,a):
headers = {
"Accept-Language": "zh-CN,zh;q=0.8",
"Accept-Encoding": "gzip, deflate, sdch",
"Host": "api.geetest.com",
"Accept": "*/*",
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36",
"Connection": "keep-alive",
# "Cookie": "_qddaz=QD.qzoxk9.gfcxu3.j0tbuez7; GeeTestUser=3a3f47d8f6c14464d694c53957c91d32; GeeTestAjaxUser=ed48e252bed836a5dd959e55403b8208; Hm_lvt_25b04a5e7a64668b9b88e2711fb5f0c4=1492523359; Hm_lpvt_25b04a5e7a64668b9b88e2711fb5f0c4=1492523359; sensorsdata2015jssdkcross=%7B%22distinct_id%22%3A%2215b81531ab1f8-060ba3ef5-4349052c-2073600-15b81531ab232c%22%2C%22props%22%3A%7B%22%24latest_referrer%22%3A%22%22%2C%22%24latest_referrer_host%22%3A%22%22%7D%7D",
"Referer": "http://localhost:8000/"
}
data={
'gt':gt,
'challenge':challenge,
'userresponse':userresponse,
'passtime':str(passtime),
'imgload':str(680),
'a':a,
'callback':'geetest_1492949620265'
}
res=requests.get(url,headers=headers,params=data).content
print 'res:',res
validate=''
if 'validate' in res:
validate=re.findall('"validate": "(.*?)"',res)[0]
return validate
def cal_userresponse(a,b):
d=[]
c=b[32:]
for e in range(len(c)):
f=ord(str(c[e]))
tmp=f-87 if f>57 else f-48
d.append(tmp)
c=36*d[0]+d[1]
g=int(round(a))+c
b=b[:32]
i=[[],[],[],[],[]]
j={}
k=0
e=0
for e in range(len(b)):
h=b[e]
if h in j:
pass
else:
j[h]=1
i[k].append(h)
k+=1
k=0 if (k==5) else k
n=g
o=4
p=""
q=[1,2,5,10,50]
while n>0:
if n-q[o]>=0:
m=int(random.random()*len(i[o]))
p+=str(i[o][m])
n-=q[o]
else:
del(i[o])
del(q[o])
o-=1
return p
# 创建模拟的鼠标轨迹
def create_track(track_list,dist):
new_track_list=[]
for item in track_list:
if item[0]<=dist:
new_track_list.append(item)
else:
break
# new_track_list[-1][-1]+=300
return new_track_list
def get_validate(gt,challenge):
try:
# 获得bg和fullbg
challenge,bg,fullbg=get_bg_fullbg(gt,challenge)
print 'challenge:',challenge
print 'bg:',bg
print 'fullbg:',fullbg
# 缺口距离 供编写鼠标轨迹使用 距离边框6
dist=get_dist(bg,fullbg)-6
print 'dist:',dist
# 根据dist挑选一个路径
# track来自文件 teg=1 否则 0
track,tag=choice_track_list(dist) # 来自训练路径 tag=1
# 规范化轨迹数据 [[x,y,t],...]
track_list=format_track(track) # 路径列表
print track_list
# 若tag==0,即轨迹数据不在已收集的轨迹文件中(来自候选轨迹列表),
# 则截取路径(从中截取需要的长度)
if tag!=1:
new_track_list=create_track(track_list,dist)
else:
# tag==1 轨迹数据来自文件 直接赋值
new_track_list=track_list
print new_track_list
# 根据challenge和 new_track_list
# 计算 userresponse 和 a 参数
userresponse,a=get_userresponse_a(challenge,new_track_list)
print 'userresponse:',userresponse
print 'a:',a
url='http://api.geetest.com/ajax.php'
# passtime parse_3所需的参数
passtime=new_track_list[-1][-1]
print 'passtime:',passtime
# 防止太频繁 休眠时间可改短
time.sleep(2)
# 获得 validate
validate=parse_3(url,gt,challenge,userresponse,passtime,a)
time.sleep(2)
# if len(validate)>0:
# print challenge
# print validate
return challenge,validate
except Exception,e:
return '',''
# 该函数供测试使用
# 请求gt和challenge 异常或出错返回空
def get_gt_challenge(url):
# url='http://www.gsxt.gov.cn/SearchItemCaptcha?v=1493114887662'
headers = {
"Accept-Language": "zh-CN,zh;q=0.8",
"Accept-Encoding": "gzip, deflate, sdch",
"X-Requested-With": "XMLHttpRequest",
"Host": "www.gsxt.gov.cn",
"Accept": "application/json, text/javascript, */*; q=0.01",
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36",
"Connection": "keep-alive",
#"Cookie": "__jsluid=eb8523c9655107d177806597beb43f57; UM_distinctid=15b0d57141c23d-08caf973d-4349052c-1fa400-15b0d57141d940; tlb_cookie1=114ui_8280; Hm_lvt_d7682ab43891c68a00de46e9ce5b76aa=1492692994; Hm_lpvt_d7682ab43891c68a00de46e9ce5b76aa=1493024386; JSESSIONID=E7E8CC28F2EA0ABAF34E5B0B28A76730-n1:0; tlb_cookie=24query_8080; CNZZDATA1261033118=1201860774-1490573985-%7C1493103540; Hm_lvt_cdb4bc83287f8c1282df45ed61c4eac9=1490577462,1492505367; Hm_lpvt_cdb4bc83287f8c1282df45ed61c4eac9=1493104058",
#"Referer": "http://www.gsxt.gov.cn/corp-query-search-1.html"
}
try:
res=requests.get(url,headers=headers).content
if '"challenge"' in res and '"gt"' in res:
gt=re.findall('"gt":"(.*?)"',res)[0]
challenge=re.findall('"challenge":"(.*?)"',res)[0]
return gt,challenge
else:
return '',''
except Exception,e:
return '',''
# 使用时 只需要
# from geetest_break import get_validate
# url='http://www.gsxt.gov.cn/SearchItemCaptcha?v=%s' %(1493114887662+random.randint(0,10000))
# gt,challenge=get_gt_challenge(url)
# challenge,validate=get_validate(gt,challenge)
##############################################
# 以下为测试
# url='http://www.gsxt.gov.cn/SearchItemCaptcha?v=%s' %(1493114887662+random.randint(0,10000))
url='http://www.gsxt.gov.cn/SearchItemCaptcha?v=%s' %(time.time()*1000)
# 获取 gt challenge
gt,challenge=get_gt_challenge(url)
print gt
print challenge
'''
challenge,bg,fullbg=get_bg_fullbg(gt,challenge)
print 'challenge:',challenge
print 'bg:',bg
print 'fullbg:',fullbg
# 缺口距离 供编写鼠标轨迹使用 距离边框6
dist=get_dist(bg,fullbg)-6
print 'dist:',dist
'''
# im1='http://static.geetest.com/pictures/gt/969ffa43c/bg/7d2654c4a.jpg'
# im2='http://static.geetest.com/pictures/gt/969ffa43c/969ffa43c.jpg'
# d=get_dist(im1,im2)-6
# print d
# 获得 challenge, validate
challenge,validate=get_validate(gt,challenge)
print challenge,validate
# 以上若成功获得 challenge 和 validate, 说明验证码已经破解成功
# 下面请求一个页面试试
# 获取一页上所有查询结果的link
def get_uri(page):
links=[]
alist=page.xpath(u'//a[@class="search_list_item db"]')
web_site='http://www.gsxt.gov.cn'
for item in alist:
# print item.attrib['href']
links.append(web_site+item.attrib['href'])
return links
pageNo=1
data_href='http://www.gsxt.gov.cn/corp-query-search-%s.html' %(pageNo)
headers = {
"Origin": "http://www.gsxt.gov.cn",
"Proxy-Connection": "keep-alive",
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36",
"Host": "www.gsxt.gov.cn",
"Referer": "http://www.gsxt.gov.cn/index.html",
"Cache-Control": "max-age=0"
}
searchword=u'百度'
data = {
"searchword": searchword,
"geetest_challenge": challenge,
"token": "41111854",
"tab": "",
"geetest_seccode": validate+"|jordan",
"geetest_validate": validate,
'page':str(pageNo)
}
# 谨慎(请求必须加上headers) 稍不注意 就被短暂封ip
if validate!=None:
res=requests.post(data_href,headers=headers,data=data).content
# print res
page=etree.HTML(res)
links=get_uri(page)
print '查询结果如下:'
for link in links:
print link
'''
bg='http://static.geetest.com/pictures/gt/9f9cff207/bg/9f6cfe44a.jpg'
fullbg='http://static.geetest.com/pictures/gt/9f9cff207/9f9cff207.jpg'
dist=get_dist(bg,fullbg)-6
print dist
'''