fscan/Plugins/WebPoc.go

16 lines
266 B
Go
Raw Normal View History

2024-12-20 17:32:25 +08:00
package Plugins
import (
"github.com/shadow1ng/fscan/Common"
"github.com/shadow1ng/fscan/WebScan"
)
// WebPoc 直接执行Web漏洞扫描
func WebPoc(info *Common.HostInfo) error {
2025-04-18 10:07:05 +08:00
if Common.DisablePocScan {
return nil
}
2024-12-20 17:32:25 +08:00
WebScan.WebScan(info)
return nil
}