fixed output of coffee and primary banner
This commit is contained in:
+1
-1
@@ -118,7 +118,7 @@ var (
|
||||
dehasher.Start()
|
||||
fmt.Println("\n[*] Completing Process")
|
||||
|
||||
err := sqlite.StoreQueryOptions(queryOptions)
|
||||
err := sqlite.StoreDehashedQueryOptions(queryOptions)
|
||||
if err != nil {
|
||||
if debugGlobal {
|
||||
debug.PrintInfo("failed to store query options")
|
||||
|
||||
+6
-6
@@ -21,12 +21,12 @@ var (
|
||||
Long: fmt.Sprintf(
|
||||
"%s\n",
|
||||
`
|
||||
╔═╗┬─┐┌─┐┬ ┬┌─┐╔╗╔┌─┐┌─┐┌┬┐
|
||||
║ ├┬┘│ ││││└─┐║║║├┤ └─┐ │
|
||||
╚═╝┴└─└─┘└┴┘└─┘╝╚╝└─┘└─┘ ┴
|
||||
╔═╗┬─┐┌─┐┬ ┬┌─┐╔╗╔┌─┐┌─┐┌┬┐
|
||||
║ ├┬┘│ ││││└─┐║║║├┤ └─┐ │
|
||||
╚═╝┴└─└─┘└┴┘└─┘╝╚╝└─┘└─┘ ┴
|
||||
|
||||
Crow’s Nest OSINT Recon Suite
|
||||
⚓ A KrakenTech Intelligence Tool
|
||||
Crow’s Nest OSINT Recon Suite
|
||||
⚓ A KrakenTech Intelligence Tool
|
||||
`,
|
||||
),
|
||||
Version: "v1.2.1",
|
||||
@@ -124,7 +124,7 @@ var buyMeCoffeeCmd = &cobra.Command{
|
||||
Use: "coffee",
|
||||
Short: "Support the project by buying a coffee",
|
||||
Run: func(cmd *cobra.Command, args []string) {
|
||||
fmt.Println(color.HiRedString(" ;)( ;"))
|
||||
fmt.Println(color.HiRedString(" ;)(; "))
|
||||
fmt.Println(color.HiCyanString(" We Hope You Enjoy Our Product :----:"))
|
||||
fmt.Println(color.HiCyanString(" C|====|"))
|
||||
fmt.Println(color.HiCyanString(" | |"))
|
||||
|
||||
+2
-2
@@ -208,7 +208,7 @@ var (
|
||||
fmt.Printf("[!] Error writing WHOIS history to file: %v\n", writeErr)
|
||||
}
|
||||
|
||||
err = sqlite.StoreHistoryRecord(historyRecords)
|
||||
err = sqlite.StoreWhoisHistoryRecords(historyRecords)
|
||||
if err != nil {
|
||||
if debugGlobal {
|
||||
debug.PrintInfo("failed to store history record")
|
||||
@@ -254,7 +254,7 @@ var (
|
||||
fmt.Printf("Error performing subdomain scan: %v\n", err)
|
||||
} else {
|
||||
fmt.Println("Subdomain Scan:")
|
||||
err = sqlite.StoreSubdomainRecords(subdomains)
|
||||
err = sqlite.StoreWhoisSubdomainRecords(subdomains)
|
||||
if err != nil {
|
||||
if debugGlobal {
|
||||
debug.PrintInfo("failed to store subdomain record")
|
||||
|
||||
Reference in New Issue
Block a user