Information Gathering

Mr.Holmes – A Comprehensive Guide To Installing And Using The OSINT Tool

Mr.Holmes is an OSINT (Open Source Intelligence) tool designed to gather valuable information from public sources available on the internet. It primarily helps with information collection about domains, usernames, and phone numbers. Additionally, it leverages Google Dorks for specific research queries, making it a powerful tool for information gathering.

Mr.Holmes also ensures privacy by using proxies to anonymize your requests, and it integrates a WhoIS API to fetch detailed data about domains.

DISCLAIMER

This tool may not be 100% accurate and might occasionally fail. It is built for educational and research purposes only. The developer is not responsible for any misuse of this tool.

Installation Instructions

For Linux/Mac:

  1. Clone the repository:
git clone https://github.com/Lucksi/Mr.Holmes
cd Mr.Holmes
  1. Update system packages:
sudo apt-get update
  1. Grant execute permissions and run the installation script:
sudo chmod +x install.sh
sudo bash install.sh

For Linux/Mac (Virtual Environment Method):

If you encounter issues during Python library installation, use this method:

  1. Clone the repository:
git clone https://github.com/Lucksi/Mr.Holmes
cd Mr.Holmes
  1. Update system packages:
sudo apt-get update
  1. Set up a virtual environment:
python3 -m venv .lib_venv
  1. Grant execute permissions and install dependencies:
sudo chmod +x install.sh
sudo bash install.sh
  1. Activate the virtual environment and install requirements:
source .lib_venv/bin/activate
pip3 install -r requirements.txt
  1. Run the tool:
python3 MrHolmes.py

For Windows (Method 1):

  1. Clone the repository:
git clone https://github.com/Lucksi/Mr.Holmes
cd Mr.Holmes
  1. Run the installation script:
Install.cmd

For more detailed information, visit the official GitHub page.

Key Features of Mr.Holmes:

  • Google Dorks Integration: Uses powerful Google Dorks for targeted research.
  • Proxy Support: Ensures anonymity by routing requests through proxies.
  • WhoIS Integration: Fetches detailed domain information via the WhoIS API.

Mr.Holmes is a versatile tool that helps in gathering essential OSINT data for security assessments or investigative purposes. Whether you’re performing domain lookups, username checks, or phone number research, this tool provides a comprehensive set of features for data collection.

For further updates, troubleshooting, and feature additions, always check the official repository and documentation.

0xSnow

0xSnow is a cybersecurity researcher with a focus on both offensive and defensive security. Working with ethical hacking, threat detection, Linux tools, and adversary simulation, 0xSnow explores vulnerabilities, attack chains, and mitigation strategies. Passionate about OSINT, malware analysis, and red/blue team tactics, 0xSnow shares detailed research, technical walkthroughs, and security tool insights to support the infosec community.

Recent Posts

Bash Scripting Best Practices Every Beginner Should Know

Introduction Bash scripting is a powerful way to automate Linux tasks, but writing a script…

12 hours ago

How To Create A Self-Signed SSL Certificate Using Bash And OpenSSL

Introduction A self-signed SSL certificate is a certificate that is created and signed by the…

13 hours ago

How To Debug Bash Scripts Using bash -x And set Commands

Introduction Debugging is an important part of Bash scripting. When a script does not work…

17 hours ago

How To Use Cron Jobs With Bash Scripts For Automation

Introduction Cron jobs are used in Linux to run commands or Bash scripts automatically at…

18 hours ago

How To Use Pipes In Bash Scripts For Command Chaining

Introduction Pipes are an important feature in Linux and Bash scripting. A pipe allows you…

19 hours ago

How To Use grep, awk, And sed In Bash Scripts

Introduction The grep, awk, and sed commands are powerful text-processing tools in Linux. They are…

20 hours ago