Find All Accounts Connected to Any Email Using Holehe

Words
227
Reading
2 min
Listen
Play
3h

This blog is very informative for everyone. In this blog, I am going to show you how you can find out how many accounts or applications are connected to your email. Hackers mostly use this tool to find connected accounts to your email to hack your account passwords. Holehe is a free open-source GitHub tool that runs on a Linux script.

Let's know how we can download and run it on our Linux system.

  1. Open your Linux terminal and update and upgrade your system by following the command.

    sudo apt update && sudo apt upgrade -y
    
  2. Install Python and its dependencies.

    sudo apt install python3 python3-pip -y
    
  3. Create a directory called "holehe"

    mkdir holehe
    
  4. Go to the directory.

    cd holehe
    
  5. Now create a virtual environment with Python.

    python3 -m venv venv
    
  6. Now activate it.

    source venv/bin/activate
    
  7. Now install the Holehe tool.

    pip install holehe
    

    It will take a few seconds for the installation.

  8. Now time to find connected accounts with your email.

holehe youremail@gmail.com
  1. You will get all results connected to all applications with your email.

    1. If you want it in a text file, follow the script. I am creating a file named result; you can set the name as you want.

      holehe youremail@gmail.com > result.text
      

      It will save it in the home directory in the holehe folder.

      That's all. If you get any error or issue while installing it, feel free to reply in the comment section, or you can also watch the video tutorial which was already uploaded on YouTube.

Find All Accounts Connected to Any Email Using Holehe | Ecency