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
HTML Tip πŸ’‘

You can use the accept attribute to specify the types of files accepted by the server (only for file type).

This is used with the <input> element.
❀7πŸ’―2
Cybersecurity Roles for different domains
2❀11
Bash Scripting Basics
❀12
❀6
Try these instead.
❀15
TERMUX COMMANDD pinned Deleted message
Amazon API Gateway: REST API request flow
❀11
This Termux chatbot has two modes:

Offline mode – simple rule-based chatbot (no internet).

API AI mode – smart chatbot using an AI API (internet required).


pkg update && pkg upgrade -y


pkg install python -y

1. Offline Chatbot (No API)

Create file

nano offline_bot.py

2. Copy Code

print("πŸ€– Offline Chatbot (type 'bye' to exit)")

while True:
user = input("You: ").lower()

if user in ["hi", "hello"]:
print("Bot: Hello!")
elif "name" in user:
print("Bot: I am a Termux chatbot.")
elif "how are you" in user:
print("Bot: I'm fine!")
elif user == "bye":
print("Bot: Bye πŸ‘‹")
break
else:
print("Bot: I don't understand.")

3. Run

python offline_bot.py

PART 2: AI Chatbot (API Based)

Install API library

pip install openai

Create AI bot file


nano ai_bot.py

AI Bot Code (API)

from openai import OpenAI

client = OpenAI(api_key="PASTE_YOUR_API_KEY_HERE")

print("πŸ€– AI Chatbot Ready (type exit to quit)")

while True:
user = input("You: ")
if user.lower() == "exit":
break

response = client.chat.completions.create(
model="gpt-3.5-turbo",
messages=[{"role": "user", "content": user}]
)

print("Bot:", response.choices[0].message.content)

Run AI chatbot

python ai_bot.py

πŸ”” EXCLUSIVE CHANNEL
❀25πŸ’―3
Ethernet Cabling Categories!! | IPCisco
❀21
πŸ‘Œ6❀3πŸ’―3
This media is not supported in your browser
VIEW IN TELEGRAM
How to reveal encoded data using Wireshark

πŸ”” MORE VIDEO CONTENT IS AVAILABLE ON OUR EXCLUSIVE CHANNEL.
❀10πŸ’―1
SSL-TLS Handshake Working
❀10
Roadmap to Become a Web Developer :

πŸ“ HTML & CSS
β”‚
β”œβ”€ πŸ“ CSS Frameworks (Tailwind)
β”‚
β”œβ”€ πŸ“ JavaScript (core concepts)
β”‚
β”œβ”€ πŸ“ Git & GitHub
β”‚
β”œβ”€ πŸ“ React OR Angular (pick one)
β”‚
β”œβ”€ πŸ“ Node.js & REST APIs
β”‚
β”œβ”€ πŸ“ Database (MongoDB / PostgreSQL)
β”‚
β”œβ”€ πŸ“ Auth, Security & Deployment (basics)
β”‚
└─ βœ… Build & Deploy Real Projects
❀31πŸ₯°2😍1
Networking Concepts!!
❀12
⚑SubDomain Grabber - A bug bounty tool to download, unzip, and clean subdomains from Chaos ProjectDiscovery.

🚨Converts *.
abc.com to abc.com, organizes into directories, and removes ZIPs. Offers a colorful CLI, filters (BugCrowd, HackerOne, etc.), sorting, and pagination.

βœ…
Github.com/MuhammadWaseem29/SubDomain-Grabber
❀10πŸ‘4
OSINT Browsers Extenions Lists
❀19
HTML Tip

22 🀯 input types are supported in HTML
❀15
🚨 One-Click Telegram Flaw Leaks Real IP Addresses

A hidden flaw in Telegram’s mobile app can expose your real IP address with just one click, even if you use a proxy.

Attackers can hide malicious proxy links behind normal-looking usernames. When you tap the link, Telegram automatically connects to the proxy to check it β€” and this reveals your real IP to the attacker.

This is called a β€œone-click IP leak.”
It works because Telegram tests proxy links automatically before adding them.

⚠️ Just clicking is enough β€” no permission needed.
❀19
HTTPTAP β€” A lightweight yet powerful command-line network inspection tool that captures and displays live HTTP and HTTPS traffic in real time, showing request methods, URLs, headers, status codes, and responses. It is useful for API debugging, traffic analysis, OSINT research, and security testing directly inside Termux without any graphical interface.

pkg update -y
pkg upgrade -y
pkg install git -y
pkg install golang -y
go install github.com/monasticacademy/httptap@latest
export PATH=$PATH:~/go/bin

⚠️ For more information and use of this tool in termux visit github link of this tool.
πŸ‘¨β€πŸ’»  @TERMUXCOMMANDD
❀9
Network commands for windows
❀13
GUI for ADB to modify Android devices.

-
github.com/AnthonyGress/Android-Toolkit…
❀7πŸ‘1πŸ’―1