fix catch BaseException and bare except

This commit is contained in:
guyskk 2022-03-14 10:19:06 +08:00
parent 1808bb23b8
commit 838e91f57f
90 changed files with 142 additions and 139 deletions

3
.gitignore vendored
View File

@ -6,3 +6,6 @@ holehe.egg-info
.idea
venv
test_module.py
build/
dist/
.python-version

View File

@ -24,7 +24,7 @@ from holehe.instruments import TrioProgress
try:
import cookielib
except BaseException:
except Exception:
import http.cookiejar as cookielib
@ -161,7 +161,7 @@ async def launch_module(module,email, client, out):
data={'aboutme': 'about.me', 'adobe': 'adobe.com', 'amazon': 'amazon.com', 'anydo': 'any.do', 'archive': 'archive.org', 'armurerieauxerre': 'armurerie-auxerre.com', 'atlassian': 'atlassian.com', 'babeshows': 'babeshows.co.uk', 'badeggsonline': 'badeggsonline.com', 'biosmods': 'bios-mods.com', 'biotechnologyforums': 'biotechnologyforums.com', 'bitmoji': 'bitmoji.com', 'blablacar': 'blablacar.com', 'blackworldforum': 'blackworldforum.com', 'blip': 'blip.fm', 'blitzortung': 'forum.blitzortung.org', 'bluegrassrivals': 'bluegrassrivals.com', 'bodybuilding': 'bodybuilding.com', 'buymeacoffee': 'buymeacoffee.com', 'cambridgemt': 'discussion.cambridge-mt.com', 'caringbridge': 'caringbridge.org', 'chinaphonearena': 'chinaphonearena.com', 'clashfarmer': 'clashfarmer.com', 'codecademy': 'codecademy.com', 'codeigniter': 'forum.codeigniter.com', 'codepen': 'codepen.io', 'coroflot': 'coroflot.com', 'cpaelites': 'cpaelites.com', 'cpahero': 'cpahero.com', 'cracked_to': 'cracked.to', 'crevado': 'crevado.com', 'deliveroo': 'deliveroo.com', 'demonforums': 'demonforums.net', 'devrant': 'devrant.com', 'diigo': 'diigo.com', 'discord': 'discord.com', 'docker': 'docker.com', 'dominosfr': 'dominos.fr', 'ebay': 'ebay.com', 'ello': 'ello.co', 'envato': 'envato.com', 'eventbrite': 'eventbrite.com', 'evernote': 'evernote.com', 'fanpop': 'fanpop.com', 'firefox': 'firefox.com', 'flickr': 'flickr.com', 'freelancer': 'freelancer.com', 'freiberg': 'drachenhort.user.stunet.tu-freiberg.de', 'garmin': 'garmin.com', 'github': 'github.com', 'google': 'google.com', 'gravatar': 'gravatar.com', 'imgur': 'imgur.com', 'instagram': 'instagram.com', 'issuu': 'issuu.com', 'koditv': 'forum.kodi.tv', 'komoot': 'komoot.com', 'laposte': 'laposte.fr', 'lastfm': 'last.fm', 'lastpass': 'lastpass.com', 'mail_ru': 'mail.ru', 'mybb': 'community.mybb.com', 'myspace': 'myspace.com', 'nattyornot': 'nattyornotforum.nattyornot.com', 'naturabuy': 'naturabuy.fr', 'ndemiccreations': 'forum.ndemiccreations.com', 'nextpvr': 'forums.nextpvr.com', 'nike': 'nike.com', 'odampublishing': 'forum.odampublishing.com', 'odnoklassniki': 'ok.ru', 'office365': 'office365.com', 'onlinesequencer': 'onlinesequencer.net', 'parler': 'parler.com', 'patreon': 'patreon.com', 'pinterest': 'pinterest.com', 'plurk': 'plurk.com', 'pornhub': 'pornhub.com', 'protonmail': 'protonmail.ch', 'quora': 'quora.com', 'raidforums': 'raidforums.com', 'rambler': 'rambler.ru', 'redtube': 'redtube.com', 'replit': 'replit.com', 'rocketreach': 'rocketreach.co', 'samsung': 'samsung.com', 'seoclerks': 'seoclerks.com', 'sevencups': '7cups.com', 'smule': 'smule.com', 'snapchat': 'snapchat.com', 'soundcloud': 'soundcloud.com', 'sporcle': 'sporcle.com', 'spotify': 'spotify.com', 'strava': 'strava.com', 'taringa': 'taringa.net', 'teamtreehouse': 'teamtreehouse.com', 'tellonym': 'tellonym.me', 'thecardboard': 'thecardboard.org', 'therianguide': 'forums.therian-guide.com', 'thevapingforum': 'thevapingforum.com', 'treasureclassifieds': 'forum.treasureclassifieds.com', 'tumblr': 'tumblr.com', 'tunefind': 'tunefind.com', 'twitter': 'twitter.com', 'venmo': 'venmo.com', 'vivino': 'vivino.com', 'voxmedia': 'voxmedia.com', 'vrbo': 'vrbo.com', 'vsco': 'vsco.co', 'wattpad': 'wattpad.com', 'wordpress': 'wordpress.com', 'xing': 'xing.com', 'xnxx': 'xnxx.com', 'xvideos': 'xvideos.com', 'yahoo': 'yahoo.com','hubspot': 'hubspot.com', 'pipedrive': 'pipedrive.com', 'insightly': 'insightly.com', 'nutshell': 'nutshell.com', 'zoho': 'zoho.com', 'axonaut': 'axonaut.com', 'amocrm': 'amocrm.com', 'nimble': 'nimble.com', 'nocrm': 'nocrm.io', 'teamleader': 'teamleader.eu'}
try:
await module(email, client, out)
except :
except Exception:
name=str(module).split('<function ')[1].split(' ')[0]
out.append({"name": name,"domain":data[name],
"rateLimit": True,

View File

@ -22,7 +22,7 @@ async def atlassian(email, client, out):
r = await client.get("https://id.atlassian.com/login", headers=headers)
data = {'csrfToken': r.text.split('{&quot;csrfToken&quot;:&quot;')[
1].split('&quot')[0], 'username': email}
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -34,7 +34,7 @@ async def gravatar(email, client, out):
"phoneNumber": None,
"others": others})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -49,7 +49,7 @@ async def voxmedia(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -31,7 +31,7 @@ async def wordpress(email, client, out):
}
try:
response = await client.get('https://public-api.wordpress.com/rest/v1.1/users/' + email + '/auth-options', headers=headers, params=params, cookies=cookies)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -11,7 +11,7 @@ async def aboutme(email, client, out):
try:
reqToken = await client.get("https://about.me/signup", headers={'User-Agent': random.choice(
ua["browsers"]["firefox"])})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -21,7 +21,7 @@ async def babeshows(email, client, out):
}
try:
r = await client.get("https://www.babeshows.co.uk/member.php", headers=headers)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def babeshows(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -58,7 +58,7 @@ async def babeshows(email, client, out):
return None
try:
response = await client.post('https://www.babeshows.co.uk/xmlhttp.php', headers=headers, params=params, data=data)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -21,7 +21,7 @@ async def badeggsonline(email, client, out):
}
try:
r = await client.get("https://www.badeggsonline.com/beo2-forum/member.php", headers=headers)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def badeggsonline(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -58,7 +58,7 @@ async def badeggsonline(email, client, out):
return None
try:
response = await client.post('https://www.badeggsonline.com/beo2-forum/xmlhttp.php', headers=headers, params=params, data=data)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def biosmods(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -49,7 +49,7 @@ async def biosmods(email, client, out):
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
response = await client.post('https://bios-mods.com/forum/xmlhttp.php', headers=headers, params=params, data=data)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -21,7 +21,7 @@ async def biotechnologyforums(email, client, out):
}
try:
r = await client.get("https://biotechnologyforums.com/member.php", headers=headers)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -49,7 +49,7 @@ async def biotechnologyforums(email, client, out):
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
response = await client.post('https://biotechnologyforums.com/xmlhttp.php', headers=headers, params=params, data=data)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def blackworldforum(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def blackworldforum(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def blitzortung(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def blitzortung(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def bluegrassrivals(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -47,7 +47,7 @@ async def bluegrassrivals(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def cambridgemt(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def cambridgemt(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def chinaphonearena(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def chinaphonearena(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def clashfarmer(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def clashfarmer(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def codeigniter(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def codeigniter(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def cpaelites(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def cpaelites(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def cpahero(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def cpahero(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -64,7 +64,7 @@ async def cracked_to(email, client, out):
"phoneNumber": None,
"others": None})
except:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def demonforums(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -49,7 +49,7 @@ async def demonforums(email, client, out):
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
response = await client.post('https://demonforums.net/xmlhttp.php', headers=headers, params=params, data=data)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -30,7 +30,7 @@ async def freiberg(email, client, out):
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -49,7 +49,7 @@ async def freiberg(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def koditv(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def koditv(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def mybb(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def mybb(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def nattyornot(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def nattyornot(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -58,7 +58,7 @@ async def nattyornot(email, client, out):
return None
try:
response = await client.post('https://nattyornotforum.nattyornot.com/xmlhttp.php', headers=headers, params=params, data=data)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def ndemiccreations(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def ndemiccreations(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def nextpvr(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def nextpvr(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def odampublishing(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def odampublishing(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def onlinesequencer(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -47,7 +47,7 @@ async def onlinesequencer(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -57,7 +57,7 @@ async def onlinesequencer(email, client, out):
return None
try:
response = await client.post('https://onlinesequencer.net/forum/xmlhttp.php', headers=headers, params=params, data=data)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def raidforums(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -21,7 +21,7 @@ async def thecardboard(email, client, out):
}
try:
r = await client.get("https://thecardboard.org/board/member.php", headers=headers)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -47,7 +47,7 @@ async def thecardboard(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -57,7 +57,7 @@ async def thecardboard(email, client, out):
return None
try:
response = await client.post('https://thecardboard.org/board/xmlhttp.php', headers=headers, params=params, data=data)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def therianguide(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def therianguide(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def thevapingforum(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -48,7 +48,7 @@ async def thevapingforum(email, client, out):
'email': email,
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def treasureclassifieds(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -49,7 +49,7 @@ async def treasureclassifieds(email, client, out):
'my_post_key': r.text.split('var my_post_key = "')[1].split('"')[0]
}
response = await client.post('https://forum.treasureclassifieds.com/xmlhttp.php', headers=headers, params=params, data=data)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -40,7 +40,7 @@ async def coroflot(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -46,7 +46,7 @@ async def freelancer(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -24,7 +24,7 @@ async def seoclerks(email, client, out):
token = r.text.split('token" value="')[1].split('"')[0]
if "__cr" in r.text:
cr = r.text.split('__cr" value="')[1].split('"')[0]
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -18,7 +18,7 @@ async def diigo(email, client, out):
}
try:
await client.get("https://www.diigo.com/sign-up?plan=free", headers=headers)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -33,7 +33,7 @@ async def diigo(email, client, out):
}
try:
response = await client.get('https://www.diigo.com/user_mana2/check_email', headers=headers, params=params)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -22,7 +22,7 @@ async def quora(email, client, out):
r = await client.get("https://fr.quora.com", headers=headers)
revision = r.text.split('revision": "')[1].split('"')[0]
formkey = r.text.split('formkey": "')[1].split('"')[0]
except:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -54,7 +54,7 @@ async def quora(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -28,7 +28,7 @@ async def google(email, client, out):
try:
freq = req.text.split('quot;,null,null,null,&quot;')[
1].split('&quot')[0]
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -31,7 +31,7 @@ async def laposte(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -28,7 +28,7 @@ async def mail_ru(email, client, out):
'https://account.mail.ru/api/v1/user/password/restore',
headers=headers,
data=data)
except:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -56,7 +56,7 @@ async def mail_ru(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -24,10 +24,10 @@ async def protonmail(email, client, out):
regexPattern3 = "22::(.*)::" #X25519 (Modern, fastest, secure)
try:
timestamp = int(re.search(regexPattern1, response.text).group(1))
except:
except Exception:
try:
timestamp = int(re.search(regexPattern2, response.text).group(1))
except :
except Exception:
timestamp = int(re.search(regexPattern3, response.text).group(1))
dtObject = datetime.fromtimestamp(timestamp)
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
@ -43,7 +43,7 @@ async def protonmail(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -89,7 +89,7 @@ async def yahoo(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -52,7 +52,7 @@ async def ello(email, client, out):
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -20,7 +20,7 @@ async def flickr(email, client, out):
}
try:
response = await client.get(url + "?email=" + str(email), headers=headers)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -36,7 +36,7 @@ async def komoot(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -40,7 +40,7 @@ async def rambler(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -34,7 +34,7 @@ async def caringbridge(email, client, out):
}
try:
response = await client.post('https://www.caringbridge.org/signin', headers=headers, cookies=cookies, data=data, timeout=3)
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -48,7 +48,7 @@ async def blip(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": False,
"exists": False,

View File

@ -11,7 +11,7 @@ async def lastfm(email, client, out):
try:
req = await client.get("https://www.last.fm/join")
token = req.cookies["csrftoken"]
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -30,7 +30,7 @@ async def lastfm(email, client, out):
try:
check = await client.post("https://www.last.fm/join/partial/validate", headers=headers, data=data)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -24,7 +24,7 @@ async def smule(email, client, out):
r.text.split(
'authenticity_token" name="csrf-param" />\n<meta content="')
[1]).split('"')[0]
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -46,7 +46,7 @@ async def spotify(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": None,

View File

@ -19,7 +19,7 @@ async def tunefind(email, client, out):
r = await client.get("https://www.tunefind.com/user/join", headers=headers)
try:
crsf_token = r.text.split('"csrf-token" content="')[1].split('"')[0]
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -19,7 +19,7 @@ async def rocketreach(email, client, out):
}
try:
r = await client.get('https://rocketreach.co/v1/validateEmail?email_address='+email, headers=headers)
except:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -22,7 +22,7 @@ async def venmo(email, client, out):
await client.get("https://venmo.com/signup/email", headers=headers)
try:
headers["device-id"] = s.cookies["v_id"]
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -18,7 +18,7 @@ async def pornhub(email, client, out):
}
try:
req = await client.get("https://www.pornhub.com/signup", headers=headers)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -29,7 +29,7 @@ async def pornhub(email, client, out):
soup = BeautifulSoup(req.content, features="html.parser")
try:
toe = soup.find(attrs={"name": "token"}).get("value")
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -67,7 +67,7 @@ async def pornhub(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -30,7 +30,7 @@ async def redtube(email, client, out):
"phoneNumber": None,
"others": None})
return None
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -21,7 +21,7 @@ async def xvideos(email, client, out):
}
try:
response = await client.get('https://www.xvideos.com/account/checkemail', headers=headers, params=params)
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -44,7 +44,7 @@ async def xvideos(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -24,7 +24,7 @@ async def eventbrite(email, client, out):
req = await client.get("https://www.eventbrite.com/signin/?referrer=%2F", headers=headers)
csrf_token = req.cookies["csrftoken"]
except:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -62,7 +62,7 @@ async def eventbrite(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -60,7 +60,7 @@ async def nike(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -26,7 +26,7 @@ async def codecademy(email, client, out):
try:
headers["X-CSRF-Token"] = soup.find(
attrs={"name": "csrf-token"}).get("content")
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -27,7 +27,7 @@ async def codepen(email, client, out):
soup = BeautifulSoup(req.content, features="html.parser")
token = soup.find(attrs={"name": "csrf-token"}).get("content")
headers["X-CSRF-Token"] = token
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -31,7 +31,7 @@ async def devrant(email, client, out):
}
try:
response = await client.post('https://devrant.com/api/users', headers=headers, data=data)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -36,7 +36,7 @@ async def replit(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -27,7 +27,7 @@ async def vrbo(email, client, out):
headers=headers,
data=data)
response = response.json()
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -32,7 +32,7 @@ async def amazon(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -58,7 +58,7 @@ async def garmin(email, client, out):
try:
req = await client.get('https://sso.garmin.com/sso/createNewAccount', headers=headers, params=params)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -68,7 +68,7 @@ async def garmin(email, client, out):
return None
try:
token = req.text.split('"token": "')[1].split('"')[0]
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -44,7 +44,7 @@ async def naturabuy(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -49,7 +49,7 @@ async def vivino(email, client, out):
"phoneNumber": None,
"others": None})
except:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -41,7 +41,7 @@ async def bitmoji(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -20,7 +20,7 @@ async def crevado(email, client, out):
}
try:
req = await client.get("https://crevado.com")
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -71,7 +71,7 @@ async def crevado(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -49,7 +49,7 @@ async def discord(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -70,7 +70,7 @@ async def discord(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -20,7 +20,7 @@ async def instagram(email, client, out):
try:
freq = await client.get("https://www.instagram.com/accounts/emailsignup/", headers=headers)
token = freq.text.split('{"config":{"csrf_token":"')[1].split('"')[0]
except:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -19,7 +19,7 @@ async def myspace(email, client, out):
}
try:
r = await client.get("https://myspace.com/signup/email", headers=headers,timeout=2)
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -31,7 +31,7 @@ async def myspace(email, client, out):
try:
headers['Hash'] = r.text.split('<input name="csrf" type="hidden" value="')[
1].split('"')[0]
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -61,7 +61,7 @@ async def myspace(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -80,7 +80,7 @@ async def odnoklassniki(email, client, out):
"phoneNumber": None,
"others": None})
return None
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -32,7 +32,7 @@ async def parler(email, client, out):
',"password":"invalidpasswordfortest","deviceId":"' + get_random_string(16) + '"}'
try:
response = await client.post(url, data=data, headers=headers)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -41,7 +41,7 @@ async def patreon(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -41,7 +41,7 @@ async def snapchat(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -21,7 +21,7 @@ async def strava(email, client, out):
try:
headers['X-CSRF-Token'] = r.text.split(
'<meta name="csrf-token" content="')[1].split('"')[0]
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -42,7 +42,7 @@ async def tellonym(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -90,8 +90,8 @@ async def tumblr(email, client, out):
else: #429 {"meta":{"status":429,"msg":"Limit Exceeded"},"response":[]}
raise Exception("xc")
except:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -27,7 +27,7 @@ async def twitter(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -37,7 +37,7 @@ async def vsco(email, client, out):
"phoneNumber": None,
"others": None})
return()
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -19,7 +19,7 @@ async def wattpad(email, client, out):
try:
await client.get("https://www.wattpad.com", headers=headers)
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -18,7 +18,7 @@ async def xing(email, client, out):
}
try:
response = await client.get("https://www.xing.com/start/signup?registration=1", headers=headers)
except :
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -57,7 +57,7 @@ async def xing(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -49,7 +49,7 @@ async def adobe(email, client, out):
"emailrecovery": response['secondaryEmail'],
"phoneNumber": response['securityPhoneNumber'],
"others": None})
except:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -39,7 +39,7 @@ async def issuu(email, client, out):
"emailrecovery": None,
"phoneNumber": None,
"others": None})
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,

View File

@ -29,7 +29,7 @@ async def blablacar(email, client, out):
headers=headers)
appToken = appToken.text.split(',"appToken":"')[1].split('"')[0]
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,
@ -43,7 +43,7 @@ async def blablacar(email, client, out):
}
try:
headers["Authorization"] = 'Bearer ' + appToken
except BaseException:
except Exception:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": True,
"exists": False,