D3F4
>Loading command center_

Useful web utilities for downloading files, making HTTP requests, and inspecting domain and network information.
Download a file from a URL
wget http://target.com/file.zipSend a POST request with JSON body
curl -X POST -H "Content-Type: application/json" -d '{"key":"value"}' http://target.com/apiSend a request with Bearer token authentication
curl -H "Authorization: Bearer TOKEN" http://target.com/api/meFull DNS record lookup for a domain
dig target.com ANYRetrieve domain registration and ownership info
whois target.comView full SSL/TLS certificate details
echo | openssl s_client -connect target.com:443 2>/dev/null | openssl x509 -noout -textTrace the network path to a host
traceroute target.comQuickly check the HTTP status code of a URL
curl -o /dev/null -s -w "%{http_code}" http://target.com