mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-09-14 05:56:46 +08:00
16 lines
266 B
Go
16 lines
266 B
Go
package Plugins
|
|
|
|
import (
|
|
"github.com/shadow1ng/fscan/common"
|
|
"github.com/shadow1ng/fscan/webscan"
|
|
)
|
|
|
|
// WebPoc 直接执行Web漏洞扫描
|
|
func WebPoc(info *common.HostInfo) error {
|
|
if common.DisablePocScan {
|
|
return nil
|
|
}
|
|
WebScan.WebScan(info)
|
|
return nil
|
|
}
|