-
Notifications
You must be signed in to change notification settings - Fork 328
/
main.py
347 lines (306 loc) · 14.2 KB
/
main.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
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from selenium import webdriver
from bs4 import BeautifulSoup
from random import uniform
from time import sleep
from faker import Faker
from scipy.io import wavfile
import sys
import logging
import random
import os
import urllib
import time
import audio
import threading
import argparse
# use the max amplitude to filter out pauses
AMP_THRESHOLD = 2500
ATTACK_AUDIO = False
ATTACK_IMAGES = True
ATTACK_REDDIT = False
CHROMEDRIVER_PATH = ""
LEVEL = logging.DEBUG
parser = argparse.ArgumentParser()
group = parser.add_mutually_exclusive_group()
group.add_argument("--image", action='store_true', help="attack image recaptcha")
group.add_argument("--audio", action='store_true', help="attack audio recaptcha")
parser.add_argument("--driver", action="store", help="specify custom chromedriver path")
parser.add_argument("--reddit", action="store_true", help="run attack against Reddit's recaptcha")
parser.add_argument("--level", action="store", help="set log level", default="debug", choices=("debug", "warning"))
args = parser.parse_args()
ATTACK_IMAGES = args.image
ATTACK_AUDIO = args.audio
ATTACK_REDDIT = args.reddit
CHROMEDRIVER_PATH = args.driver
if not ATTACK_AUDIO and not ATTACK_IMAGES:
parser.print_help()
sys.exit()
############################## UTIL FUNCTIONS #############################
def init(task_type):
global TASK_PATH, TASK_DIR, TASK_NUM, TASK
TASK_DIR = os.path.join(task_type, "task")
TASK_NUM = 1
while os.path.isdir(TASK_DIR+str(TASK_NUM)):
TASK_NUM += 1
if not os.path.isdir(TASK_DIR+str(TASK_NUM)):
os.mkdir(TASK_DIR+str(TASK_NUM))
logging.info("Making "+ TASK_DIR+str(TASK_NUM))
TASK = "task"+str(TASK_NUM)
TASK_PATH = os.path.join(task_type, TASK)
def wait_between(a, b):
rand = uniform(a, b)
sleep(rand)
############################## IMAGE RECAPTCHA ##############################
TASK_PATH = "images/taskg"
def should_click_image(img, x1, y1, store):
ans = ris.parse_clarifai(ris.clarifai(img))
logging.debug(ans)
decision = "car" in ans or "vehicle" in ans or "truck" in ans
store[(x1,y1)] = decision
logging.debug(store)
return decision
def click_tiles(driver, coords):
orig_srcs, new_srcs = {}, {}
for (x, y) in coords:
logging.debug("[*] Going to click {} {}".format(x,y))
tile1 = WebDriverWait(driver, 10).until(EC.presence_of_element_located((By.XPATH, '//div[@id="rc-imageselect-target"]/table/tbody/tr[{0}]/td[{1}]'.format(x, y))))
orig_srcs[(x, y)] = driver.find_element(By.XPATH, "//*[@id=\"rc-imageselect-target\"]/table/tbody/tr[{}]/td[{}]/div/div[1]/img".format(x,y)).get_attribute("src")
new_srcs[(x, y)] = orig_srcs[(x, y)] # to check if image has changed
tile1.click()
wait_between(0.1, 0.5)
logging.debug("[*] Downloading new inbound image...")
new_files = {}
for (x, y) in orig_srcs:
while new_srcs[(x, y)] == orig_srcs[(x, y)]:
new_srcs[(x, y)] = driver.find_element(By.XPATH, "//*[@id=\"rc-imageselect-target\"]/table/tbody/tr[{}]/td[{}]/div/div[1]/img".format(x,y)).get_attribute("src")
time.sleep(0.5)
urllib.urlretrieve(new_srcs[(x, y)], "captcha.jpeg")
new_path = TASK_PATH+"/new_output{}{}.jpeg".format(x, y)
os.system("mv captcha.jpeg "+new_path)
new_files[(x, y)] = (new_path)
return new_files
def handle_queue(to_solve_queue, coor_dict):
ts = []
for (x,y) in to_solve_queue:
image_file = to_solve_queue[(x, y)]
t = threading.Thread(target=should_click_image, args=(image_file, x, y,coor_dict))
ts.append(t)
t.start()
for t in ts:
t.join()
def image_recaptcha(driver):
continue_solving = True
while continue_solving:
willing_to_solve = False
while not willing_to_solve:
body = driver.find_element(By.CSS_SELECTOR, "body").get_attribute('innerHTML').encode("utf8")
soup = BeautifulSoup(body, 'html.parser')
table = soup.findAll("div", {"id": "rc-imageselect-target"})[0]
target = soup.findAll("div", {"class": "rc-imageselect-desc"})
if not target: # find the target
target = soup.findAll("div", {"class": "rc-imageselect-desc-no-canonical"})
target = target[0].findAll("strong")[0].get_text()
# Compute shape of captcha & target #
trs = table.findAll("tr")
max_height = len(trs)
max_width = 0
for tr in trs:
imgs = tr.findAll("img")
payload = imgs[0]["src"]
if len(imgs) > max_width:
max_width = len(imgs)
# if its not easy, ask for a new one
if max_height != 3 or max_width != 3 or target != "cars": # lets get an easier one
reload_captcha = driver.find_element(By.XPATH, "//*[@id=\"recaptcha-reload-button\"]")
reload_captcha.click()
wait_between(0.2, 0.5)
else:
willing_to_solve = True
# Pull down catcha to attack and organize directory structure
urllib.urlretrieve(payload, "captcha.jpeg")
os.system("mv captcha.jpeg "+TASK_PATH+"/full_payload.jpeg")
os.system("convert "+TASK_PATH+"/full_payload.jpeg -crop "+str(max_width)+"x"+str(max_width)+"@ +repage +adjoin "+TASK_PATH+"/output_%03d.jpg")
# build queue of files
to_solve_queue = {}
idx = 0
for f in [TASK_PATH+"/"+f for f in os.listdir(TASK_PATH) if "output_" in f]:
y = idx % 3 + 1 # making coordinates 1 indexed to match xpaths
x = idx / 3 + 1
to_solve_queue[(x, y)] = f
idx += 1
logging.debug(to_solve_queue)
coor_dict = {}
handle_queue(to_solve_queue, coor_dict) # multithread builds out where to click
logging.debug(coor_dict)
#os.system("rm "+TASK_PATH+"/full_payload.jpeg")
driver.switch_to.default_content()
iframe = driver.find_element(By.XPATH, "/html/body/div/div[4]/iframe")
driver.switch_to.frame(iframe)
continue_solving = True
while continue_solving:
to_click_tiles = []
for coords in coor_dict:
to_click = coor_dict[coords]
x, y = coords
body = driver.find_element(By.CSS_SELECTOR, "body").get_attribute('innerHTML').encode("utf8")
if to_click:
to_click_tiles.append((x,y)) # collect all the tiles to click in this round
new_files = click_tiles(driver, to_click_tiles)
handle_queue(new_files, coor_dict)
continue_solving = False
for to_click_tile in coor_dict.values():
continue_solving = to_click_tile or continue_solving
driver.find_element(By.ID, "recaptcha-verify-button").click()
wait_between(0.2, 0.5)
if driver.find_element_by_class_name("rc-imageselect-incorrect-response").get_attribute("style") != "display: none":
continue_solving = True
else:
print "Think I'm done here!"
############################## AUDIO RECAPTCHA ##############################
def test_all(start=100, end=101):
global TASK_PATH
TASK_TYPE = "data"
timings = []
for task_num in range(start, end):
try:
TASK = "task"+str(task_num)
TASK_PATH = TASK_TYPE+"/"+TASK
AUDIO_FILE = TASK_PATH+"/"+TASK #+ ".mp3"
num_str, time = get_numbers(AUDIO_FILE, TASK_PATH+"/")
print(num_str, time)
timings.append(time)
except:
pass
print timings
print sum(timings)/float(len(timings))
def get_numbers(audio_file, parent_dir):
global AMP_THRESHOLD
mp3_file = audio_file + ".mp3"
wav_file = audio_file + ".wav"
print("converting from " + mp3_file + " to " + wav_file)
os.system("echo 'y' | ffmpeg -i "+mp3_file+" "+wav_file + "&> /dev/null")
# split audio file on silence
os.system("sox -V3 "+wav_file+" "+audio_file+"_.wav silence -l 0 1 0.5 0.1% : newfile : restart &> /dev/null")
files = [f for f in os.listdir(parent_dir) if "_0" in f]
audio_filenames = []
# remove audio files that are only silence
for f in files:
_, snd = wavfile.read(TASK_PATH + "/" + f)
amp = max(snd)
print(f + ":" + str(amp))
if amp > AMP_THRESHOLD: # skip this file
audio_filenames.append(parent_dir+f)
else:
os.system("rm " + parent_dir+f)
# run speech recognition on the individual numbers
# num_str = ""
# for f in sorted(audio_filenames):
# print f
# num_str += str(audio.getNum(f))
# print(num_str)
return audio.getNums(TASK_PATH, audio_filenames)
def type_like_bot(driver, element, string):
driver.find_element(By.ID, element).send_keys(string)
wait_between(0.5, 2)
def type_like_human(driver, element, string):
driver.find_element(By.ID, element).click()
for c in string:
driver.find_element(By.ID, element).send_keys(c)
wait_between(0.0, 0.1)
wait_between(0.5, 2)
type_style = type_like_bot
def fill_out_profile(driver):
fake = Faker()
user = fake.simple_profile()
username = user["username"]
email = user["mail"].replace("@", str(random.randint(10000, 99999))+"@")
password = fake.password()
wait_between(1, 2)
type_style(driver, "user_reg", username)
type_style(driver, "passwd_reg", password)
type_style(driver, "passwd2_reg", password)
type_style(driver, "email_reg", email)
############################## MAIN ##############################
def main():
logging.basicConfig(stream=sys.stderr, level=LEVEL)
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--disable-bundled-ppapi-flash")
chrome_options.add_argument("--incognito")
chrome_options.add_argument("user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.109 Safari/537.36")
chrome_options.add_argument("--disable-plugins-discovery")
if CHROMEDRIVER_PATH:
driver = webdriver.Chrome(CHROMEDRIVER_PATH, chrome_options=chrome_options)
logging.debug("[*] Starting custom chromedriver %s" % CHROMEDRIVER_PATH)
else:
driver = webdriver.Chrome(chrome_options=chrome_options)
logging.debug("[*] Starting system default chromedriver")
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.delete_all_cookies()
agent = driver.execute_script("return navigator.userAgent")
logging.debug("[*] Cookies cleared")
logging.debug("[ ] Starting driver with user agent %s" % agent)
if ATTACK_REDDIT:
logging.info("[*] Starting attack on Reddit's recaptcha")
driver.get("http://reddit.com")
driver.find_element(By.XPATH, "//*[@id=\"header-bottom-right\"]/span[1]/a").click()
logging.debug("[*] Filling out Reddit registration form")
fill_out_profile(driver)
WebDriverWait(driver, 60).until(EC.visibility_of_element_located((By.XPATH, "//*[@id=\"register-form\"]/div[6]/div/div/div/iframe")))
iframeSwitch = driver.find_element(By.XPATH, "//*[@id=\"register-form\"]/div[6]/div/div/div/iframe")
else:
logging.info("[*] Starting attack on local site")
driver.get("localhost:8000/site.html")
iframeSwitch = driver.find_element(By.XPATH, "//*[@id=\"captcha\"]/div/div/iframe")
driver.delete_all_cookies()
driver.switch_to.frame(iframeSwitch)
#ActionChains(driver).move_to_element(iframeSwitch).perform()
driver.delete_all_cookies()
logging.info("[*] Recaptcha located. Engaging")
WebDriverWait(driver, 30).until(EC.presence_of_element_located((By.ID, "recaptcha-anchor")))
ele = driver.find_element(By.ID, "recaptcha-anchor")
#ActionChains(driver).move_to_element(ele).perform()
ele.click()
driver.switch_to.default_content()
WebDriverWait(driver, 30).until(EC.presence_of_element_located((By.CSS_SELECTOR, "iframe[title=\"recaptcha challenge\"]")))
iframe = driver.find_element(By.CSS_SELECTOR, "iframe[title=\"recaptcha challenge\"]")
driver.switch_to.frame(iframe)
WebDriverWait(driver, 30).until(EC.presence_of_element_located((By.ID, "rc-imageselect")))
if ATTACK_IMAGES:
image_recaptcha(driver)
elif ATTACK_AUDIO:
WebDriverWait(driver, 30).until(EC.presence_of_element_located((By.ID, "recaptcha-audio-button")))
time.sleep(1)
driver.find_element(By.ID, "recaptcha-audio-button").click()
guess_again = True
while guess_again:
init("audio")
WebDriverWait(driver, 30).until(EC.presence_of_element_located((By.ID, "audio-source")))
# Parse table details offline
body = driver.find_element(By.CSS_SELECTOR, "body").get_attribute('innerHTML').encode("utf8")
soup = BeautifulSoup(body, 'html.parser')
link = soup.findAll("a", {"class": "rc-audiochallenge-tdownload-link"})[0]
urllib.urlretrieve(link["href"], TASK_PATH + "/" + TASK + ".mp3")
guess_str = get_numbers(TASK_PATH + "/" + TASK, TASK_PATH + "/")
type_style(driver, "audio-response", guess_str)
# results.append(guess_str)
wait_between(0.5, 3)
driver.find_element(By.ID, "recaptcha-verify-button").click()
wait_between(1, 2.5)
try:
logging.debug("Checking if Google wants us to solve more...")
driver.switch_to.default_content()
driver.switch_to.frame(iframeSwitch)
checkmark_pos = driver.find_element(By.CLASS_NAME, "recaptcha-checkbox-checkmark").get_attribute("style")
guess_again = not (checkmark_pos == "background-position: 0 -600px")
driver.switch_to.default_content()
iframe = driver.find_element(By.CSS_SELECTOR, "iframe[title=\"recaptcha challenge\"]")
driver.switch_to.frame(iframe)
except Exception as e:
print e
guess_again = False
input("")
main()
# test_all()