> ## Content Index
> Fetch the complete content index at: https://kudithipudi.org/llms.txt
> Use this file to discover other available public pages before exploring further.

# HOW TO : Check SSL certificate validity using curl
- URL: https://kudithipudi.org/how-to-check-ssl-certificate-validity-using-curl/
- Published: 2012-03-19T16:01:07.000Z
- Updated: 2012-03-19T16:01:07.000Z
- Description: If you want to check the SSL certificate validation (expiry time, hostname match, self signed etc) using curl, you can do it by running [code]curl -cacert...
- Author: admin
- Tags: Networking, security, Technology, Uncategorized, Web, #wp, #wp-post, #Import 2026-08-23 02:32

If you want to check the SSL certificate validation (expiry time, hostname match, self signed etc) using curl, you can do it by running

```
curl -cacert URL_ADDRESS
```

Example : If you want to check the SSL certificate of GoDaddy

```
curl -cacert https://www.godaddy.com
```