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).
π EXCLUSIVE CHANNEL
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
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.
π MORE VIDEO CONTENT IS AVAILABLE ON OUR EXCLUSIVE CHANNEL.
β€10π―1
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
π 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
β‘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
π¨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
π¨ 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.
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