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
git clone https://github.com/megadose/holehe.git
cd holehe/
python3 setup.py install
With Docker
docker build . -t my-holehe-image
docker run my-holehe-image holehe test@gmail.com
Quick Start
Holehe can be run from the CLI and rapidly embedded within existing python applications.
CLI Example
holehe test@gmail.com
Python Example
import trio
import httpx
from holehe.modules.social_media.snapchat import snapchat
async def main():
email = "test@gmail.com"
out = []
client = httpx.AsyncClient()
await snapchat(email, client, out)
print(out)
await client.aclose()
trio.run(main)
For more information click here.