summaryrefslogtreecommitdiffstats
path: root/cmd/dns.go
diff options
context:
space:
mode:
authors <[email protected]>2025-11-08 02:44:13 -0500
committers <[email protected]>2025-11-08 02:44:13 -0500
commitdfcf52f30cdbde3a4e1400024b0c27451d179e5d (patch)
treecdcac72f0d58b0689777644c771e80d53b502434 /cmd/dns.go
parent486a369f05125a3b86d663ea94684466e0658099 (diff)
downloaddborg-dfcf52f30cdbde3a4e1400024b0c27451d179e5d.tar.gz
dborg-dfcf52f30cdbde3a4e1400024b0c27451d179e5d.zip
feat: add unauthenticated client support and new osint/x commands
Diffstat (limited to 'cmd/dns.go')
-rw-r--r--cmd/dns.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dns.go b/cmd/dns.go
index 022d2c9..d6776ee 100644
--- a/cmd/dns.go
+++ b/cmd/dns.go
@@ -29,7 +29,7 @@ func runDNSTLDCheck(cmd *cobra.Command, args []string) error {
showOnly, _ := cmd.Flags().GetString("show-only")
cfg := config.New()
- c, err := client.New(cfg)
+ c, err := client.NewUnauthenticated(cfg)
if err != nil {
return fmt.Errorf("failed to create client: %w", err)
}