Page cover
githubEdit

crosshairsCurl

chevron-rightRequestshashtag
Send POST request
curl -d "enter data here" http://IP:PORT
Retrieve Headers + body
curl -i https://example.com
Retrieve Only Headers
curl -I https://example.com
Manipulate Headers
curl -H 'HEADER:VALUE' https://example.com
Set User-Agent header
curl https://example.com -A 'Mozilla/5.0'
Credentials
curl -u user:pass https://example.com
Credentials Within URL
curl http://username:password@example.com:PORT
Use a specific method
curl -X POST 
chevron-rightCookieshashtag
circle-info
chevron-rightCertificateshashtag
circle-info
chevron-rightPath Traversalhashtag
chevron-rightAdvanced Useshashtag

Last updated