Skip to content

Commit

Permalink
Update single email if present (#808)
Browse files Browse the repository at this point in the history
* lint about the encoding of qcstatements for PSD2

* Revert "lint about the encoding of qcstatements for PSD2"

This reverts commit 6c23670.

* util: gtld_map autopull updates for 2021-10-21T07:25:20 UTC

* always check and perform the operation in the execution

* synchronised with project

* synchronised with project

* synchronised with project

* synchronised with project

* added same lint for subject values instead of SAN values

* resolved conflict issue

* addressed review comments and hint to citation from #795

* addressing issue #795 and review comments of PR #802

---------

Co-authored-by: mtg <[email protected]>
Co-authored-by: GitHub <[email protected]>
Co-authored-by: Christopher Henderson <[email protected]>
  • Loading branch information
4 people committed Mar 17, 2024
1 parent e33bae9 commit 32bba7a
Showing 1 changed file with 26 additions and 13 deletions.
39 changes: 26 additions & 13 deletions v3/lints/cabf_smime_br/lint_single_email_if_present.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,33 @@ import (
"github.com/zmap/zlint/v3/util"
)

/*************************************************************************
7.1.4.2.1 Subject alternative name extension
All Mailbox Addresses in the subject field or entries of type dirName of this extension SHALL be
repeated as rfc822Name or otherName values of type id-on-SmtpUTF8Mailbox in this
extension.
7.1.4.2.2 Subject distinguished name fields
h. Certificate Field: subject:emailAddress (1.2.840.113549.1.9.1) Contents: If present, the
subject:emailAddress SHALL contain a single Mailbox Address as verified under
Section 3.2.2.
Combining these requirements, this lint checks for malformed email addresses in SAN entries
covering the case of a non-single Mailbox Address.
*************************************************************************/

func init() {
lint.RegisterCertificateLint(&lint.CertificateLint{
LintMetadata: lint.LintMetadata{
Name: "e_single_email_if_present",
Description: "If present, the subject:emailAddress SHALL contain a single Mailbox Address",
Citation: "7.1.4.2.h",
Description: "If present, the subject:emailAddress SHALL contain a single Mailbox Address. All Mailbox Addresses in the subject field SHALL be repeated as rfc822Name or otherName values of type id-on-SmtpUTF8Mailbox in SAN extension.",
Citation: "7.1.4.2.1 and 7.1.4.2.2.h",
Source: lint.CABFSMIMEBaselineRequirements,
EffectiveDate: util.CABF_SMIME_BRs_1_0_0_Date,
},
Lint: func() lint.LintInterface { return &singleEmailIfPresent{} },
Lint: NewSingleEmailIfPresent,
})
}

Expand All @@ -43,22 +60,18 @@ func NewSingleEmailIfPresent() lint.LintInterface {
}

func (l *singleEmailIfPresent) CheckApplies(c *x509.Certificate) bool {
return util.IsSubscriberCert(c) && c.EmailAddresses != nil && len(c.EmailAddresses) != 0 && util.IsSMIMEBRCertificate(c)
addresses := c.EmailAddresses
return util.IsSubscriberCert(c) && addresses != nil && len(addresses) != 0 && util.IsSMIMEBRCertificate(c)
}

func (l *singleEmailIfPresent) Execute(c *x509.Certificate) *lint.LintResult {
for _, email := range c.EmailAddresses {
_, err := mail.ParseAddress(email)
if err != nil {
if _, err := mail.ParseAddress(email); err != nil {
return &lint.LintResult{
Status: lint.Error,
Details: fmt.Sprintf("subject:emailAddress was present and contained an invalid email address (%s)", email),
LintMetadata: lint.LintMetadata{},
Status: lint.Error,
Details: fmt.Sprintf("san:emailAddress was present and contained an invalid email address (%s)", email),
}
}
}

return &lint.LintResult{
Status: lint.Pass,
}
return &lint.LintResult{Status: lint.Pass}
}

0 comments on commit 32bba7a

Please sign in to comment.