TERMUX COMMANDD
25.5K subscribers
551 photos
80 videos
10 files
156 links
🥇THIS IS THE TOP TERMUX CHANNEL ON TELEGRAM WITH 1000+ TOOLS🪩

🚪HOUSE OF PENTESTER

©ALL CONTENT PROVIDED BY THIS CHANNEL IS MEANT FOR EDUCATIONAL PURPOSES ONLY🔺


ADS - @MARONADS
Download Telegram
Micro is a modern, lightweight, and easy-to-use text editor for Termux.
It is much simpler than Vim and more powerful than Nano.


pkg update -y && pkg upgrade -y
pkg install micro -y
echo "Micro installed successfully!"

🎯 Basic Usage

Open a file:

micro filename.txt

Save:

CTRL + S

Exit:

CTRL + Q

⚠️ For more information and use of this tool in termux visit github link of this tool.
👨‍💻  @TERMUXCOMMANDD
9
How data flows through the OSI Model layers
3
Modem vs. Router
16
LINUX KNOWLEDGE CHECKPOINT

A Linux server is running out of disk space. You want to quickly identify which directories are using the most storage inside /var. Which command is the BEST choice?
Anonymous Poll
35%
A. df -h /var
26%
B. ls -lh /var
29%
C. du -h --max-depth=1 /var
10%
D. free -h
👍65
This media is not supported in your browser
VIEW IN TELEGRAM
Embedding a tracker into an image. Be careful when you open images.
Share to help others!!!
🥰94😍2
What is a REST API?
10
This repo gives you access to MANY advanced tools (Ghidra, Burp, Hydra, SQLMap, etc.)

pkg update -y
pkg install wget -y
wget https://raw.githubusercontent.com/termuxvoid/repo/main/install.sh
chmod +x install.sh
./install.sh

After that, you can install tools like:

pkg install hydra
pkg install sqlmap
pkg install ghidra
pkg install burpsuite

⚠️ For more information and use of this tool in termux visit github link of this tool.
👨‍💻  @TERMUXCOMMANDD
13
Bash scripting parameter expansion
13
Penetration Testing Tools
👍186
Top 20 System Design Concepts You Should Know
8👍1
Virtualization Explained: From Bare Metal to Hosted Hypervisors
10👨‍💻1
fzf lets you instantly search anything on your phone using fuzzy search.
You can find files, folders, commands, history, scripts super fast.
It works inside any command.

Example:
Type this and instantly filter results while typing:

ls | fzf

pkg update -y && pkg upgrade -y
pkg install fzf -y
echo "fzf installed successfully!
13🥰2
Database Types You Should Know in 2025

There’s no such thing as a one-size-fits-all database anymore. Modern applications rely on multiple database types, from real-time analytics to vector search for AI. Knowing which type to use can make or break your system’s performance.
5
Long polling vs short polling vs SSE vs WebSocket
5
What kind of Termux tools do you want? 🤔

Comment below 👇

New tools dropping soon—let’s hit 500 likes 👍 on this post! 🔥
👍33💯97👌1
WebSift is an OSINT tool that quickly extracts public emails, phone numbers, social links, and URLs from websites — perfect for ethical research and investigations.

⚠️ Caution: Use only for legal, authorized purposes. Unauthorized scraping is illegal.

GitHub:
https://github.com/s-r-e-e-r-a-j/WebSift
12
What’s wrong with this code???

A. The loop skips the last element in the list

B. The division should use len(nums) - 1

C. The function should return an integer

D. The print statement is written incorrectly
12👍9👌1
4 types of DNS ATTACKS
12
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.

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
SSH Server hardening checklist
5