Projects STRLCPY metabigor Commits 7b8c30ef
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■
    README.md
    skipped 101 lines
    102 102  echo 'https://example.com' | metabigor related -s 'google-analytic'
    103 103   
    104 104  # You can also search it directly from the UA ID too
    105  -metabigor tld -s 'google-analytic' -i 'UA-9152XXX' --debug
     105 +metabigor related -s 'google-analytic' -i 'UA-9152XXX' --debug
    106 106  ```
    107 107   
    108 108  ***
    skipped 63 lines
  • ■ ■ ■ ■ ■ ■
    cmd/related.go
    skipped 12 lines
    13 13   
    14 14  func init() {
    15 15   var tldCmd = &cobra.Command{
    16  - Use: "related",
    17  - Short: "Finding more related domains of the target by applying various techniques",
    18  - Long: fmt.Sprintf(`Metabigor - Intelligence Tool but without API key - %v by %v`, core.VERSION, core.AUTHOR),
    19  - RunE: runTLD,
     16 + Use: "related",
     17 + Aliases: []string{"tld", "relate"},
     18 + Short: "Finding more related domains of the target by applying various techniques",
     19 + Long: fmt.Sprintf(`Metabigor - Intelligence Tool but without API key - %v by %v`, core.VERSION, core.AUTHOR),
     20 + RunE: runTLD,
    20 21   }
    21 22   tldCmd.Flags().StringVarP(&options.Tld.Source, "src", "s", "all", "Source for gathering TLD")
    22 23   RootCmd.AddCommand(tldCmd)
    skipped 51 lines
  • ■ ■ ■ ■
    cmd/root.go
    skipped 121 lines
    122 122   
    123 123  ## Getting more related by searching for google analytics ID
    124 124  echo 'https://example.com' | metabigor related -s 'google-analytic'
    125  -metabigor tld -s 'google-analytic' -i 'UA-9152XXX' --debug
     125 +metabigor related -s 'google-analytic' -i 'UA-9152XXX' --debug
    126 126  `
    127 127   fmt.Printf(h)
    128 128  }
    skipped 1 lines
Please wait...
Page is in error, reload to recover