TERMUX COMMANDD
25.5K subscribers
552 photos
80 videos
10 files
158 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
Mac Address vs IP Address
7
Active Directory Tools
13
email address OSINT
14💯4
SuperTree is a fast and powerful command-line tool like GNU Tree. It shows the directory structure of files and folders in a beautiful tree format.

pkg install clang make -y

git clone https://github.com/s-r-e-e-r-a-j/SuperTree.git

cd SuperTree

make

Install on your system

Move the binary to $PREFIX/bin:

mv supertree $PREFIX/bin/
Now you can use it in Termux:

supertree

Usage

# supertree without any arguments will print the structure of the current working directory
supertree

# supertree with options and directory/path
supertree [options] [directory]

⚠️ For more information and use of this tool in termux visit github link of this tool.
👨‍💻  @TERMUXCOMMANDD
10🥰2😍1
Popular Backend Tech Stack.

You do not need everything. Choose whatever tech or tools work best for you.
7
Person Attack OSINT
6💯2
Defensive Linux Security Tools
7
Cyber Roadmap
8👨‍💻3
TheFuck
Fixes your wrong terminal commands automatically.
Type a wrong command → then type fuck → it corrects it.

Example:
apt-get istall python fuck
Corrects to:
apt-get install python


pkg update pkg install python pip install thefuck

echo 'eval $(thefuck --alias fuck)' >> ~/.bashrc source ~/.bashrc

source ~/.bashrc

Done! Now try any wrong command and type fuck to fix it.
17🥰3👨‍💻3😍2💯1
Nethogs shows which apps/processes use your internet and how much bandwidth they consume.

(Nethogs needs root or Magisk to access interfaces fully.)

pkg update && pkg upgrade
pkg install git clang make ncurses-utils
git clone https://github.com/raboof/nethogs
cd nethogs
make
make install

sudo nethogs

⚠️ For more information and use of this tool in termux visit github link of this tool.
👨‍💻  @TERMUXCOMMANDD
10👍4💯1
Anatomy of URL
9
TERMUX COMMANDD
👨‍💻Learn Programming the Smart Way — One Guide for Everything 💻This ebook gives you a complete, organized collection of the best playlists to learn every major programming language and tech skill. No more searching for tutorials — everything is structured…
🛒🛍Black Friday Offer — Only for the Next 20 Buyers!😮

We’re running an exclusive Black Friday sale for our complete Termux Coding Pack:
👉 Original Price: $29
👉 Now: Only $9.99 (Over 66% OFF💵)

🤓This pack includes carefully-prepared video lists covering C, C++, Python, JavaScript, Java, C#, PHP, Go, Swift, Kotlin, Dart, Ruby, Rust, TypeScript, and R.
😒We spent countless hours creating these resources so you can learn to code and build a better future.


🛍 Limited to the first 20 people only — once a year sale.
Grab it here before it’s gone:
🔤 mrcodee.gumroad.com/l/termuxcommand

Sale will be end in 🕓 48 hours
Please open Telegram to view this post
VIEW IN TELEGRAM
7
TERMUX COMMANDD pinned «🛒🛍Black Friday Offer — Only for the Next 20 Buyers!😮 We’re running an exclusive Black Friday sale for our complete Termux Coding Pack: 👉 Original Price: $29 👉 Now: Only $9.99 (Over 66% OFF💵) 🤓This pack includes carefully-prepared video lists covering C,…»
Network Troubleshooting On Linux
10
Database Types
👍12
Netcat is one of the most powerful tools for learning networking.
You can use it to create servers, send data, test ports, etc. (all legal uses).

pkg install netcat-openbsd -y

Check if a port is open on your own device/network

nc -vz 192.168.1.1 22

Create a simple listener (server)

nc -lvp 4444

Connect to that listener from another device

nc 192.168.1.5 4444

Send a file over local network

Receiver:

nc -lvp 5555 > receivedfile.txt

Sender:

nc 192.168.1.5 5555 < file.txt

⚠️ For more information and use of this tool in termux visit github link of this tool.
👨‍💻  @TERMUXCOMMANDD
11😍1
OSI MODEL
7
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