Termux All Command [Telegram Group]
رفتن به کانال در Telegram
Hello This Is Termux All Command Official Telegram Group. Here Share All Kind of Resourses. It is Also backup of Facebook Page Telegram Channel >> https://t.me/termuxcommandfull Facebook Page >> https://www.facebook.com/termux.command.full
نمایش بیشتر1 179
مشترکین
+124 ساعت
+97 روز
+4130 روز
آرشیو پست ها
🔰 List of all errors 🔰
- 400 (Bad request)
- 401 (Authorization required)
- 402 (Payment required)
- 403 (Forbidden)
- 404 (Not found)
- 405 (Method not allowed)
- 406 (Not acceptable)
- 407 (Proxy authentication required)
- 408 (Request Timeout)
- 409 (Conflict)
- 410 (Gone)
- 411 (Length required)
- 412 (Precondition failed)
- 413 (Request entity too large)
- 414 (Request URI too large)
- 415 (Unsupported media type)
- 416 (Request range not satisfiable)
- 417 (Expectation failed)
- 422 (Unprocessable entity)
- 423 (Locked)
- 424 (Failed dependency)
- 500 (Internal server error)
- 501 (Not Implemented)
- 502 (Bad gateway)
- 503 (Service unavailable)
- 504 (Gateway timeout)
- 505 (HTTP version not supported)
- 506 (Variant also negotiates)
- 507 (Insufficient storage)
- 510 (Not extended)
𝗪𝗛𝗔𝗧 𝗜𝗦 𝗦𝗘𝗥𝗩𝗘𝗥𝗦𝗣𝗬?
ServerSpy is a free, open-source Bash script that runs 10 automated recon modules on any target and gives you a complete server fingerprint in under 60 seconds.
No setup. No config files. No dependencies to install manually.
Just clone and run.
𝟭𝟬 𝗠𝗢𝗗𝗨𝗟𝗘𝗦 — 𝗔𝗟𝗟 𝗔𝗨𝗧𝗢𝗠𝗔𝗧𝗘𝗗
𝗜𝗡𝗦𝗧𝗔𝗟𝗟 𝗜𝗡 𝟯 𝗖𝗢𝗠𝗠𝗔𝗡𝗗𝗦
git clone https://github.com/masaudsec/serverspy.git
cd serverspy
chmod +x serverspy.sh
That's it. No pip install. No npm. No config. Done.
𝗨𝗦𝗔𝗚𝗘
Single target:
./serverspy.sh example.com
With full URL (auto-stripped):
./serverspy.sh https://example.com
Bulk scan — entire subdomain list:
./serverspy.sh -l targets.txt
Results auto-saved to: serverspy_results/target_timestamp.txt
Master SQL
SQL MASTER TREE
│
├── 1. Database Fundamentals
│ ├── What is DB / DBMS / RDBMS
│ ├── Tables, Rows, Columns
│ ├── Primary Key
│ ├── Foreign Key
│ ├── Candidate Key
│ ├── Composite Key
│ ├── Constraints
│ │ ├── NOT NULL
│ │ ├── UNIQUE
│ │ ├── PRIMARY KEY
│ │ ├── FOREIGN KEY
│ │ ├── CHECK
│ │ └── DEFAULT
│ └── Data Integrity
│
├── 2. SQL Data Types
│ ├── Numeric
│ │ ├── INT
│ │ ├── BIGINT
│ │ ├── DECIMAL
│ │ └── FLOAT
│ ├── String
│ │ ├── CHAR
│ │ ├── VARCHAR
│ │ └── TEXT
│ ├── Date & Time
│ │ ├── DATE
│ │ ├── TIME
│ │ ├── DATETIME
│ │ └── TIMESTAMP
│ └── Boolean / Binary
│
├── 3. DDL (Data Definition Language)
│ ├── CREATE
│ │ ├── DATABASE
│ │ ├── TABLE
│ │ └── INDEX
│ ├── ALTER
│ │ ├── ADD COLUMN
│ │ ├── MODIFY COLUMN
│ │ └── DROP COLUMN
│ ├── DROP
│ │ ├── DATABASE
│ │ └── TABLE
│ └── TRUNCATE
│
├── 4. DML (Data Manipulation Language)
│ ├── INSERT
│ ├── UPDATE
│ ├── DELETE
│ └── MERGE / UPSERT
│
├── 5. DQL (Data Query Language)
│ ├── SELECT
│ ├── DISTINCT
│ ├── WHERE
│ │ ├── AND
│ │ ├── OR
│ │ └── NOT
│ ├── ORDER BY
│ ├── GROUP BY
│ ├── HAVING
│ └── LIMIT / OFFSET
│
├── 6. SQL Operators
│ ├── Arithmetic (+ - * /)
│ ├── Comparison (= != > < >= <=)
│ ├── Logical (AND OR NOT)
│ ├── BETWEEN
│ ├── IN
│ ├── LIKE
│ └── IS NULL
│
├── 7. SQL Functions
│ ├── Aggregate
│ │ ├── COUNT
│ │ ├── SUM
│ │ ├── AVG
│ │ ├── MIN
│ │ └── MAX
│ ├── String
│ │ ├── CONCAT
│ │ ├── SUBSTRING
│ │ ├── LENGTH
│ │ └── TRIM
│ ├── Numeric
│ │ ├── ROUND
│ │ └── ABS
│ └── Date
│ ├── NOW
│ ├── DATEADD
│ └── DATEDIFF
│
├── 8. Joins
│ ├── INNER JOIN
│ ├── LEFT JOIN
│ ├── RIGHT JOIN
│ ├── FULL JOIN
│ ├── CROSS JOIN
│ └── SELF JOIN
│
├── 9. Subqueries
│ ├── Scalar Subquery
│ ├── Correlated Subquery
│ └── Nested Subquery
│
├── 10. Views
│ ├── CREATE VIEW
│ ├── UPDATE VIEW
│ └── MATERIALIZED VIEW
│
├── 11. Indexing
│ ├── Clustered Index
│ ├── Non-Clustered Index
│ ├── Composite Index
│ └── Index Optimization
│
├── 12. Transactions
│ ├── BEGIN
│ ├── COMMIT
│ ├── ROLLBACK
│ └── SAVEPOINT
│
├── 13. ACID Properties
│ ├── Atomicity
│ ├── Consistency
│ ├── Isolation
│ └── Durability
│
├── 14. Normalization
│ ├── 1NF
│ ├── 2NF
│ ├── 3NF
│ ├── BCNF
│ └── Denormalization
│
├── 15. Advanced SQL
│ ├── Stored Procedures
│ ├── Triggers
│ ├── CTE (WITH)
│ ├── Window Functions
│ │ ├── ROW_NUMBER
│ │ ├── RANK
│ │ ├── DENSE_RANK
│ │ └── PARTITION BY
│ └── Recursive Queries
│
├── 16. Performance Optimization
│ ├── Query Optimization
│ ├── Execution Plan
│ ├── Index Tuning
│ └── Query Caching
│
├── 17. SQL Ecosystem
│ ├── MySQL
│ ├── PostgreSQL
│ ├── SQLite
│ ├── SQL Server
│ └── Oracle DB
│
└── 18. Real-World Usage
├── Backend APIs
├── Data Analytics
├── Reporting Systems
├── ETL Pipelines
└── Data Warehousing
🔥 Top Android Penetration Testing Tools – Must Know for Security Researchers!
Want to test Android app security like a pro? These tools are essential 👇
✅ MobSF – Static & Dynamic Analysis
✅ Frida – Runtime Hooking & Bypass
✅ Burp Suite – Traffic Interception & Manipulation
✅ Drozer – Attack Surface Mapping
✅ Apktool – Reverse Engineering
✅ JADX – Source Code Review
These tools are widely used to find vulnerabilities in Android applications 🔍
📥 Want the full detailed PDF guide?
👉 Comment “android” and I’ll send the PDF.
Reflected XSS💥:
1)subfinder -dL target.txt -all -o subs.txt
2)httpx -list subs.txt -mc 200,301,302,403 -o alive.txt
3)katana -list alive.txt -d 5 -jc -kf all -o katana.txt
4)urlfinder -list alive.txt -all -o urlfinder.txt
5)cat subs.txt | waybackurls > wayback.txt
6)cat katana.txt urlfinder.txt wayback.txt | sort -u > all_urls.txt
7)grep '=' all_urls.txt | sort -u > params.txt
8)urless -i params.txt -o clean_params.txt
9)dalfox file clean_params.txt
CompTIA Security+ Course 🔐
Starting in cybersecurity?
I’m giving away a CompTIA Security+ Full Video Course.
You’ll learn:
• Network Security
• Threats & Vulnerabilities
• Risk Management
• Cryptography Basics
• Security Architecture
https://drive.google.com/drive/mobile/folders/1n8X5-eZzRvvtRNk80BWBiEllOMSAs6sK?sfnsn=wiwspmo
FREE LABS For Red Teaming/Blue Teaming/CTF etc.
portswigger academy
https://lnkd.in/dukhATdM
Thunder Cipher https://lnkd.in/dJyedrqr
Hacktrace https://lnkd.in/d3AhzDaa
Alert to win - https://alf.nu/alert1
Buffer Overflow Labs -https://lnkd.in/eNbEWYh
CryptoHack https://cryptohack.org/
CMD Challenge-https://cmdchallenge.com
Cyberdefenders - https://lnkd.in/dVcmjew8
Damn Vulnerable Repository - https://lnkd.in/dEitQx6H
Defend The Web- https://defendtheweb.net/
Exploitation Education -https://exploit,education
Google CTF - https://lnkd.in/e46drb28
HackTheBox - https://www.hackthebox.com
Hacker101 -https://ctf.hacker101.com
Hacking-Lab https://hacking-lab.com/
Immersivelabs -https://immersivelabs.com
Infinity Learning CWL-https://lnkd.in/dbx-VhXu
LetsDefend-https://letsdefend.io/
NewbieContest - https://lnkd.in/ewB3k6fU5
OverTheWire - http://overthewire.org
Practical Pentest Labs -https://lnkd.in/esq9Yuv5
Pentestlab -https://pentesterlab.com
Penetration Testing Practice Labs - https://lnkd.in/e6wVANYd
PentestIT LAB- https://lab.pentestit,ru
PicoCTF - https://picoctf.com
PWNABLE - https://lnkd.in/eMEwB3Jzn
Root-Me-https://www.root-me.org
Red Team Exercises - https://lnkd.in/dMBfz-Sp
Root in Jail -http://rootinjail.com
SANS Challenger - https://lnkd.in/e5TAMawk
SmashTheStack - https://lnkd.in/eVn9rPqp
The Cryptopals Crypto Challenges - https://cryptopals.com
Try Hack Me- https://tryhackme.com
Vulnhub https://www.vulnhub.com
Vulnmachine -https://Inkd,in/eJ2e_kD
W3Challs https://w3challs.com
WeChall http://www.wechall.net
Websploit https://websploit.org/
Zenk-Security -https://lnkd.in/ewJ5rNx2
[Freeeducationweb.com] Ethical Hacking with HID Devices v2.0.rar
[Freeeducationweb.com] Malware Analysis Static, Dynamic, and Memory Techniques.rar
[Freeeducationweb.com] Practical Malware Analysis for Beginners.rar
[Freeeducationweb.com] Windows Malware Analysis From Detection to Investigation.rar
[Freeeducationweb.com] Specialized DFIR - Windows Event Log Forensics.rar
Repost from burpsuite (not official)
pass:
311138
README (en+ru) inside, plz read it before run BS.
Happy Hacking! 🥳
Run with Java 18 or Java 22 with JDK21+Repost from Zer0Day Lab
Burp Suite Professional v2025.9.4 + JDK 24
NOTE -
Run this version With Java SE JDK 24
Released Wednesday, 1 October 2025
@zer0day1ab #pentest #security
اکنون در دسترس! پژوهش تلگرام ۲۰۲۵ — مهمترین بینشهای سال 
