Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rverton/webanalyze
Port of Wappalyzer (uncovers technologies used on websites) to automate mass scanning.
https://github.com/rverton/webanalyze
enumeration pentesting security wappalyzer
Last synced: 5 days ago
JSON representation
Port of Wappalyzer (uncovers technologies used on websites) to automate mass scanning.
- Host: GitHub
- URL: https://github.com/rverton/webanalyze
- Owner: rverton
- License: mit
- Created: 2015-05-12T11:29:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-11-26T15:13:33.000Z (12 months ago)
- Last Synced: 2024-08-01T10:16:23.149Z (3 months ago)
- Topics: enumeration, pentesting, security, wappalyzer
- Language: Go
- Homepage:
- Size: 790 KB
- Stars: 920
- Watchers: 14
- Forks: 132
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bugbounty-tools - webanalyze - Port of Wappalyzer (uncovers technologies used on websites) to automate mass scanning. (Recon / Technologies)
- StarryDivineSky - rverton/webanalyze
README
# webanalyze
This is a port of Wappalyzer in Go. This tool is designed to be performant and allows to test huge lists of hosts.
Because Wappalyzer removed the public access to their app definitions, webanalyze currently loads definitions from [enthec](https://github.com/enthec/webappanalyzer).
## Installation and usage
### Precompiled releases
Precompiled releases can be downloaded directly [here](https://github.com/rverton/webanalyze/releases).### Build
If you want to build for yourself:$ go install -v github.com/rverton/webanalyze/cmd/webanalyze@latest
$ webanalyze -update # loads new technologies.json file from wappalyzer project
$ webanalyze -h
Usage of webanalyze:
-apps string
app definition file. (default "technologies.json")
-crawl int
links to follow from the root page (default 0)
-host string
single host to test
-hosts string
filename with hosts, one host per line.
-output string
output format (stdout|csv|json) (default "stdout")
-search
searches all urls with same base domain (i.e. example.com and sub.example.com) (default true)
-silent
avoid printing header (default false)
-update
update apps file
-worker int
number of worker (default 4)The `-update` flags downloads a current version of `technologies.json` from the [wappalyzer repository](https://github.com/AliasIO/Wappalyzer) to the current folder.
### Docker
```bash
# Clone the repo
git clone https://github.com/rverton/webanalyze.git
# Build the container
docker build -t webanalyze:latest webanalyze
# Run the container
docker run -it webanalyze:latest -h
```## Development / Usage as a lib
See `cmd/webanalyze/main.go` for an example on how to use this as a library.
## Example
$ ./webanalyze -host robinverton.de -crawl 1
:: webanalyze : v1.0
:: workers : 4
:: apps : technologies.json
:: crawl count : 1
:: search subdomains : truehttps://robinverton.de/hire/ (0.5s):
Highlight.js, (Miscellaneous)
Netlify, (Web Servers, CDN)
Google Font API, (Font Scripts)
http://robinverton.de (0.8s):
Highlight.js, (Miscellaneous)
Netlify, (Web Servers, CDN)
Hugo, 0.42.1 (Static Site Generator)
Google Font API, (Font Scripts)$ ./webanalyze -host robinverton.de -crawl 1 -output csv
:: webanalyze : v1.0
:: workers : 4
:: apps : technologies.json
:: crawl count : 1
:: search subdomains : trueHost,Category,App,Version
https://robinverton.de/hire/,Miscellaneous,Highlight.js,
https://robinverton.de/hire/,Font Scripts,Google Font API,
https://robinverton.de/hire/,"Web Servers,CDN",Netlify,
http://robinverton.de,"Web Servers,CDN",Netlify,
http://robinverton.de,Static Site Generator,Hugo,0.42.1
http://robinverton.de,Miscellaneous,Highlight.js,
http://robinverton.de,Font Scripts,Google Font API,