go-portScan icon indicating copy to clipboard operation
go-portScan copied to clipboard

High-performance port scanner. 高性能端口扫描器. syn scanner

Results 3 go-portScan issues
Sort by recently updated
recently updated
newest added

go-portScan-nosyn.exe --ip 1.1.1.1 -p 1-65535 --sV --httpx --oC out.csv --Pn --rate 200 [error] Initialize Scanner: no syn support go-portScan-nosyn.exe --ip 1.1.1.1 -p 1-65535 --sV --httpx --oC out.csv --Pn --rate 200...

请问这款扫描器可以加入代理功能吗

我直接用示例的代码,对单个端口,比如说22进行端口探测,探测不出来是否存活,但是用了top1000去探测就能探测出来22是存活的,大佬帮忙看看这是什么原因造成的,以下是我的代码: ``` import ( "log" "net" "sync" "testing" "time" "github.com/XinRoom/go-portScan/core/port" "github.com/XinRoom/go-portScan/core/port/syn" "github.com/XinRoom/iprange" "github.com/panjf2000/ants/v2" ) func TestMain(t *testing.T) { //single := make(chan struct{}) retChan := make(chan port.OpenIpPort, 65535) // go func()...