mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-05-07 11:16:31 +00:00
18 lines
298 B
Go
18 lines
298 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/shadow1ng/fscan/Common"
|
|
"github.com/shadow1ng/fscan/Core"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
start := time.Now()
|
|
var Info Common.HostInfo
|
|
Common.Flag(&Info)
|
|
Common.Parse(&Info)
|
|
Core.Scan(Info)
|
|
fmt.Printf("[*] 扫描结束,耗时: %s\n", time.Since(start))
|
|
}
|