RedGhost is an OSINT tool for Telegram that helps you:
β Check what info is publicly available on a Telegram account
β Analyze username, profile photo, bio, last seen, etc.
β Collect open-source metadata
β Learn about Telegram privacy and digital footprints
β Reduce tracing mistakes in OSINT investigations
It does not bypass privacy, does not hack, and works only on public data.
β Check what info is publicly available on a Telegram account
β Analyze username, profile photo, bio, last seen, etc.
β Collect open-source metadata
β Learn about Telegram privacy and digital footprints
β Reduce tracing mistakes in OSINT investigations
It does not bypass privacy, does not hack, and works only on public data.
Very useful for learning OSINT, privacy awareness, cyber forensics, and for educational use
pkg update -y && pkg upgrade -y
pkg install python git -y
pip install --upgrade pip
git clone https://github.com/RedGhostProject/RedGhost.git
cd RedGhost
pip install -r requirements.txt
python3 redghost.py
β οΈ IMPORTANT
For Telegram OSINT tools:
Sometimes you need a Telegram API ID & API Hash (free and safe from my.telegram.org).
If the tool asks, create them β it's easy.
Bash
cat << 'EOF' > redghost_install.sh
#!/bin/bash
echo "====================================="
echo " RedGhost OSINT Installer"
echo "====================================="
# Update system
echo "[+] Updating Termux packages..."
pkg update -y && pkg upgrade -y
# Install dependencies
echo "[+] Installing Python & Git..."
pkg install python git -y
pip install --upgrade pip
# Clone RedGhost
echo "[+] Downloading RedGhost from GitHub..."
rm -rf RedGhost
git clone https://github.com/RedGhostProject/RedGhost.git
# Enter directory
cd RedGhost || exit
# Install Python modules
echo "[+] Installing Python requirements..."
pip install -r requirements.txt
echo "====================================="
echo " Installation Finished Successfully!"
echo " To run RedGhost:"
echo " cd RedGhost"
echo " python3 redghost.py"
echo "====================================="
EOF
chmod +x redghost_install.sh
bash redghost_install.sh
cd RedGhost
python3 redghost.py
β οΈFor more information and use of this tool in termux visit github link of this tool.
π¨βπ» @TERMUXCOMMANDD
β€18π7π1π―1
PassiveRecon is a rare OSINT recon tool that collects public information only β no attacks, no scanning.
Used for learning recon, bug bounty basics, and OSINT mindset.
Used for learning recon, bug bounty basics, and OSINT mindset.
pkg update -y && pkg install git python -y
git clone https://github.com/screetsec/PassiveRecon.git
cd PassiveRecon
pip install -r requirements.txt
python3 passiverecon.py
β οΈFor more information and use of this tool in termux visit github link of this tool.
π¨βπ» @TERMUXCOMMANDD
β€11π2
This media is not supported in your browser
VIEW IN TELEGRAM
Linux directory explained
β€12π₯°3π2
Amass is an advanced OSINT & subdomain enumeration tool. It discovers hidden assets of a target using DNS records, certificates, search engines, and public databases. Widely used in bug bounty and professional recon.
pkg update && pkg upgrade -y
pkg install git golang -y
go install -v github.com/owasp-amass/amass/v4/...@latest
echo 'export PATH=$PATH:$HOME/go/bin' >> ~/.bashrc
source ~/.bashrc
Verify installation:
amass -version
Basic command:
amass enum -d example.com
β οΈFor more information and use of this tool in termux visit github link of this tool.
π¨βπ» @TERMUXCOMMANDD
β€17π14
More likes π mean more reach. Support us by hitting like and sharing with your friends β it inspires us to bring you even more free content. Thanks for the love!
β€15
This tool lets you monitor, restart, and protect any process automatically.
Hackers, sysadmins, and red-teamers use it to keep critical scripts alive even after crashes or kills.
Hackers, sysadmins, and red-teamers use it to keep critical scripts alive even after crashes or kills.
pkg update && pkg upgrade -y
pkg install git python -y
git clone https://github.com/godmode0x/watchdog.git
cd watchdog
pip install -r requirements.txt
π Usage Example
Protect a script:
python watchdog.py --cmd "python bot.py"
Run in background:
nohup python watchdog.py --cmd "bash script.sh" &
β οΈFor more information and use of this tool in termux visit github link of this tool.
π¨βπ» @TERMUXCOMMANDD
β€17π1