Webtech : Identify Technologies Used on Websites

We’re very proud to release WebTech as open-source software. WebTech is a Python software that can identify web technologies by visiting a given website, parsing a single response file or replaying a request described in a text file.

This way you can have reproducible results and minimize the requests you need to make to a target website.

Also Read – DNSDmpstr : Unofficial API & Client for DnsDumpster & HackerTarget

CLI Installation

WebTech is available on pip:

pip install webtech

It can be also installed via setup.py:

python setup.py install –user

Burp Integration

Download Jython 2.7.0 standalone and install it into Burp.

In “Extender” > “Options” > “Python Environment”:

  • Select the Jython jar location

Finally, in “Extender” > “Extension”:

  • Click “Add”
  • Select “py” or “Python” as extension format
  • Select the Burp-WebTech.py file in this folder

Usage

Scan a website:

$ webtech -u https://example.com/
Target URL: https://example.com

$ webtech -u file://response.txt
Target URL:

Full usage:

$ webtech -h
Usage: webtech [options]
Options:
-h, –help show this help message and exit
-u URLS, –urls=URLS url(s) to scan
–ul=URLS_FILE, –urls-file=URLS_FILE
url(s) list file to scan
–ua=USER_AGENT, –user-agent=USER_AGENT
use this user agent
–rua, –random-user-agent
use a random user agent
–db=DB_FILE, –database-file=DB_FILE
custom database file
–oj, –json output json-encoded report
–og, –grep output grepable report
–udb, –update-db force update of remote db files

Resources for database matching

R K

Recent Posts

Enable SSH on Ubuntu 18.04: Install, Connect, and Manage

SSH (Secure Shell) is a cryptographic network protocol that creates a secure, encrypted connection between your…

17 minutes ago

Install Node.js and npm on Ubuntu 18.04: Three Methods Compared

Node.js is an open-source, cross-platform JavaScript runtime that lets you run JavaScript on the server side,…

22 minutes ago

Set DNS Nameservers on Ubuntu 18.04: Desktop and Server Guide

DNS (Domain Name System) is what translates domain names into IP addresses. When you type a…

41 minutes ago

Install Docker on Ubuntu 18.04: Setup, Images, and Containers

Docker is a containerization platform that lets you package applications and their dependencies into lightweight, portable…

57 minutes ago

Install Yarn on Ubuntu 18.04: APT Setup and Essential Commands

Yarn is a fast, reliable JavaScript package manager that works alongside npm. It was built to fix…

1 hour ago

Install Webmin on Ubuntu 18.04: Web Control Panel Setup Guide

Webmin is an open-source, browser-based control panel for Linux server administration. Instead of managing your server…

1 day ago