fscan/Plugins/WebPoc.go

13 lines
222 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 {
WebScan.WebScan(info)
return nil
}