mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-11-05 10:45:27 +00:00
13 lines
222 B
Go
13 lines
222 B
Go
|
|
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
|
||
|
|
}
|