D-TECT in Termux – Installation & Usage Commands

D-TECT-1 is a web scanning tool that combines multiple security testing features into a single menu-based interface. It is used for checking website information, finding vulnerabilities, and performing basic reconnaissance tasks like subdomain and port scanning. It makes web testing easier by giving all options in a numbered menu that you can run step by step.

Installation Commands

Update Termux packages:

pkg update && pkg upgrade -y

Install required tools:

pkg install git python2 -y

Install required Python modules:

pip2 install colorama beautifulsoup4 requests

Clone D-TECT repository:

git clone https://github.com/shawarkhanethicalhacker/D-TECT-1

Go to tool directory:

cd D-TECT-1

Run the tool:

python2 d-tect.py

Usage Commands

After starting the tool, it opens a menu-based interface where you select options by number.

Start D-TECT:

python2 d-tect.py

Main Menu Options:

1. WordPress Username Enumerator  
2. Sensitive File Detector
3. Sub-Domain Scanner
4. Port Scanner
5. WordPress Scanner
6. Cross-Site Scripting [XSS] Scanner
7. WordPress Backup Grabber
8. SQL Injection [SQLI] Scanner

Menu options explained:

  • WordPress Username Enumerator: Finds valid usernames on WordPress sites.
  • Sensitive File Detector: Detects exposed sensitive files on websites.
  • Sub-Domain Scanner: Finds subdomains of a target domain.
  • Port Scanner: Scans open ports on a target system.
  • WordPress Scanner: Checks if a site is running WordPress and gathers basic details.
  • Cross-Site Scripting (XSS) Scanner: Tests websites for XSS vulnerabilities.
  • WordPress Backup Grabber: Searches for backup files of WordPress sites.
  • SQL Injection (SQLI) Scanner: Tests websites for SQL injection vulnerabilities.

You just need to choose an option, and the tool will automatically perform the selected task and display the results on the screen.

READ ALSO  Website Information Gathering – Whois Tool Installation & Basic Commands

Leave a Comment