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 270 271 272 273 274 275 276 277 278 279 280 281 282
|
// Copyright 2014 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.
package scanner
import (
"context"
"log"
"math/big"
"regexp"
"time"
ct "github.com/google/certificate-transparency-go"
"github.com/google/certificate-transparency-go/asn1"
"github.com/google/certificate-transparency-go/client"
"github.com/google/certificate-transparency-go/x509"
)
// Matcher describes how to match certificates and precertificates, based solely on the parsed [pre-]certificate;
// clients should implement this interface to perform their own match criteria.
type Matcher interface {
// CertificateMatches is called by the scanner for each X509 Certificate found in the log.
// The implementation should return true if the passed Certificate is interesting, and false otherwise.
CertificateMatches(*x509.Certificate) bool
// PrecertificateMatches is called by the scanner for each CT Precertificate found in the log.
// The implementation should return true if the passed Precertificate is interesting, and false otherwise.
PrecertificateMatches(*ct.Precertificate) bool
}
// MatchAll is a Matcher which will match every possible Certificate and Precertificate.
type MatchAll struct{}
// CertificateMatches returns true if the given cert should match; in this case, always.
func (m MatchAll) CertificateMatches(_ *x509.Certificate) bool {
return true
}
// PrecertificateMatches returns true if the given precert should match, in this case, always.
func (m MatchAll) PrecertificateMatches(_ *ct.Precertificate) bool {
return true
}
// MatchNone is a Matcher which will never match any Certificate or Precertificate.
type MatchNone struct{}
// CertificateMatches returns true if the given cert should match; in this case, never.
func (m MatchNone) CertificateMatches(_ *x509.Certificate) bool {
return false
}
// PrecertificateMatches returns true if the given cert should match; in this case, never.
func (m MatchNone) PrecertificateMatches(_ *ct.Precertificate) bool {
return false
}
// MatchSerialNumber performs a match for a specific serial number.
type MatchSerialNumber struct {
SerialNumber big.Int
}
// CertificateMatches returns true if the given cert should match; in this
// case, only if the serial number matches.
func (m MatchSerialNumber) CertificateMatches(c *x509.Certificate) bool {
return c.SerialNumber.String() == m.SerialNumber.String()
}
// PrecertificateMatches returns true if the given cert should match; in this
// case, only if the serial number matches.
func (m MatchSerialNumber) PrecertificateMatches(p *ct.Precertificate) bool {
return p.TBSCertificate.SerialNumber.String() == m.SerialNumber.String()
}
// MatchSubjectRegex is a Matcher which will use CertificateSubjectRegex and PrecertificateSubjectRegex
// to determine whether Certificates and Precertificates are interesting.
// The two regexes are tested against Subject CN (Common Name) as well as all
// Subject Alternative Names
type MatchSubjectRegex struct {
CertificateSubjectRegex *regexp.Regexp
PrecertificateSubjectRegex *regexp.Regexp
}
// CertificateMatches returns true if either CN or any SAN of c matches m.CertificateSubjectRegex.
func (m MatchSubjectRegex) CertificateMatches(c *x509.Certificate) bool {
if m.CertificateSubjectRegex.FindStringIndex(c.Subject.CommonName) != nil {
return true
}
for _, alt := range c.DNSNames {
if m.CertificateSubjectRegex.FindStringIndex(alt) != nil {
return true
}
}
return false
}
// PrecertificateMatches returns true if either CN or any SAN of p matches m.PrecertificateSubjectRegex.
func (m MatchSubjectRegex) PrecertificateMatches(p *ct.Precertificate) bool {
if m.PrecertificateSubjectRegex.FindStringIndex(p.TBSCertificate.Subject.CommonName) != nil {
return true
}
for _, alt := range p.TBSCertificate.DNSNames {
if m.PrecertificateSubjectRegex.FindStringIndex(alt) != nil {
return true
}
}
return false
}
// MatchIssuerRegex matches on issuer CN (common name) by regex
type MatchIssuerRegex struct {
CertificateIssuerRegex *regexp.Regexp
PrecertificateIssuerRegex *regexp.Regexp
}
// CertificateMatches returns true if the given cert's CN matches.
func (m MatchIssuerRegex) CertificateMatches(c *x509.Certificate) bool {
return m.CertificateIssuerRegex.FindStringIndex(c.Issuer.CommonName) != nil
}
// PrecertificateMatches returns true if the given precert's CN matches.
func (m MatchIssuerRegex) PrecertificateMatches(p *ct.Precertificate) bool {
return m.PrecertificateIssuerRegex.FindStringIndex(p.TBSCertificate.Issuer.CommonName) != nil
}
// MatchSCTTimestamp is a matcher which matches leaf entries with the specified Timestamp.
type MatchSCTTimestamp struct {
Timestamp uint64
}
// Matches returns true if the timestamp embedded in the leaf matches the one
// specified by this matcher.
func (m MatchSCTTimestamp) Matches(leaf *ct.LeafEntry) bool {
entry, _ := ct.LogEntryFromLeaf(1, leaf)
if entry == nil {
// Can't validate if we can't parse
return false
}
return entry.Leaf.TimestampedEntry.Timestamp == m.Timestamp
}
// LeafMatcher describes how to match log entries, based on the Log LeafEntry
// (which includes the unparsed [pre-]certificate; clients should implement this
// interface to perform their own match criteria.
type LeafMatcher interface {
Matches(*ct.LeafEntry) bool
}
// CertParseFailMatcher is a LeafMatcher which will match any Certificate or Precertificate that
// triggered an error on parsing.
type CertParseFailMatcher struct {
MatchNonFatalErrs bool
}
// Matches returns true for parse errors.
func (m CertParseFailMatcher) Matches(leaf *ct.LeafEntry) bool {
_, err := ct.LogEntryFromLeaf(1, leaf)
if err != nil {
if x509.IsFatal(err) {
return true
}
return m.MatchNonFatalErrs
}
return false
}
// CertVerifyFailMatcher is a LeafMatcher which will match any Certificate or Precertificate that fails
// validation. The PopulateRoots() method should be called before use.
type CertVerifyFailMatcher struct {
roots *x509.CertPool
}
// PopulateRoots adds the accepted roots for the log to the pool for validation.
func (m *CertVerifyFailMatcher) PopulateRoots(ctx context.Context, logClient *client.LogClient) {
if m.roots != nil {
return
}
m.roots = x509.NewCertPool()
roots, err := logClient.GetAcceptedRoots(ctx)
if err != nil {
log.Fatal(err)
}
for _, root := range roots {
cert, _ := x509.ParseCertificate(root.Data)
if cert != nil {
m.roots.AddCert(cert)
} else {
log.Fatal(err)
}
}
}
// Matches returns true for validation errors.
func (m CertVerifyFailMatcher) Matches(leaf *ct.LeafEntry) bool {
entry, _ := ct.LogEntryFromLeaf(1, leaf)
if entry == nil {
// Can't validate if we can't parse
return false
}
// Validate the [pre-]certificate as of just before its expiry.
var notBefore time.Time
if entry.X509Cert != nil {
notBefore = entry.X509Cert.NotAfter
} else {
notBefore = entry.Precert.TBSCertificate.NotAfter
}
when := notBefore.Add(-1 * time.Second)
opts := x509.VerifyOptions{
KeyUsages: []x509.ExtKeyUsage{x509.ExtKeyUsageAny},
Roots: m.roots,
Intermediates: x509.NewCertPool(),
CurrentTime: when,
}
chain := make([]*x509.Certificate, len(entry.Chain))
for ii, cert := range entry.Chain {
intermediate, err := x509.ParseCertificate(cert.Data)
if intermediate == nil {
log.Printf("Intermediate %d fails to parse: %v", ii, err)
return true
}
chain[ii] = intermediate
opts.Intermediates.AddCert(intermediate)
}
if entry.X509Cert != nil {
if _, err := entry.X509Cert.Verify(opts); err != nil {
log.Printf("Cert fails to validate as of %v: %v", opts.CurrentTime, err)
return true
}
return false
}
if entry.Precert != nil {
precert, err := x509.ParseCertificate(entry.Precert.Submitted.Data)
if err != nil {
log.Printf("Precert fails to parse as of %v: %v", opts.CurrentTime, err)
return true
}
// Ignore unhandled poison extension.
dropUnhandledExtension(precert, x509.OIDExtensionCTPoison)
for i := 1; i < len(chain); i++ {
// PolicyConstraints is legal (and critical) but unparsed.
dropUnhandledExtension(chain[i], x509.OIDExtensionPolicyConstraints)
}
// Drop CT EKU from preissuer if present.
if len(chain) > 0 {
for i, eku := range chain[0].ExtKeyUsage {
if eku == x509.ExtKeyUsageCertificateTransparency {
chain[0].ExtKeyUsage = append(chain[0].ExtKeyUsage[:i], chain[0].ExtKeyUsage[i+1:]...)
break
}
}
}
if _, err := precert.Verify(opts); err != nil {
log.Printf("Precert fails to validate as of %v: %v", opts.CurrentTime, err)
return true
}
return false
}
log.Printf("Neither cert nor precert present!")
return true
}
func dropUnhandledExtension(cert *x509.Certificate, oid asn1.ObjectIdentifier) {
for j, extOID := range cert.UnhandledCriticalExtensions {
if extOID.Equal(oid) {
cert.UnhandledCriticalExtensions = append(cert.UnhandledCriticalExtensions[:j], cert.UnhandledCriticalExtensions[j+1:]...)
return
}
}
}
|