mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-07-14 05:12:36 +08:00
21 lines
229 B
Go
21 lines
229 B
Go
package main
|
|
|
|
import (
|
|
"./common"
|
|
"./Plugins"
|
|
"fmt"
|
|
)
|
|
|
|
|
|
func main() {
|
|
var Info common.HostInfo
|
|
common.Flag(&Info) //fmt.Println(Info.Host,Info.Ports)
|
|
common.Parse(&Info)
|
|
Plugins.Scan(&Info)
|
|
fmt.Println("scan end")
|
|
}
|
|
|
|
|
|
|
|
|