mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-09-14 14:06:44 +08:00
15 lines
271 B
Go
15 lines
271 B
Go
package main
|
|
|
|
import (
|
|
"github.com/shadow1ng/fscan/Plugins"
|
|
"github.com/shadow1ng/fscan/common"
|
|
)
|
|
|
|
func main() {
|
|
var Info common.HostInfo
|
|
common.Flag(&Info) //fmt.Println(Info.Host,Info.Ports)
|
|
common.Parse(&Info)
|
|
Plugins.Scan(Info)
|
|
common.LogPrint("scan end .")
|
|
}
|