Skip to content

Commit a6b8092

Browse files
fix: skip dns caa record check
1 parent 6510af3 commit a6b8092

2 files changed

Lines changed: 0 additions & 6 deletions

File tree

py/domain_verifier.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -571,9 +571,6 @@ async def verify_domain_attestation(attestation: DomainAttestation) -> None:
571571
# 4. Verify SSL certificate
572572
await check_certificate(attestation)
573573

574-
# 5. Verify DNS CAA record
575-
await check_dns_caa(attestation)
576-
577574

578575
async def fetch_domain_attestation() -> DomainAttestation:
579576
"""Fetch domain attestations from /evidences/ directory."""

ts/domain_verifier.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -448,9 +448,6 @@ async function verifyDomainAttestation(attestation: DomainAttestation): Promise<
448448

449449
// 4. Verify SSL certificate
450450
await checkCertificate(attestation);
451-
452-
// 5. Verify DNS CAA record
453-
await checkDnsCAA(attestation);
454451
}
455452

456453
/**

0 commit comments

Comments
 (0)