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
Well Known TCP&UDP Ports
❀8πŸ‘1
Toutatis is a little-known Instagram OSINT tool used to collect public profile data, metadata, posts, captions, hashtags, and digital footprint.
No hacking, public data only β€” good for OSINT & research learning.


pkg update -y && pkg install git python -y && pip install --upgrade pip && git clone https://github.com/megadose/toutatis.git && cd toutatis && pip install -r requirements.txt

python3 toutatis.py

⚠️ For more information and use of this tool in termux visit github link of this tool.
πŸ‘¨β€πŸ’»  @TERMUXCOMMANDD
❀16πŸ‘Ž3πŸ’―3πŸ‘1πŸ‘1
Array Methods
πŸ‘4❀1
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