-
Notifications
You must be signed in to change notification settings - Fork 12
/
hiddentreasure.go
185 lines (143 loc) · 3.27 KB
/
hiddentreasure.go
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/*
Copyright (c) 2019, AverageSecurityGuy
# All rights reserved.
*/
package main
import (
"bufio"
"fmt"
"io/ioutil"
"net/http"
"os"
"strings"
"sync"
"time"
)
func printLine(msg string) {
fmt.Printf("[*] %s\n", msg)
}
func printGood(msg string) {
fmt.Printf("[+] %s\n", msg)
}
func printError(msg string) {
fmt.Printf("[E] %s\n", msg)
}
func open(fileName string) *os.File {
file, err := os.Open(fileName)
if err != nil {
printError(err.Error())
}
return file
}
func checkHost(host string) []string {
var hosts []string
httpNoExist := fmt.Sprintf("http://%s/mbRPPgCdHHcqu6wYgMaC7Z0u", host)
exist, _, err := getUrl(httpNoExist)
// If there is an error or the page exists, I do not want to keep this host.
if !((err != nil) || (exist)) {
hosts = append(hosts, fmt.Sprintf("http://%s", host))
}
httpsNoExist := fmt.Sprintf("https://%s/mbRPPgCdHHcqu6wYgMaC7Z0u", host)
exist, _, err = getUrl(httpsNoExist)
if !((err != nil) || (exist)) {
hosts = append(hosts, fmt.Sprintf("https://%s", host))
}
return hosts
}
func getHosts(hostChan chan string, hostFile string) {
hosts := open(hostFile)
hscan := bufio.NewScanner(hosts)
for hscan.Scan() {
host := hscan.Text()
if strings.HasPrefix(host, "#") || host == "" {
continue
}
hostChan <- host
}
close(hostChan)
}
func getWords(wordFile string) []string {
var words []string
file := open(wordFile)
scan := bufio.NewScanner(file)
for scan.Scan() {
word := scan.Text()
if strings.HasPrefix(word, "#") || word == "" {
continue
}
words = append(words, word)
}
return words
}
func processHost(host string, endPoints, badWords []string) {
for _, host := range checkHost(host) {
for _, ep := range endPoints {
url := fmt.Sprintf("%s/%s", host, ep)
exist, body, _ := getUrl(url)
// If the page exists and the body is not bad, I want it.
if exist && !badBody(body, badWords) {
printGood(url)
}
}
}
}
func badBody(body string, badWords []string) bool {
if body == "" {
return true
}
for _, word := range badWords {
if strings.Contains(body, word) {
return true
}
}
return false
}
func getUrl(url string) (bool, string, error) {
var netClient = &http.Client{
Timeout: time.Second * 5,
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse
},
}
resp, err := netClient.Get(url)
if err != nil {
return false, "", err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
switch {
case err != nil:
return false, "", err
case resp.StatusCode == 200:
return true, string(body), nil
default:
return false, "", nil
}
}
func main() {
// handle arguments
if len(os.Args) != 4 {
fmt.Println("Usage: hiddentreasure host_file end_point_file bad_word_file")
os.Exit(1)
}
var wg sync.WaitGroup
hostFile := os.Args[1]
wordFile := os.Args[2]
badFile := os.Args[3]
endPoints := getWords(wordFile)
badWords := getWords(badFile)
hostChan := make(chan string, 100)
// Workers to check for good URLs
for i := 0; i < 20; i++ {
wg.Add(1)
go func(hosts chan string, endPoints []string) {
defer wg.Done()
for host := range hostChan {
processHost(host, endPoints, badWords)
}
}(hostChan, endPoints)
}
// Build channel of valid hosts
go getHosts(hostChan, hostFile)
wg.Wait()
}