Skip to content

dtx/go-portscan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Port scanning for Go with support for concurrency.

Much faster than nmap for basic port checking, currently only supports TCP networks. But can be easily modified to check UDP, IPV6 and other networks.

There is a similar tool https://github.com/Sinute/golang-portScan that I tried to use/debug unsuccessfuly. So this one supports YAML for configuration and better concepts for concurrency, IP validation and calculation.

Usage:

$> go get github.com/dtx/go-portscan
$> cat << EOF > config
--- 
ip: 
  - 
    range: "127.0.0.1/32:20000-50000"
  - 
    range: "8.8.8.8/32:53"

timeout: 5
concurrency: 100
EOF
$> go-portscan

About

Concurrent port scanner written in Go

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages