CURL
If you are working as a security professional support function, you must be aware of curl command usage to test for security issues across web applications, services and APIs.
Test URL with injecting header
curl --header 'Content-Type: application/json' http://yoururl.comDisplay only response header
curl --head http://yoururl.comConnect HTTPS/SSL URL and ignore any SSL certificate error
curl --insecure https://yoururl.comDownload file from FTP Server
curl -u user:password -O ftp://ftpurl/style.cssVerbose
DELETE
Miscellaneous
Last updated