Amass is an advanced OSINT & subdomain enumeration tool. It discovers hidden assets of a target using DNS records, certificates, search engines, and public databases. Widely used in bug bounty and professional recon.
pkg update && pkg upgrade -y
pkg install git golang -y
go install -v github.com/owasp-amass/amass/v4/...@latest
echo 'export PATH=$PATH:$HOME/go/bin' >> ~/.bashrc
source ~/.bashrc
Verify installation:
amass -version
Basic command:
amass enum -d example.com
⚠️For more information and use of this tool in termux visit github link of this tool.
👨💻 @TERMUXCOMMANDD
❤17👍14
More likes 👍 mean more reach. Support us by hitting like and sharing with your friends — it inspires us to bring you even more free content. Thanks for the love!
❤15
This tool lets you monitor, restart, and protect any process automatically.
Hackers, sysadmins, and red-teamers use it to keep critical scripts alive even after crashes or kills.
Hackers, sysadmins, and red-teamers use it to keep critical scripts alive even after crashes or kills.
pkg update && pkg upgrade -y
pkg install git python -y
git clone https://github.com/godmode0x/watchdog.git
cd watchdog
pip install -r requirements.txt
🚀 Usage Example
Protect a script:
python watchdog.py --cmd "python bot.py"
Run in background:
nohup python watchdog.py --cmd "bash script.sh" &
⚠️For more information and use of this tool in termux visit github link of this tool.
👨💻 @TERMUXCOMMANDD
❤17😍1
Gitleaks scans Git repositories to detect leaked secrets such as passwords, API keys, tokens, and private keys.
It teaches how many real-world breaches happen due to developer mistakes, not “h4cking”.
It teaches how many real-world breaches happen due to developer mistakes, not “h4cking”.
pkg update && pkg upgrade -y
pkg install git golang -y
go install github.com/gitleaks/gitleaks/v8@latest
echo 'export PATH=$PATH:$HOME/go/bin' >> ~/.bashrc
source ~/.bashrc
gitleaks version
⚠️For more information and use of this tool in termux visit github link of this tool.
👨💻 @TERMUXCOMMANDD
❤18
Please open Telegram to view this post
VIEW IN TELEGRAM
❤15🥰4👍1👏1
This media is not supported in your browser
VIEW IN TELEGRAM
Hashing with practical examples
ENJOY 😉
ENJOY 😉
❤12👍1
Firebase Realtime Chat (Simple WhatsApp Logic)
🔹 Bio
Lightweight chat app demonstrating:
Realtime database
User presence
Message sync
Perfect for beginners.pkg install git nodejs
git clone https://github.com/firebase/friendlychat
cd friendlychat
npm install
⚠️For more information and use of this tool in termux visit github link of this tool.
👨💻 @TERMUXCOMMANDD
❤13
Step 1: Don’t trust the file name
File names lie all the time. A file like invoice_update.exe is already suspicious.
An invoice should never be a Windows executable.
Step 2: Check size & basic details
Always check the file size. Around 400 KB may be normal for a small program,
but it is completely abnormal for an invoice or document.
Step 3: Look inside without running it
You can learn a lot without executing the file.
Readable strings often expose program behavior such as system and internet usage
(kernel32.dll, LoadLibraryA, InternetOpenA, etc.).
Step 4: Look for URLs or web paths
Malware almost always communicates over the internet.
Finding URLs, API paths, or user-agents is a major red flag.
An invoice does not need internet access.
Step 5: Check if the file is hiding
Malware often packs or obfuscates its code to avoid detection.
High entropy or suspicious section names usually indicate this behavior.
Step 6: Put it all together
This file pretends to be an invoice, but it is actually a Windows program.
It contains internet communication code and hides its internal logic.
You don’t need advanced reversing skills to reach this conclusion.
This is beginner-level analysis done correctly.
file invoice_update.exe
ls -lh invoice_update.exe
strings invoice_update.exe | head
strings invoice_update.exe | grep -i http
pecheck invoice_update.exe
Please open Telegram to view this post
VIEW IN TELEGRAM
❤9💯3👍1