Homebrewed urlscan.io in a docker container. Screenshot a website and log web requests.
- Screenshots the homepage
- Records URL, method, status code, MIME type, and content size of every HTTP request
- Calculates SHA-256 hash of response bodies
- Install Docker.
- Be able to execute
docker
as the current user. Linux Guide
git clone https://github.com/becksteadn/HTTP-Info.git && cd HTTP-Info
docker build -t http-info .
Some pages will crash without a shared /dev/shm
.
docker run -v /dev/shm:/dev/shm -v "$(pwd)":/info http-info https://scriptingis.life
Output files are screenshot.png
and http-info.csv
.