Curl
Requests
Send POST request
curl -d "enter data here" http://IP:PORTRetrieve Headers + body
curl -i https://example.comRetrieve Only Headers
curl -I https://example.comManipulate Headers
curl -H 'HEADER:VALUE' https://example.comSet User-Agent header
curl https://example.com -A 'Mozilla/5.0'Credentials
curl -u user:pass https://example.comCredentials Within URL
curl http://username:password@example.com:PORTUse a specific method
curl -X POST Last updated