What's new
Runion

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

(Question) Holehe tool

jfc

Light Weight
Депозит
$0
Does anyone know how the script proceeds to check when a given email address is linked to a gmail account?.
Tks ia.
 
"Holehe checks if an email is attached to an account on sites like twitter, instagram, imgur and more than 120 others. Retrieves information using the forgotten password function. Does not alert the target email. Runs on Python 3. Installation With PyPI pip3 install holehe With Github"

dunno how it "does not alert the target" when it uses "forgotten password function" anyways the description is on holehe github
 
g4j сказал(а):
"Holehe checks if an email is attached to an account on sites like twitter, instagram, imgur and more than 120 others. Retrieves information using the forgotten password function. Does not alert the target email. Runs on Python 3. Installation With PyPI pip3 install holehe With Github"

dunno how it "does not alert the target" when it uses "forgotten password function" anyways the description is on holehe github

I have it installed and I have tested it, but I have this doubt about how it performs this check. Also whether it is prone to give false positives.
 
g4j сказал(а):
"Holehe checks if an email is attached to an account on sites like twitter, instagram, imgur and more than 120 others. Retrieves information using the forgotten password function. Does not alert the target email. Runs on Python 3. Installation With PyPI pip3 install holehe With Github"

dunno how it "does not alert the target" when it uses "forgotten password function" anyways the description is on holehe github

could be the signup function? most sites will tell you if a email is already registered but not alter the owner on signup.
 
lapdance сказал(а):
could be the signup function? most sites will tell you if a email is already registered but not alter the owner on signup.


But it says it uses pass reset function. Anyways yeah that's also option
 
g4j сказал(а):
But it says it uses pass reset function. Anyways yeah that's also option
looks like it uses both. will depend on how the site it checks functions


Код:
Скопировать в буфер обмена
response = await client.post('https://www.freelancer.com/api/users/0.1/users/check?compact=true&new_errors=true', data=data, headers=headers)
resData = response.json()
if response.status_code == 409 and "EMAIL_ALREADY_IN_USE" in response.text:
out.append({"name": name,"domain":domain,"method":method,"frequent_rate_limit":frequent_rate_limit,
"rateLimit": False,
"exists": True,
"emailrecovery": None,
"phoneNumber": None,
"others": None})
 
Top