การแสดงรายละเอียดใบรับรอง SSL ระยะไกลโดยใช้เครื่องมือ CLI


187

ใน Chrome การคลิกที่ไอคอนล็อค HTTPS สีเขียวจะเปิดหน้าต่างที่มีรายละเอียดใบรับรอง:

ป้อนคำอธิบายรูปภาพที่นี่

เมื่อฉันลองแบบเดียวกันกับ cURL ฉันได้รับข้อมูลบางอย่างเท่านั้น:

$ curl -vvI https://gnupg.org
* Rebuilt URL to: https://gnupg.org/
* Hostname was NOT found in DNS cache
*   Trying 217.69.76.60...
* Connected to gnupg.org (217.69.76.60) port 443 (#0)
* TLS 1.2 connection using TLS_DHE_RSA_WITH_AES_128_CBC_SHA
* Server certificate: gnupg.org
* Server certificate: Gandi Standard SSL CA
* Server certificate: UTN-USERFirst-Hardware
> HEAD / HTTP/1.1
> User-Agent: curl/7.37.1
> Host: gnupg.org
> Accept: */*

มีความคิดวิธีการรับข้อมูลใบรับรองแบบเต็มจากเครื่องมือบรรทัดคำสั่ง (cURL หรืออื่น ๆ )



อาจขึ้นอยู่กับรุ่นด้วย curlสถานะปัจจุบันของฉันพร้อมธง--verboseแสดงเนื้อหาใบรับรองเซิร์ฟเวอร์แบบเต็ม
Patrick Mevzek

คำตอบ:


263

คุณควรจะสามารถใช้ OpenSSL เพื่อจุดประสงค์ของคุณ:

echo | openssl s_client -showcerts -servername gnupg.org -connect gnupg.org:443 2>/dev/null | openssl x509 -inform pem -noout -text

คำสั่งนั้นเชื่อมต่อกับเว็บไซต์ที่ต้องการและส่งใบรับรองในรูปแบบ PEM ไปยังคำสั่ง openssl อื่นที่อ่านและวิเคราะห์รายละเอียด

(โปรดทราบว่า-servernameพารามิเตอร์"ซ้ำซ้อน" จำเป็นต้องทำการopensslร้องขอด้วยการสนับสนุน SNI)


ดูเหมือนว่าจะมีข้อผิดพลาดกับคำสั่งนี้:OpenSSL> openssl:Error: 'CONNECTED(00000003)' is an invalid command.
Adam Matan

2
@AdamMatan คุณรวมถึงคำสั่งเต็มหลังจากท่อที่สองหรือไม่? ข้อความแสดงข้อผิดพลาดดูเหมือนว่าการเรียกใช้ openssl ที่สองสิ้นสุดลงแล้วทำงานในโหมดโต้ตอบ (เช่นopensslvs openssl x509 -inform pem -noout -text) สิ่งที่เปโดรเขียนก็ใช้ได้ดีสำหรับฉัน
Håkan Lindqvist

4
โปรดทราบว่าในขณะที่ s_client จะพิมพ์ห่วงโซ่ทั้งหมดคำสั่ง piped สุดท้ายจะพิมพ์ข้อมูลเกี่ยวกับใบรับรองแรกเท่านั้น
chutz

1
echoโดยตัวมันเองนั้นเท่ากับecho ''.. มันจะส่งสตริงว่างให้ stdout cat /dev/null |จะทำงานด้วยและอธิบายตัวเองได้อีกเล็กน้อย
ป่าน

2
หากคุณต้องการทราบวันหมดอายุคุณสามารถแทนที่-textด้วย-enddateตรวจสอบตัวเลือกอื่น ๆ ( openssl x509 help)
adriaan

63

ทางออกที่ง่าย

นั่นคือสคริปต์ประจำวันของฉัน:

curl --insecure -v https://www.google.com 2>&1 | awk 'BEGIN { cert=0 } /^\* SSL connection/ { cert=1 } /^\*/ { if (cert) print }'

เอาท์พุท:

* SSL connection using TLS1.2 / ECDHE_RSA_AES_128_GCM_SHA256
*    server certificate verification SKIPPED
*    server certificate status verification SKIPPED
*    common name: www.google.com (matched)
*    server certificate expiration date OK
*    server certificate activation date OK
*    certificate public key: RSA
*    certificate version: #3
*    subject: C=US,ST=California,L=Mountain View,O=Google Inc,CN=www.google.com
*    start date: Wed, 24 May 2017 17:39:15 GMT
*    expire date: Wed, 16 Aug 2017 17:13:00 GMT
*    issuer: C=US,O=Google Inc,CN=Google Internet Authority G2
*    compression: NULL
* ALPN, server accepted to use http/1.1
* Connection #0 to host www.google.com left intact

5
ใช้งานไม่ได้สำหรับฉันไม่รวมวันที่เริ่ม / หมดอายุ
ต่อ Lundberg

4
เนื่องจากการเปลี่ยนแปลงล่าสุดของ curl (บางแห่งระหว่าง 49 ถึง 52) จึงไม่แสดงอะไรเลยเกี่ยวกับใบรับรอง :(
Ross Presser

ลบ 2> & 1
Jeshan Babooa

27

ขึ้นอยู่กับประเภทของข้อมูลที่คุณต้องการ แต่:

openssl s_client -showcerts -connect gnupg.org:443

ควรมอบสิ่งที่ดีที่สุดให้กับคุณแม้ว่าจะไม่ใช่มนุษย์ที่อ่านง่ายอย่างที่ Chrome นำเสนอ


1
น่าเสียดายที่ข้อมูลใบรับรองมีน้อยมากที่แสดงในรูปแบบที่มนุษย์สามารถอ่านได้โดยคำสั่งนั้น
Håkan Lindqvist

9
ฉันไม่เห็นด้วยกับความคิดเห็นก่อนหน้านี้คำสั่งนี้จะบอกสิ่งที่ฉันต้องรู้และมีประโยชน์มาก +1 สำหรับคำตอบ
camdixon

หากคุณต้องการทดสอบ TLS 1.2 โดยเฉพาะคุณสามารถเพิ่ม -tls1_2
camdixon

23
nmap -p 443 --script ssl-cert gnupg.org

การ-p 443ระบุเพื่อสแกนพอร์ต 443 เท่านั้น พอร์ตทั้งหมดจะถูกสแกนหากไม่ได้ระบุไว้และรายละเอียดใบรับรองสำหรับบริการ SSL ใด ๆ ที่พบจะปรากฏขึ้น The --script ssl-certบอกเอ็นจิ้นการเขียนสคริปต์ Nmapให้เรียกใช้ssl-certสคริปต์เท่านั้น จากเอกสารสคริปต์นี้ "(r) etrieves ใบรับรอง SSL ของเซิร์ฟเวอร์จำนวนข้อมูลที่พิมพ์เกี่ยวกับใบรับรองขึ้นอยู่กับระดับ verbosity"

ตัวอย่างผลลัพธ์:

Starting Nmap 7.40 ( https://nmap.org ) at 2017-11-01 13:35 PDT
Nmap scan report for gnupg.org (217.69.76.60)
Host is up (0.16s latency).
Other addresses for gnupg.org (not scanned): (null)
rDNS record for 217.69.76.60: www.gnupg.org
PORT    STATE SERVICE
443/tcp open  https
| ssl-cert: Subject: commonName=gnupg.org
| Subject Alternative Name: DNS:gnupg.org, DNS:www.gnupg.org
| Issuer: commonName=Gandi Standard SSL CA 2/organizationName=Gandi/stateOrProvinceName=Paris/countryName=FR
| Public Key type: rsa
| Public Key bits: 2048
| Signature Algorithm: sha256WithRSAEncryption
| Not valid before: 2015-12-21T00:00:00
| Not valid after:  2018-03-19T23:59:59
| MD5:   c3a7 e0ed 388f 87cb ec7f fd3e 71f2 1c3e
|_SHA-1: 5196 ecf5 7aed 139f a511 735b bfb5 7534 df63 41ba

Nmap done: 1 IP address (1 host up) scanned in 2.31 seconds

6

ในการตรวจสอบรายละเอียดใบรับรอง SSL ฉันใช้เครื่องมือบรรทัดคำสั่งต่อไปนี้เนื่องจากมีให้ใช้งาน:

https://github.com/azet/tls_tools

เป็นเรื่องดีที่จะตรวจสอบอีกครั้งว่าคุณมีข้อมูลทั้งหมดที่ถูกต้องสำหรับการออกใบรับรองใหม่หรือตรวจสอบความถูกต้องของข้อมูลที่มีอยู่รวมถึงการพึ่งพาเพียงเล็กน้อยและไม่จำเป็นต้องติดตั้ง

นี่คือลักษณะของเอาต์พุตสองสามบรรทัดแรก:

$ ./check_certificate_chain.py gnupg.org 443

>> Certificate Chain:

 [+]*       OU=Domain Control Validated, OU=Gandi Standard SSL, CN=gnupg.org
 [+]**      C=FR, O=GANDI SAS, CN=Gandi Standard SSL CA
 [+]***     C=US, ST=UT, L=Salt Lake City, O=The USERTRUST Network, OU=http://www.usertrust.com, CN=UTN-USERFirst-Hardware

>> Certificate Information:

................................................................................
- [Subject]:        OU=Domain Control Validated, OU=Gandi Standard SSL, CN=gnupg.org
- [Issuer]:     C=FR, O=GANDI SAS, CN=Gandi Standard SSL CA
- [Valid from]:     Mar 18 00:00:00 2014 GMT
- [Valid until]:    Mar 18 23:59:59 2016 GMT
- [Authority]:      Is not a CA
- [Version]:        2
- [Serial No.]:     43845251655098616578492338727643475746
- [X.509 Extension Details]:
  -- [x509_authorityKeyIdentifier]:
       keyid:B6:A8:FF:A2:A8:2F:D0:A6:CD:4B:B1:68:F3:E7:50:10:31:A7:79:21 

เอาต์พุตนั้นตามด้วยเชนใบรับรองทั้งหมดที่มีรายละเอียดในระดับเดียวกัน

สิ่งที่ฉันชอบแทนที่จะเป็น ssl-centric cli tools เช่น sslclient ของ openssl อันนี้พยายามทำเพียงงานเดียวที่เราต้องการใช้เวลาส่วนใหญ่ แน่นอน openssl มีความยืดหยุ่นมากกว่า (เช่นตรวจสอบ clientcerts, imaps บนพอร์ตคี่และอื่น ๆ ) - แต่ฉันไม่ต้องการมันเสมอไป

อีกทางเลือกหนึ่งถ้าคุณมีเวลาขุด & ตั้งค่าหรือชื่นชมคุณสมบัติเพิ่มเติมมีเครื่องมือชื่อ sslyze ที่ใหญ่กว่า (ไม่ได้ใช้ตั้งแต่พึ่งพาและติดตั้ง ... )


5

เพื่อความสมบูรณ์: หากคุณติดตั้งบนระบบJava 7 หรือสูงกว่า

 keytool -printcert -sslserver $host[:$port]

แสดงchain (เสิร์ฟ) โดยมีรายละเอียดเกือบทั้งหมดในรูปแบบที่ค่อนข้างน่าเกลียด

ไม่ว่าคุณควรจะมีการติดตั้ง Java บนระบบของคุณฉันไม่ตอบ


ส่งออกค่าเริ่มต้นที่ยอดเยี่ยมและมีประโยชน์มากขึ้นกว่า openssl (ซึ่งต้องการการถอดรหัส)
simon

4

ฉันใช้เชลล์สคริปต์สำหรับสิ่งนี้ มันเป็นเพียง wrapper รอบคำสั่ง openssl ที่ช่วยให้ฉันจำไม่ได้ว่าไวยากรณ์

มันมีตัวเลือกสำหรับการแยกวิเคราะห์ข้อมูลใบรับรองส่วนใหญ่ที่ฉันสนใจโดยทั่วไปหรือแสดงเอาต์พุต openssl แบบ raw

สามารถเคียวรีไฟล์ใบรับรองโลคัลหรือรีโมตเซิร์ฟเวอร์

การใช้งาน:

$ ssl-cert-info --help
Usage: ssl-cert-info [options]

This shell script is a simple wrapper around the openssl binary. It uses
s_client to get certificate information from remote hosts, or x509 for local
certificate files. It can parse out some of the openssl output or just dump all
of it as text.

Options:

  --all-info   Print all output, including boring things like Modulus and 
               Exponent.

  --alt        Print Subject Alternative Names. These will be typically be 
               additional hostnames that the certificate is valid for.

  --cn         Print commonName from Subject. This is typically the host for 
               which the certificate was issued.

  --debug      Print additional info that might be helpful when debugging this
               script.

  --end        Print certificate expiration date. For additional functionality
               related to certificate expiration, take a look at this script:
               "http://prefetch.net/code/ssl-cert-check".

  --dates      Print start and end dates of when the certificate is valid.

  --file       Use a local certificate file for input.

  --help       Print this help message.

  --host       Fetch the certificate from this remote host.

  --issuer     Print the certificate issuer.

  --most-info  Print almost everything. Skip boring things like Modulus and
               Exponent.

  --option     Pass any openssl option through to openssl to get its raw
               output.

  --port       Use this port when conneting to remote host. If ommitted, port
               defaults to 443.

  --subject    Print the certificate Subject -- typically address and org name.

Examples:

  1. Print a list of all hostnames that the certificate used by amazon.com 
     is valid for.

     ssl-cert-info --host amazon.com --alt
     DNS:uedata.amazon.com
     DNS:amazon.com
     DNS:amzn.com
     DNS:www.amzn.com
     DNS:www.amazon.com

  2. Print issuer of certificate used by smtp.gmail.com. Fetch certficate info
     over port 465.

     ssl-cert-info --host smtp.gmail.com --port 465 --issuer
     issuer= 
         countryName               = US
         organizationName          = Google Inc
         commonName                = Google Internet Authority G2

  3. Print valid dates for the certificate, using a local file as the source of 
     certificate data. Dates are formatted using the date command and display
     time in your local timezone instead of GMT.

     ssl-cert-info --file /path/to/file.crt --dates
     valid from: 2014-02-04 16:00:00 PST
     valid till: 2017-02-04 15:59:59 PST


  4. Print certificate serial number. This script doesn't have a special option
     to parse out the serial number, so will use the generic --option flag to
     pass '-serial' through to openssl.

     ssl-cert-info --host gmail.com --option -serial
     serial=4BF004B4DDC9C2F8

คุณสามารถรับสคริปต์ได้ที่นี่: http://giantdorks.org/alain/shell-script-to-check-ssl-certificate-info-like-expiration-date-and-subject/


ลิงก์ตาย
Adam Matan

4

หากคุณต้องการทำสิ่งนี้ใน Windows คุณสามารถใช้ PowerShell ด้วยฟังก์ชั่นต่อไปนี้:

function Retrieve-ServerCertFromSocket ($hostname, $port=443, $SNIHeader, [switch]$FailWithoutTrust)
{
    if (!$SNIHeader) {
        $SNIHeader = $hostname
    }

    $cert = $null
    try {
        $tcpclient = new-object System.Net.Sockets.tcpclient
        $tcpclient.Connect($hostname,$port)

        #Authenticate with SSL
        if (!$FailWithoutTrust) {
            $sslstream = new-object System.Net.Security.SslStream -ArgumentList $tcpclient.GetStream(),$false, {$true}
        } else {
            $sslstream = new-object System.Net.Security.SslStream -ArgumentList $tcpclient.GetStream(),$false
        }

        $sslstream.AuthenticateAsClient($SNIHeader)
        $cert =  [System.Security.Cryptography.X509Certificates.X509Certificate2]($sslstream.remotecertificate)

     } catch {
        throw "Failed to retrieve remote certificate from $hostname`:$port because $_"
     } finally {
        #cleanup
        if ($sslStream) {$sslstream.close()}
        if ($tcpclient) {$tcpclient.close()}        
     }    
    return $cert
}

สิ่งนี้ช่วยให้คุณทำสิ่งที่เรียบร้อยเช่น

#Save to file and open 
Retrieve-ServerCertFromSocket www.wrish.com 443 | Export-Certificate -FilePath C:\temp\test.cer ; start c:\temp\test.cer

#Display the cert details
Retrieve-ServerCertFromSocket www.wrish.com 443 | fl subject,*not*,Thumb*,ser*


2

หากคุณต้องการวันหมดอายุเท่านั้น (ซึ่งไม่ใช่คำตอบที่แน่นอน แต่เป็น 9/10 ที่คนใช้รายละเอียดใบรับรอง Chrome สำหรับ) คุณสามารถใช้:

echo | openssl s_client -connect google.com:443 2>/dev/null | openssl x509 -noout -enddate

มีประโยชน์สำหรับสคริปต์ ฯลฯ

c4urself@eos ~ → which ssl_expiry
ssl_expiry () {
  echo | openssl s_client -connect ${1}:443 2> /dev/null | openssl x509 -noout -enddate
}
c4urself@eos ~ → ssl_expiry google.com
notAfter=Jun 12 16:54:00 2018 GMT
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.