refactor: 输出格式重构,去掉所有插件的多线程,因为多线程会导致结果不准确,加入进度条

This commit is contained in:
ZacharyZcR
2025-01-01 07:18:36 +08:00
parent 277ea5d332
commit ceede3cd68
49 changed files with 1448 additions and 2911 deletions
+2 -2
View File
@@ -83,7 +83,7 @@ func initpoc() {
}
} else {
// 从指定目录加载POC
Common.LogSuccess(fmt.Sprintf("[*] 从目录加载POC: %s", Common.PocPath))
Common.LogSuccess(fmt.Sprintf("从目录加载POC: %s", Common.PocPath))
err := filepath.Walk(Common.PocPath, func(path string, info os.FileInfo, err error) error {
if err != nil || info == nil {
return err
@@ -98,7 +98,7 @@ func initpoc() {
})
if err != nil {
Common.LogError(fmt.Sprintf("[-] 加载外部POC失败: %v", err))
Common.LogError(fmt.Sprintf("加载外部POC失败: %v", err))
}
}
}