|
- What is the meaning of curl -k -i -X in Linux?
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 above, this command is usually not needed For example, if you need a POST request you can use -d rather than using -X
- How to save a remote server SSL certificate locally as a file
450 I need to download an SSL certificate of a remote server (not HTTPS, but the SSL handshake should be the same as Google Chrome IE wget and curl all give certificate check fail errors) and add the certificate as trusted in my laptops Windows' certificate store since I am not able to get my IT guys to give me the CA cert
- curl - Adding a self-signed certificate to the trusted list - Unix . . .
I've generated a self-signed certificate for my build server and I'd like to globally trust the certificate on my machine, as I created the key myself and I'm sick of seeing warnings I'm on Ubuntu
- Specifying minor TLS version when using curl - Super User
Is there a way to specify curl to use a specific TLS version? Like 1 1 or 1 2? I can see only sslv3 and tlsv1 options in command help I took latest src and compiled it with openssl 1 0 1e Still d
- Does `curl -v` show the complete HTTP request including the body?
The description of curl ’s -v option says -v, --verbose Makes curl verbose during the operation Useful for debugging and seeing what's going on "under the hood" A line starting with '>' means "header data" sent by curl, '<' means "header data" received by curl that is hidden in normal cases, and a line starting with '*' means additional info provided by curl If you only want HTTP headers
- How to get and use certificates with curl - Super User
I still can't figure out how to get and use certificates with curl but my ultimate goal has been accomplished Maybe someone can help with the certificate bit
- Run cURL commands from Windows console - Super User
Is there a way to install cURL in windows in order to run cURL commands from the command prompt?
- How to trust self-signed certificate in cURL command line?
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
|
|
|