Posts

Showing posts from January, 2026

GhostTrack GitHub Tool Installation Step-by-Step (Beginner Tutorial)

GhostTrack GitHub Tool Installation Step-by-Step (Beginner Tutorial) 🧠 What is GhostTrack? GhostTrack is an open-source tracking tool for gathering information like IP, location, phone, and username data via various OSINT methods. It’s popular for security research and ethical hacking learning — but you must only run it on systems you own or with explicit permission .  🛠️ Prerequisites Before installing GhostTrack, make sure you have: Git (to clone the repository) Python 3 (required to run the tool) A Linux computer or Termux (Android) (Termux is a terminal app that lets you run Linux packages on Android).   📦 Step-by-Step Installation (Linux / Debian) Update & install basics sudo apt update && sudo apt upgrade sudo apt install git python3 python3-pip -y Clone GhostTrack git clone https://github.com/HunxByts/GhostTrack.git Enter the directory cd GhostTrack Install Python dependencies pip3 install -r requirements.txt Run the tool python3 GhostTR.py Once runni...

GhostTrack GitHub Tool Installation Step-by-Step (Beginner Tutorial)

GhostTrack GitHub Tool Installation Step-by-Step (Beginner Tutorial) 🧠 What is GhostTrack? GhostTrack is an open-source tracking tool for gathering information like IP, location, phone, and username data via various OSINT methods. It’s popular for security research and ethical hacking learning — but you must only run it on systems you own or with explicit permission .  🛠️ Prerequisites Before installing GhostTrack, make sure you have: Git (to clone the repository) Python 3 (required to run the tool) A Linux computer or Termux (Android) (Termux is a terminal app that lets you run Linux packages on Android).   📦 Step-by-Step Installation (Linux / Debian) Update & install basics sudo apt update && sudo apt upgrade sudo apt install git python3 python3-pip -y Clone GhostTrack git clone https://github.com/HunxByts/GhostTrack.git Enter the directory cd GhostTrack Install Python dependencies pip3 install -r requirements.txt Run the tool python3 GhostTR.py Once runni...

How to Download and Install Google Chrome in Kali Linux Using Terminal (Full Tutorial)

Image
How to Download and Install Google Chrome in Kali Linux Using Terminal (Full Tutorial) Google Chrome is one of the most popular web browsers, but it does not come pre-installed in Kali Linux because Kali focuses on open-source tools. Still, you can install Chrome easily using the terminal. In this tutorial, you’ll learn how to download and install Google Chrome in Kali Linux using only terminal commands . ⚠️ Important Note Google Chrome is not open-source , so it is not available in Kali’s default repositories . We will download it directly from Google and install it safely. 📌 Requirements Kali Linux (Any version) Internet connection Terminal access Root or sudo privileges Step 1: Update Kali Linux System Always update your system before installing new software. sudo apt update && sudo apt upgrade -y 📌 Why? This prevents dependency issues and ensures smooth installation. Step 2: Download Google Chrome (.deb package) Google Chrome for Linux comes as a .deb package . Run the...

Kali Linux Errors & Solutions: Complete Guide from Beginner to Advanced

Image
Kali Linux Errors & Solutions: Complete Guide from Beginner to Advanced Kali Linux is one of the most powerful operating systems for penetration testing and ethical hacking. However, beginners and even experienced users often face errors while installing tools, configuring networks, or running exploits. This blog post provides a complete, real-world guide to common Kali Linux errors , from basic system issues to advanced penetration testing problems, along with clear explanations and working solutions . Table of Contents Beginner-Level Kali Linux Errors Network & Wireless Errors Tool & Metasploit Errors Advanced System Errors Professional Debugging Checklist 1. Beginner-Level Kali Linux Errors Error 1: command not found Problem aircrack-ng: command not found Cause Tool is not installed Incorrect PATH configuration Solution sudo apt update sudo apt install aircrack-ng Verify installation: which aircrack-ng Error 2: Permission denied Problem ./script.sh Permission denied Caus...

How to Fix “ModuleNotFoundError: No module named ‘pdfkit’” in Mr. Holmes (Kali Linux)

Image
How to Fix “ModuleNotFoundError: No module named ‘pdfkit’” in Mr. Holmes (Kali Linux) Introduction Mr. Holmes is a popular OSINT (Open-Source Intelligence) tool used in ethical hacking and cybersecurity learning. However, many beginners face an error while running the tool on Kali Linux: ModuleNotFoundError: No module named 'pdfkit' This error can be confusing, especially for new users. In this article, you will learn why this error occurs and how to fix it step by step in a clean and safe way . Error Description When trying to run Mr. Holmes using the command: sudo python3 MrHolmes.py You may see the following traceback ending with: ModuleNotFoundError: No module named 'pdfkit' Some users also try to activate a virtual environment and get: source .lib_venv/bin/activate source: no such file or directory Why This Error Happens This issue usually occurs due to one or more of the following reasons: 1. Virtual Environment Was Not Created You attempted to activate a virtual...

Mr. Holmes OSINT Tool – Installation & Usage Guide (Educational Blog for Students)

Image
Mr. Holmes OSINT Tool – Installation & Usage Guide (Educational Blog for Students) 🔍 Introduction Mr. Holmes is an Open Source Intelligence (OSINT) framework designed to collect information from publicly available sources on the internet. It is mainly used for educational research, cybersecurity learning, and digital investigation studies . This blog is written only for students and learners who want to understand how OSINT tools work in real-world scenarios . ⚠️ Legal & Ethical Disclaimer (Must Read) ❗ Educational Use Only Mr. Holmes is created strictly for educational, research, and learning purposes . The tool is not 100% accurate and may sometimes fail Any data collected depends on publicly available sources The author of this blog does not encourage illegal activity Misuse of this tool may violate local cyber laws and privacy regulations ⚖️ Always follow your country’s cyber laws and ethical hacking guidelines. 🧠 What is Mr. Holmes? Mr. Holmes is an OSINT informatio...