mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-05-08 19:56:30 +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
|
||
|
}
|