Open links in new tab
  1. How to trust self-signed certificate in cURL command line?

    Jun 22, 2018 · 1 If you save off the self-signed.crt from your server, you can pass it to curl via "--cacert self-signed.crt" and curl will validate the certificate of your server using the given CA Cert.

  2. Getting curl to output HTTP status code? - Super User

    Apr 18, 2011 · I'm using curl at the command line on Linux to issue HTTP requests. The response bodies are printed to standard out, which is fine, but I can't see from the man page how to get curl to …

  3. How to fix curl sslv3 alert handshake failure? - Unix & Linux Stack ...

    How do I ignore or force the certificate using curl command line? When using wget seems to work fine. Also works when testing with openssl as below: $ openssl s_client -connect thepiratebay.se:443 …

  4. How to download files from command line in Windows like wget or curl

    Nov 15, 2017 · How can I download something from the web directly without Internet Explorer or Firefox opening Acrobat Reader/Quicktime/MS Word/whatever? I'm using Windows, so a Windows …

  5. What is `curl -o-`? - Unix & Linux Stack Exchange

    Mar 28, 2021 · (curl -o- and curl -o - act the same.) Explicitly sending the output to stdout seems a bit redundant, since that's the default anyway. However, the man page does mention using multiple -o …

  6. Health check of web page using curl - Unix & Linux Stack Exchange

    May 13, 2019 · I'd like to do a health check of a service by calling a specific url on it. Feels like the simplest solution would be to use cron to do the check every minute or so. In case of errors, cron …

  7. How do I make a POST request using curl? - Super User

    Sep 17, 2008 · The cURL tutorial on HTTP Scripting is also helpful for emulating a web browser. With libcurl, use the curl_formadd() function to build your form before submitting it in the usual way.

  8. What is the meaning of "curl -k -i -X" in Linux?

    Dec 7, 2017 · When you use curl to access a web page it is actually sending the GET request to the server. There are other kinds of request that can be used and -X is the way to specify this. As noted …

  9. windows - PowerShell equivalent of curl - Super User

    Oct 10, 2011 · Is there an equivalent of curl in PowerShell? Does it have some similar built-in capability or is there a 3rd party cmdlet?

  10. curl - Adding a self-signed certificate to the "trusted list" - Unix ...

    The simple answer to this is that pretty much each application will handle it differently. Also OpenSSL and GNUTLS (the most widely used certificate processing libraries used to handle signed …