mirror of
https://github.com/bettercap/bettercap
synced 2025-08-14 02:36:57 -07:00
Add TLS support for DNS proxy, implement backwards compatible DNS record conversion.
This commit is contained in:
parent
a49d561dce
commit
43f1013f0d
8 changed files with 1603 additions and 145 deletions
|
@ -40,6 +40,14 @@ var (
|
|||
OrganizationalUnit: "https://certs.godaddy.com/repository/",
|
||||
CommonName: "Go Daddy Secure Certificate Authority - G2",
|
||||
}
|
||||
DefaultCloudflareDNSConfig = CertConfig{
|
||||
Bits: 4096,
|
||||
Country: "US",
|
||||
Locality: "San Francisco",
|
||||
Organization: "Cloudflare, Inc.",
|
||||
OrganizationalUnit: "",
|
||||
CommonName: "cloudflare-dns.com",
|
||||
}
|
||||
)
|
||||
|
||||
func CertConfigToModule(prefix string, m *session.SessionModule, defaults CertConfig) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue