-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrun.py
433 lines (354 loc) · 16.5 KB
/
run.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
from turtle import st
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
import undetected_chromedriver as uc
# import undetected_chromedriver.v2 as uc
import time
import yaml
import json
import logging
from rich.progress import track
from rich.console import Console
from rich.panel import Panel
from rich.progress import Progress
import os
import threading
import multiprocessing
from selenium.webdriver.chrome.options import Options
# selenium 4
from selenium import webdriver
from selenium.webdriver.chrome.service import Service as ChromiumService
from webdriver_manager.chrome import ChromeDriverManager
from webdriver_manager.core.utils import ChromeType
from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import TimeoutException
from selenium.common.exceptions import ElementClickInterceptedException
class VerifyEmail:
def __init__(self):
log = logging.getLogger("my_logger")
try:
os.makedirs(os.path.dirname("./output/"), exist_ok=True)
self.console = Console()
self.options = Options()
headless = input("Run headless (default True): ") or "True"
if headless != "True" and headless != "False":
self.options.headless = True
elif headless == "True":
self.options.headless = True
elif headless == "False":
self.options.headless = False
self.sleep = int(input("Enter delay in sec (default 5): ") or 5)
print(f"Delay : {self.sleep}")
# select domain to work on
domain_names = {
"1": "aol.com",
"2": "yahoo.com",
"3": "xfinity.com (comcast)",
}
print("\nSelect Domain to work on:")
print(yaml.dump(domain_names, default_flow_style=False))
self.domain = input("Select Domain: ")
print(f"\nWorking on domain : {domain_names[self.domain]}")
self.skip_other_domain = (
input("Skip other Domain [default False]: ") or "False"
)
if self.skip_other_domain != "True" and self.skip_other_domain != "False":
self.skip_other_domain = "False"
print(f"skip_other_domain = {self.skip_other_domain}")
# input data file name
self.input_file_name = input("\nEnter input text filename with extension: ")
print(f"\nRead data from : {self.input_file_name}")
# read file data into list
with open(self.input_file_name) as f:
self.data_list = [line.rstrip() for line in f if line.rstrip()]
print(f"\nTotal records in file : {len(self.data_list)}")
if len(self.data_list):
# if we have data
domain_names_config = {
"1": "aol.json",
"2": "yahoo.json",
"3": "comcast.json",
}
config_json = open(f"./config_json/{domain_names_config[self.domain]}")
self.config_json = json.load(config_json)
if self.domain == "1":
# aol
self.aol_runner(self.data_list)
elif self.domain == "2":
# yahoo
self.yahoo_runner(self.data_list)
elif self.domain == "3":
# comcast
self.comcast_runner(self.data_list)
else:
# if file is empty
print(f"{len(self.data_list)} records in {self.input_file_name}")
except Exception as e:
print(e)
log.error(e)
def split(self, list_a, chunk_size):
for i in range(0, len(list_a), chunk_size):
yield list_a[i : i + chunk_size]
def aol_runner(self, data_list):
log = logging.getLogger("my_logger")
try:
print("Running for aol:")
url = self.config_json["url"]
driver = uc.Chrome(
executable_path="./driver/chromedriver.exe",
use_subprocess=True,
options=self.options,
)
driver.get(url)
wait = WebDriverWait(driver, self.sleep + 5)
email_pass = []
email_fail = []
with Progress() as progress:
task1 = progress.add_task("[red]Working...", total=len(data_list))
for index, email in enumerate(data_list):
progress.update(task1, advance=1)
uname = email.split("@")[0]
uname_domain = email.split("@")[1]
if self.skip_other_domain == "True":
if uname_domain != "aol.com":
print(f"\n===skip check for domain : {uname_domain}===")
continue
print(f"{index} check : {uname}")
wait.until(
EC.element_to_be_clickable((By.XPATH, "//input[@name='yid']"))
)
uemail_field = driver.find_element("xpath", "//input[@name='yid']")
wait.until(
EC.element_to_be_clickable(
(By.XPATH, "//input[@name='firstName']")
)
)
firstName_field = driver.find_element(
"xpath", "//input[@name='firstName']"
)
uemail_field.clear()
uemail_field.send_keys(uname)
firstName_field.click()
time.sleep(5)
error_field = driver.find_element(
"xpath", "//*[@id='reg-error-yid']"
)
if (
error_field.text == self.config_json["on_error_text1"]
or error_field.text == self.config_json["on_error_text2"]
):
# print(error_field.text)
self.console.print(f"\n{email} [green1]PASS")
email_pass.append(email)
self.write_to_file(email, "aol_email_pass")
else:
self.console.print(f"\n{email} [deep_pink4]FAIL")
email_fail.append(email)
self.write_to_file(email, "aol_email_fail")
print(f"Total Email Pass : {len(email_pass)}")
print(f"Total Email Fail : {len(email_fail)}")
log.info(f"Total Email Pass : {len(email_pass)}")
log.info(f"Total Email Fail : {len(email_fail)}")
driver.quit()
except Exception as e:
print(e)
log.error(e)
def yahoo_runner(self, data_list):
log = logging.getLogger("my_logger")
try:
print("Running for yahoo:")
url = self.config_json["url"]
driver = uc.Chrome(
executable_path="./driver/chromedriver.exe",
use_subprocess=True,
options=self.options,
)
driver.get(url)
wait = WebDriverWait(driver, self.sleep)
email_pass = []
email_fail = []
with Progress() as progress:
task1 = progress.add_task("[red]Working...", total=len(data_list))
for index, email in enumerate(data_list):
progress.update(task1, advance=1)
uname = email.split("@")[0]
uname_domain = email.split("@")[1]
if self.skip_other_domain == "True":
if uname_domain != "yahoo.com":
print(f"\n===skip check for domain : {uname_domain}===")
continue
print(f"{index} check : {uname}")
wait.until(
EC.element_to_be_clickable(
(By.XPATH, "//input[@name='userId']")
)
)
uemail_field = driver.find_element(
"xpath", "//input[@name='userId']"
)
wait.until(
EC.element_to_be_clickable(
(By.XPATH, "//input[@name='firstName']")
)
)
firstName_field = driver.find_element(
"xpath", "//input[@name='firstName']"
)
uemail_field.clear()
uemail_field.send_keys(uname)
firstName_field.click()
time.sleep(self.sleep)
error_field = driver.find_element(
"xpath", "//*[@id='reg-error-userId']"
)
if (
error_field.text == self.config_json["on_error_text1"]
or error_field.text == self.config_json["on_error_text2"]
):
# print(error_field.text)
self.console.print(f"\n{email} [green1]PASS")
email_pass.append(email)
self.write_to_file(email, "yahoo_email_pass")
else:
self.console.print(f"\n{email} [deep_pink4]FAIL")
email_fail.append(email)
self.write_to_file(email, "yahoo_email_fail")
print(f"Total Email Pass : {len(email_pass)}")
print(f"Total Email Fail : {len(email_fail)}")
log.info(f"Total Email Pass : {len(email_pass)}")
log.info(f"Total Email Fail : {len(email_fail)}")
driver.quit()
except Exception as e:
print(e)
log.error(e)
def comcast_runner(self, data_list):
log = logging.getLogger("my_logger")
try:
print("Running for comcast:")
url = self.config_json["url"]
driver = uc.Chrome(
executable_path="./driver/chromedriver.exe",
use_subprocess=True,
options=self.options,
)
driver.get(url)
wait = WebDriverWait(driver, self.sleep)
email_pass = []
email_fail = []
with Progress() as progress:
task1 = progress.add_task("[red]Working...", total=len(data_list))
for index, email in enumerate(data_list):
try:
progress.update(task1, advance=1)
uname = email.split("@")[0]
uname_domain = email.split("@")[1]
if self.skip_other_domain == "True":
if uname_domain != "comcast.net":
print(f"\n===skip check for domain : {uname_domain}===")
continue
print(f"{index} check : {uname}")
wait.until(
EC.element_to_be_clickable(
(By.XPATH, "//input[@name='user']")
)
)
uemail_field = driver.find_element(
"xpath", "//input[@name='user']"
)
wait.until(
EC.element_to_be_clickable(
(By.XPATH, "//button[@type='submit']")
)
)
password_field = driver.find_element(
"xpath", "//button[@type='submit']"
)
uemail_field.clear()
uemail_field.send_keys(uname)
password_field.click()
time.sleep(self.sleep)
try:
error_field = driver.find_element(
"xpath",
"/html/body/main/div[2]/prism-box/form/prism-input/span[2]/prism-text",
)
if error_field.text == self.config_json["on_error_text"]:
self.console.print(f"\n{email} [deep_pink4]FAIL")
email_fail.append(email)
self.write_to_file(email, "comcast_email_fail")
except NoSuchElementException:
print(f"1 : {NoSuchElementException}")
self.console.print(f"\n{email} [green1]PASS")
email_pass.append(email)
self.write_to_file(email, "comcast_email_pass")
# time.sleep(self.sleep)
# try:
# reload_field = driver.find_element(
# "xpath", "/html/body/main/div[2]/prism-box/form/prism-button[3]/a/prism-text")
# reload_field.click()
# except NoSuchElementException:
# print(f'2 : {NoSuchElementException}')
# if self.config_json["compromised"] in driver.current_url:
# print("\nemail compromised")
driver.back()
driver.refresh()
except ElementClickInterceptedException:
print(ElementClickInterceptedException)
log.error(f"{email} : {ElementClickInterceptedException}")
except TimeoutException:
print(f"{email} :{TimeoutException}")
log.error(f"{email} :{TimeoutException}")
except Exception as e:
print(e)
log.error(e)
except TimeoutException:
print(f"{email} [continue] :{TimeoutException}")
log.error(f"{email} [continue] :{TimeoutException}")
driver.back()
driver.refresh()
print("continue sleep..5")
time.sleep(5)
continue
print(f"Total Email Pass : {len(email_pass)}")
print(f"Total Email Fail : {len(email_fail)}")
log.info(f"Total Email Pass : {len(email_pass)}")
log.info(f"Total Email Fail : {len(email_fail)}")
driver.quit()
except ElementClickInterceptedException:
print(ElementClickInterceptedException)
log.error(ElementClickInterceptedException)
except TimeoutException:
print(f"{email} :{TimeoutException}")
log.error(f"{email} :{TimeoutException}")
except Exception as e:
print(e)
log.error(e)
def write_to_file(self, result_list, f_name):
log = logging.getLogger("my_logger")
try:
import time
timestr = time.strftime("%Y%m%d")
with open(f"./output/{f_name}_{timestr}_.txt", "a") as fp:
# for item in result_list:
# # write each item on a new line
# fp.write("%s\n" % item)
fp.write(f"{result_list}\n")
print(f"\nWritten to File : \033[32;1m{f_name}\033[0m")
except Exception as e:
log.error(e)
def print_author(msg):
print("\n" * 5)
print("*=" * 20)
print()
print("GitHub : https://github.com/Abhi5h3k")
print()
print(msg)
print()
print("*=" * 20)
print("\n" * 5)
if __name__ == "__main__":
from logger import Logger
Logger()
print_author("Verify email for multiple domains (yahoo, aol , comcast...)")
VerifyEmail()