1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
|
// Copyright 2018 Google LLC. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// sctcheck is a utility to show and check embedded SCTs (Signed Certificate
// Timestamps) in certificates.
package main
import (
"bytes"
"context"
"crypto/tls"
"errors"
"flag"
"fmt"
"net"
"net/http"
"net/url"
"os"
"strings"
"time"
"github.com/google/certificate-transparency-go/ctutil"
"github.com/google/certificate-transparency-go/loglist3"
"github.com/google/certificate-transparency-go/x509"
"github.com/google/certificate-transparency-go/x509util"
"k8s.io/klog/v2"
ct "github.com/google/certificate-transparency-go"
)
var (
logList = flag.String("log_list", loglist3.AllLogListURL, "Location of master CT log list (URL or filename)")
deadline = flag.Duration("deadline", 30*time.Second, "Timeout deadline for HTTP requests")
checkInclusion = flag.Bool("check_inclusion", true, "Whether to check SCT inclusion in issuing CT log")
)
type logInfoFactory func(*loglist3.Log, *http.Client) (*ctutil.LogInfo, error)
func main() {
klog.InitFlags(nil)
flag.Parse()
ctx := context.Background()
hc := &http.Client{Timeout: *deadline}
llData, err := x509util.ReadFileOrURL(*logList, hc)
if err != nil {
klog.Exitf("Failed to read log list: %v", err)
}
ll, err := loglist3.NewFromJSON(llData)
if err != nil {
klog.Exitf("Failed to parse log list: %v", err)
}
lf := ctutil.NewLogInfo
totalInvalid := 0
for _, arg := range flag.Args() {
var chain []*x509.Certificate
var valid, invalid int
if strings.HasPrefix(arg, "https://") {
// Get chain served online for TLS connection to site, and check any SCTs
// provided alongside on the connection along the way.
chain, valid, invalid, err = getAndCheckSiteChain(ctx, lf, arg, ll, hc)
if err != nil {
klog.Errorf("%s: failed to get cert chain: %v", arg, err)
continue
}
klog.Errorf("Found %d external SCTs for %q, of which %d were validated", valid+invalid, arg, valid)
totalInvalid += invalid
} else {
// Treat the argument as a certificate file to load.
data, err := os.ReadFile(arg)
if err != nil {
klog.Errorf("%s: failed to read data: %v", arg, err)
continue
}
chain, err = x509util.CertificatesFromPEM(data)
if err != nil {
klog.Errorf("%s: failed to read cert data: %v", arg, err)
continue
}
}
if len(chain) == 0 {
klog.Errorf("%s: no certificates found", arg)
continue
}
// Check the chain for embedded SCTs.
valid, invalid = checkChain(ctx, lf, chain, ll, hc)
klog.Errorf("Found %d embedded SCTs for %q, of which %d were validated", valid+invalid, arg, valid)
totalInvalid += invalid
}
if totalInvalid > 0 {
os.Exit(1)
}
}
// checkChain iterates over any embedded SCTs in the leaf certificate of the chain
// and checks those SCTs. Returns the counts of valid and invalid embedded SCTs found.
func checkChain(ctx context.Context, lf logInfoFactory, chain []*x509.Certificate, ll *loglist3.LogList, hc *http.Client) (int, int) {
leaf := chain[0]
if len(leaf.SCTList.SCTList) == 0 {
return 0, 0
}
var issuer *x509.Certificate
for i := 1; i < len(chain); i++ {
c := chain[i]
if bytes.Equal(c.RawSubject, leaf.RawIssuer) && c.CheckSignature(leaf.SignatureAlgorithm, leaf.RawTBSCertificate, leaf.Signature) == nil {
issuer = c
if i > 1 {
klog.Warningf("Certificate chain out of order; issuer cert found at index %d", i)
}
break
}
}
if issuer == nil {
klog.Info("No issuer in chain; attempting online retrieval")
var err error
issuer, err = x509util.GetIssuer(leaf, hc)
if err != nil {
klog.Errorf("Failed to get issuer online: %v", err)
}
}
// Build a Merkle leaf that corresponds to the embedded SCTs. We can use the same
// leaf for all of the SCTs, as long as the timestamp field gets updated.
merkleLeaf, err := ct.MerkleTreeLeafForEmbeddedSCT([]*x509.Certificate{leaf, issuer}, 0)
if err != nil {
klog.Errorf("Failed to build Merkle leaf: %v", err)
return 0, len(leaf.SCTList.SCTList)
}
var valid, invalid int
for i, sctData := range leaf.SCTList.SCTList {
subject := fmt.Sprintf("embedded SCT[%d]", i)
if checkSCT(ctx, lf, subject, merkleLeaf, &sctData, ll, hc) {
valid++
} else {
invalid++
}
}
return valid, invalid
}
// getAndCheckSiteChain retrieves and returns the chain of certificates presented
// for an HTTPS site. Along the way it checks any external SCTs that are served
// up on the connection alongside the chain. Returns the chain and counts of
// valid and invalid external SCTs found.
func getAndCheckSiteChain(ctx context.Context, lf logInfoFactory, target string, ll *loglist3.LogList, hc *http.Client) ([]*x509.Certificate, int, int, error) {
u, err := url.Parse(target)
if err != nil {
return nil, 0, 0, fmt.Errorf("failed to parse URL: %v", err)
}
if u.Scheme != "https" {
return nil, 0, 0, errors.New("non-https URL provided")
}
host := u.Host
if !strings.Contains(host, ":") {
host += ":443"
}
klog.Infof("Retrieve certificate chain from TLS connection to %q", host)
dialer := net.Dialer{Timeout: hc.Timeout}
// Insecure TLS connection here so we can always proceed.
conn, err := tls.DialWithDialer(&dialer, "tcp", host, &tls.Config{InsecureSkipVerify: true})
if err != nil {
return nil, 0, 0, fmt.Errorf("failed to dial %q: %v", host, err)
}
defer func() {
if err := conn.Close(); err != nil {
klog.Errorf("conn.Close()=%q", err)
}
}()
goChain := conn.ConnectionState().PeerCertificates
klog.Infof("Found chain of length %d", len(goChain))
// Convert base crypto/x509.Certificates to our forked x509.Certificate type.
chain := make([]*x509.Certificate, len(goChain))
for i, goCert := range goChain {
cert, err := x509.ParseCertificate(goCert.Raw)
if err != nil {
return nil, 0, 0, fmt.Errorf("failed to convert Go Certificate [%d]: %v", i, err)
}
chain[i] = cert
}
// Check externally-provided SCTs.
var valid, invalid int
scts := conn.ConnectionState().SignedCertificateTimestamps
if len(scts) > 0 {
merkleLeaf, err := ct.MerkleTreeLeafFromChain(chain, ct.X509LogEntryType, 0 /* timestamp added later */)
if err != nil {
klog.Errorf("Failed to build Merkle tree leaf: %v", err)
return chain, 0, len(scts), nil
}
for i, sctData := range scts {
subject := fmt.Sprintf("external SCT[%d]", i)
if checkSCT(ctx, lf, subject, merkleLeaf, &x509.SerializedSCT{Val: sctData}, ll, hc) {
valid++
} else {
invalid++
}
}
}
return chain, valid, invalid, nil
}
// checkSCT performs checks on an SCT and Merkle tree leaf, performing both
// signature validation and online log inclusion checking. Returns whether
// the SCT is valid.
func checkSCT(ctx context.Context, liFactory logInfoFactory, subject string, merkleLeaf *ct.MerkleTreeLeaf, sctData *x509.SerializedSCT, ll *loglist3.LogList, hc *http.Client) bool {
sct, err := x509util.ExtractSCT(sctData)
if err != nil {
klog.Errorf("Failed to deserialize %s data: %v", subject, err)
klog.Errorf("Data: %x", sctData.Val)
return false
}
klog.Infof("Examine %s with timestamp: %d (%v) from logID: %x", subject, sct.Timestamp, ct.TimestampToTime(sct.Timestamp), sct.LogID.KeyID[:])
log := ll.FindLogByKeyHash(sct.LogID.KeyID)
if log == nil {
klog.Warningf("Unknown logID: %x, cannot validate %s", sct.LogID, subject)
return false
}
logInfo, err := liFactory(log, hc)
if err != nil {
klog.Errorf("Failed to build log info for %q log: %v", log.Description, err)
return false
}
result := true
klog.Infof("Validate %s against log %q...", subject, logInfo.Description)
if err := logInfo.VerifySCTSignature(*sct, *merkleLeaf); err != nil {
klog.Errorf("Failed to verify %s signature from log %q: %v", subject, log.Description, err)
result = false
} else {
klog.Infof("Validate %s against log %q... validated", subject, log.Description)
}
if *checkInclusion {
klog.Infof("Check %s inclusion against log %q...", subject, log.Description)
index, err := logInfo.VerifyInclusion(ctx, *merkleLeaf, sct.Timestamp)
if err != nil {
age := time.Since(ct.TimestampToTime(sct.Timestamp))
if age < logInfo.MMD {
klog.Warningf("Failed to verify inclusion proof (%v) but %s timestamp is only %v old, less than log's MMD of %d seconds", err, subject, age, log.MMD)
} else {
klog.Errorf("Failed to verify inclusion proof for %s: %v", subject, err)
}
return false
}
klog.Infof("Check %s inclusion against log %q... included at %d", subject, log.Description, index)
}
return result
}
|