forked from tillson/git-hound
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroot.go
More file actions
131 lines (120 loc) · 4.87 KB
/
root.go
File metadata and controls
131 lines (120 loc) · 4.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
package cmd
import (
"bufio"
"fmt"
"os"
"github.com/fatih/color"
"github.com/spf13/viper"
"golang.org/x/crypto/ssh/terminal"
"github.com/spf13/cobra"
"github.com/tillson/git-hound/internal/app"
)
// InitializeFlags initializes GitHound's command line flags.
func InitializeFlags() {
rootCmd.PersistentFlags().StringVar(&app.GetFlags().SubdomainFile, "subdomain-file", "", "A file containing a list of subdomains (or other queries).")
rootCmd.PersistentFlags().BoolVar(&app.GetFlags().DigRepo, "dig-files", false, "Dig through the repo's files to find more secrets (CPU intensive).")
rootCmd.PersistentFlags().BoolVar(&app.GetFlags().DigCommits, "dig-commits", false, "Dig through commit history to find more secrets (CPU intensive).")
rootCmd.PersistentFlags().StringVar(&app.GetFlags().RegexFile, "regex-file", "", "Supply your own list of regexes.")
rootCmd.PersistentFlags().StringVar(&app.GetFlags().LanguageFile, "language-file", "", "Supply your own list of languages to search (java, python).")
rootCmd.PersistentFlags().StringVar(&app.GetFlags().ConfigFile, "config-file", "", "Supply the path to a config file.")
rootCmd.PersistentFlags().IntVar(&app.GetFlags().Pages, "pages", 100, "Maximum pages to search per query")
rootCmd.PersistentFlags().BoolVar(&app.GetFlags().ResultsOnly, "results-only", false, "Only print match strings.")
rootCmd.PersistentFlags().BoolVar(&app.GetFlags().NoAPIKeys, "no-api-keys", false, "Don't search for generic API keys.")
rootCmd.PersistentFlags().BoolVar(&app.GetFlags().NoScoring, "no-scoring", false, "Don't use scoring to filter out false positives.")
rootCmd.PersistentFlags().BoolVar(&app.GetFlags().NoFiles, "no-files", false, "Don't search for interesting files.")
rootCmd.PersistentFlags().BoolVar(&app.GetFlags().NoKeywords, "no-keywords", false, "Don't search for built-in keywords")
rootCmd.PersistentFlags().BoolVar(&app.GetFlags().ManyResults, "many-results", false, "Search >100 pages with filtering hack")
rootCmd.PersistentFlags().BoolVar(&app.GetFlags().OnlyFiltered, "filtered-only", false, "Only print filtered results (language files)")
rootCmd.PersistentFlags().IntVar(&app.GetFlags().Threads, "threads", 20, "Threads to dig with (default 10).")
rootCmd.PersistentFlags().BoolVar(&app.GetFlags().NoGists, "no-gists", false, "Don't search Gists")
rootCmd.PersistentFlags().BoolVar(&app.GetFlags().NoRepos, "no-repos", false, "Don't search repos")
rootCmd.PersistentFlags().BoolVar(&app.GetFlags().Debug, "debug", false, "Enables verbose debug logging.")
}
var rootCmd = &cobra.Command{
Use: "githound",
Short: "GitHound is a pattern-matching, batch-catching secret snatcher.",
Long: `GitHound makes it easy to find exposed API keys on GitHub using pattern matching, targetted querying, and a robust scoring system.`,
Run: func(cmd *cobra.Command, args []string) {
ReadConfig()
size, err := app.DirSize("/tmp/githound")
if err == nil && size > 50e+6 {
fmt.Println("Cleaning up local repo storage...")
app.ClearRepoStorage()
}
var queries []string
if cmd.Flag("subdomain-file").Value.String() != "" {
for _, query := range app.GetFileLines(app.GetFlags().SubdomainFile) {
queries = append(queries, query)
}
} else {
if !terminal.IsTerminal(0) {
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
bytes := scanner.Bytes()
str := string(bytes)
if str != "" {
queries = append(queries, str)
}
}
} else {
color.Red("[!] No search queries specified.")
os.Exit(1)
return
}
}
client, err := app.LoginToGitHub(app.GitHubCredentials{
Username: viper.GetString("github_username"),
Password: viper.GetString("github_password"),
})
// if client.
if err != nil {
fmt.Println(err)
color.Red("[!] Unable to login to GitHub.")
os.Exit(1)
}
if !app.GetFlags().ResultsOnly {
color.Cyan("[*] Logged into GitHub as " + viper.GetString("github_username"))
}
for _, query := range queries {
_, err = app.Search(query, client)
if err != nil {
color.Red("[!] Unable to collect search results for query '" + query + "'.")
break
}
}
size, err = app.DirSize("/tmp/githound")
if err == nil && size > 50e+6 {
app.ClearRepoStorage()
}
if !app.GetFlags().ResultsOnly {
color.Green("Finished.")
}
},
}
// Execute command
func Execute() {
InitializeFlags()
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}
// ReadConfig initializes Viper, the config parser
func ReadConfig() {
viper.SetConfigName("config")
viper.AddConfigPath("$HOME/.githound")
viper.AddConfigPath(".")
if app.GetFlags().ConfigFile != "" {
viper.SetConfigFile(app.GetFlags().ConfigFile)
}
err := viper.ReadInConfig()
if err != nil {
if app.GetFlags().ConfigFile != "" {
color.Red("[!] '" + app.GetFlags().ConfigFile + "' was not found.")
} else {
color.Red("[!] config.yml was not found.")
}
os.Exit(1)
return
}
}