Holehe checks if an email is attached to an account on sites like twitter, instagram, imgur and more than 120 others.
pip3 install holehe
git clone https://github.com/megadose/holehe.git
cd holehe/
python3 setup.py install
docker build . -t my-holehe-image
docker run my-holehe-image holehe test@gmail.com
Holehe can be run from the CLI and rapidly embedded within existing python applications.
holehe test@gmail.com
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.
Nixpacks is an innovative tool designed to simplify the process of building and deploying applications…
LabSync is an innovative tool designed to enhance collaboration and efficiency in various laboratory and…
Rig is a cutting-edge Rust library designed to facilitate the development of scalable, modular, and…
CVE-2024-55591 is a critical authentication bypass vulnerability affecting Fortinet's FortiOS and FortiProxy systems. This flaw,…
The Draugr toolset provides a robust framework for performing synthetic stack frame manipulation, primarily designed…
The "Awesome-Red-Team-Operation" repository is a comprehensive collection of tools designed to support red team operations,…