Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
gboddin committed Oct 25, 2020
1 parent 037bf5d commit 9c6ef2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/leakix-ns/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ func main() {
flag.IntVar(&app.Limit, "l", 100, "Limit results output")
flag.StringVar(&app.ApiKey, "k", "", "API Key")
flag.Usage = func() {
fmt.Printf("Usage of leakix-dns: \n")
fmt.Printf(" ./leakix -d <domain> -l 200\n\n")
fmt.Printf("Usage of leakix-ns: \n")
fmt.Printf(" ./leakix-ns -d <domain> -l 200\n\n")
flag.PrintDefaults()
}
flag.Parse()
Expand All @@ -44,7 +44,7 @@ func (app *App) Run() {
Scope: "service",
Query: fmt.Sprintf("hostname:\"%s\" OR reverse:\"%s\" OR ip:\"%s\"", app.Domain, app.Domain, app.Domain),
ApiKey: app.ApiKey,
Endpoint: "https://staging.leakix.net",
Endpoint: "https://leakix.net",
}
app.Reverse = make(map[string][]LeakIXClient.SearchResult)
app.Forward = make(map[string][]LeakIXClient.SearchResult)
Expand Down

0 comments on commit 9c6ef2f

Please sign in to comment.