Port 80/443 - HTTP/HTTPS

Basic Info

nc -v domain.com 80 
openssl s_client -connect <url>:443
sslscan <url>

### URL scrapping
#For JSON file:
http://web.archive.org/cdx/search/cdx?url=example.com*&output=json

#For TXT format:
http://web.archive.org/cdx/search/cdx?url=example.com*&output=txt

Web Scanners

## WhatWeb
whatweb -a 1 <url> # stealth scan
whatweb -a 3 <url> # agressive scan
whatweb -a 4 <url> # heavy scan

## WebTech
# pip install webtech
webtech <url>

WAF Detection

Fuzzing

Last updated