-
Notifications
You must be signed in to change notification settings - Fork 51
/
main.go
92 lines (78 loc) · 2.07 KB
/
main.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
/*
(c) Yariya
*/
package main
import (
"encoding/json"
"flag"
"fmt"
"log"
"math/rand"
"os"
"os/signal"
"strings"
"time"
)
var port = flag.Int("p", 80, "proxy port")
var output = flag.String("o", "output.txt", "output file")
var configFile = flag.String("cfg", "config.json", "configuration file")
var input = flag.String("in", "", "input file to check")
var fetch = flag.String("url", "", "url proxy fetch")
const wt = 3
type Api struct {
Status string `json:"Status"`
Reason string `json:"Reason"`
}
type Config struct {
CheckSite string `json:"check-site"`
ProxyType string `json:"proxy-type"`
HttpThreads int `json:"http_threads"`
Headers struct {
UserAgent string `json:"user-agent"`
Accept string `json:"accept"`
} `json:"headers"`
PrintIps struct {
Enabled bool `json:"enabled"`
DisplayIpInfo bool `json:"display-ip-info"`
} `json:"print_ips"`
Timeout struct {
HttpTimeout int `json:"http_timeout"`
Socks4Timeout int `json:"socks4_timeout"`
Socks5Timeout int `json:"socks5_timeout"`
} `json:"timeout"`
}
var config Config
func main() {
if strings.Contains(strings.Join(os.Args[0:], ""), "-h") {
fmt.Printf("\t\tZmap ProxyScanner @tcpfin\nHelp:\n\t-p <port> - Port you want to scan.\n\t-o <proxies.txt> - Writes proxy hits to file.\n\n\t-input <proxies.txt> - Loads the proxy list and checks it.\n\t-url https://api.com/proxies - Loads the proxies from an api and checks it.\n\n\tconfig.json - Customize the whole proxy checker\n")
return
}
flag.Parse()
rand.Seed(time.Now().UnixNano())
cfgBytes, err := os.ReadFile(*configFile)
if err != nil {
log.Println("error while opening config file")
return
}
err = json.Unmarshal(cfgBytes, &config)
if err != nil {
fmt.Println("error while parsing config json")
return
}
_ = os.Remove(*output)
exporter = &Exporter{
out: *output,
}
go exporter.create()
go Queue()
go Scanner()
for x := 0; x < wt; x++ {
go Proxies.WorkerThread()
}
go Stater()
time.Sleep(time.Second)
sc := make(chan os.Signal, 1)
signal.Notify(sc, os.Kill, os.Interrupt)
<-sc
exporter.Close()
}