refactor: 大型重构

This commit is contained in:
ZacharyZcR
2024-12-20 17:32:25 +08:00
parent 9c0fcd98fe
commit 4da94448cb
6 changed files with 214 additions and 135 deletions
+12
View File
@@ -0,0 +1,12 @@
package Plugins
import (
"github.com/shadow1ng/fscan/Common"
"github.com/shadow1ng/fscan/WebScan"
)
// WebPoc 直接执行Web漏洞扫描
func WebPoc(info *Common.HostInfo) error {
WebScan.WebScan(info)
return nil
}