1 Star 0 Fork 0

wangyanfei2016/gotools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tcpPortScan.go 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
wangyanfei2016 提交于 2020-10-26 17:57 . add tcpPortScan.go.
package main
import (
"flag"
"fmt"
"net"
"time"
)
func main() {
ip := flag.String("ip", "", "scan ip")
start := flag.Int("start", 0, "port scope start")
end := flag.Int("end", 0, "port scope end")
timeout := flag.Int("timeout", 1, "port scope timeout, default 1s")
flag.Parse()
filter(*ip, *start, *end, *timeout)
}
func filter(ip string, start int, end int, timeout int) {
port := 0
if ip == "" {
fmt.Printf("%s ip为空\n", ip)
return
}
if timeout <= 0 {
fmt.Printf("%d 超时时间不能设置为负数或0\n", timeout)
return
}
if start != 0 && end == 0 {
port = start
handleScan(ip, start, end, port, timeout)
return
}
if start < end {
for i := start; i < end; i++ {
handleScan(ip, start, end, i, timeout)
}
}
}
func handleScan(ip string, start int, end int, port int, timeout int) {
address := fmt.Sprintf("%s:%d", ip, port)
_, err := net.DialTimeout("tcp", address, time.Duration(timeout)*time.Second)
if err == nil {
fmt.Printf("scan result: %s\tsuccess\n", address)
} else {
fmt.Printf("scan result: %s\tbe rejected\n", address)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/feifocus/gotools.git
git@gitee.com:feifocus/gotools.git
feifocus
gotools
gotools
master

搜索帮助