Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions va/caa.go
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,16 @@ func (va *ValidationAuthorityImpl) validateCAA(caaSet *caaResult, wildcard bool,
continue
}

for _, param := range parsedParams {
// The existence of any parameters other than the ones we recognize means
// that this user wants something we don't understand. Don't interpret
// this record as allowing issuance. We're case-sensitive here to be
// strict in what we accept.
if param.tag != "accounturi" && param.tag != "validationmethods" {
continue
}
}

if !caaAccountURIMatches(parsedParams, va.accountURIPrefixes, params.accountURIID) {
continue
}
Expand Down