Use GO to scan server ports in batches

1. Port Scanner V1 - Basic Operation

package main

import (
"fmt"
"net"
"time"
"unsafe"
)

func main() {
tcpScan("127.0.0.1", 1, 65535)
}

func tcpScan(ip string, portStart int, portEnd int) {
start := time.Now()

// Parameter verification
isok := verifyParam(ip, portStart, portEnd)
if isok == false {
fmt.Printf("[Exit]\n")
}

for i := portStart; i <= portEnd; i++ {
address := fmt.Sprintf("%s:%d", ip, i)
conn, err := net.Dial("tcp", address)
if err != nil {
fmt.Printf("[info] %s Close \n", address)
continue
}
conn.Close()
fmt.Printf("[info] %s Open \n", address)
}

cost := time.Since(start)
fmt.Printf("[tcpScan] cost %s second \n", cost)
}

func verifyParam(ip string, portStart int, portEnd int) bool {
netip := net.ParseIP(ip)
if netip == nil {
fmt.Println("[Error] ip type is must net.ip")
return false
}
fmt.Printf("[Info] ip=%s | ip type is: %T | ip size is: %d \n", netip, netip, unsafe.Sizeof(netip))

if portStart < 1 || portEnd > 65535 {
fmt.Println("[Error] port is must in the range of 1~65535")
return false
}
fmt.Printf("[Info] port start:%d end:%d \n", portStart, portEnd)

return true
}

2. Port scanner V2 - using goroutine

package main

import (
"fmt"
"net"
"sync"
"time"
"unsafe"
)

func main() {
tcpScanByGoroutine("127.0.0.1", 1, 65535)
}

func tcpScanByGoroutine(ip string, portStart int, portEnd int) {
start := time.Now()
// Parameter verification
isok := verifyParam(ip, portStart, portEnd)
if isok == false {
fmt.Printf("[Exit]\n")
}

var wg sync.WaitGroup
for i := portStart; i <= portEnd; i++ {
wg.Add(1)

go func(j int) {
defer wg.Done()
address := fmt.Sprintf("%s:%d", ip, j)
conn, err := net.Dial("tcp", address)
if err != nil {
fmt.Printf("[info] %s Close \n", address)
return
}
conn.Close()
fmt.Printf("[info] %s Open \n", address)
}(i)
}
wg.Wait()

cost := time.Since(start)
fmt.Printf("[tcpScanByGoroutine] cost %s second \n", cost)
}

func verifyParam(ip string, portStart int, portEnd int) bool {
netip := net.ParseIP(ip)
if netip == nil {
fmt.Println("[Error] ip type is must net.ip")
return false
}
fmt.Printf("[Info] ip=%s | ip type is: %T | ip size is: %d \n", netip, netip, unsafe.Sizeof(netip))

if portStart < 1 || portEnd > 65535 {
fmt.Println("[Error] port is must in the range of 1~65535")
return false
}
fmt.Printf("[Info] port start:%d end:%d \n", portStart, portEnd)

return true
}

3. Port Scanner V3 - Using Goroutine + Channel

package main

import (
"fmt"
"net"
"sync"
"time"
"unsafe"
)

func main() {
tcpScanByGoroutineWithChannel("127.0.0.1", 1, 65535)
}

func handleWorker(ip string, ports chan int, wg *sync.WaitGroup) {
for p := range ports {
address := fmt.Sprintf("%s:%d", ip, p)
conn, err := net.Dial("tcp", address)
if err != nil {
fmt.Printf("[info] %s Close \n", address)
wg.Done()
continue
}
conn.Close()
fmt.Printf("[info] %s Open \n", address)
wg.Done()
}
}

func tcpScanByGoroutineWithChannel(ip string, portStart int, portEnd int) {
start := time.Now()

// Parameter verification
isok := verifyParam(ip, portStart, portEnd)
if isok == false {
fmt.Printf("[Exit]\n")
}

ports := make(chan int, 100)
var wg sync.WaitGroup
for i := 0; i < cap(ports); i++ {
go handleWorker(ip, ports, &wg)
}

for i := portStart; i <= portEnd; i++ {
wg.Add(1)
ports <-i
}

wg.Wait()
close(ports)

cost := time.Since(start)
fmt.Printf("[tcpScanByGoroutineWithChannel] cost %s second \n", cost)
}

func verifyParam(ip string, portStart int, portEnd int) bool {
netip := net.ParseIP(ip)
if netip == nil {
fmt.Println("[Error] ip type is must net.ip")
return false
}
fmt.Printf("[Info] ip=%s | ip type is: %T | ip size is: %d \n", netip, netip, unsafe.Sizeof(netip))

if portStart < 1 || portEnd > 65535 {
fmt.Println("[Error] port is must in the range of 1~65535")
return false
}
fmt.Printf("[Info] port start:%d end:%d \n", portStart, portEnd)

return true
}

4 Port Scanner V4 - Introducing two Channels

// package
package main

import (
"fmt"
"net"
"sort"
"time"
"unsafe"
)

func main() {
tcpScanByGoroutineWithChannelAndSort("127.0.0.1", 1, 65535)
}

// The function handles checking if ports are open or closed for a given IP address.
func handleWorker(ip string, ports chan int, results chan int) {
for p := range ports {
address := fmt.Sprintf("%s:%d", ip, p)
conn, err := net.Dial("tcp", address)
if err != nil {
// fmt.Printf("[debug] ip %s Close \n", address)
results <- (-p)
continue
}
// fmt.Printf("[debug] ip %s Open \n", address)
conn.Close()
results <- p
}
}

func tcpScanByGoroutineWithChannelAndSort(ip string, portStart int, portEnd int) {
start := time.Now()

// Parameter verification
isok := verifyParam(ip, portStart, portEnd)
if isok == false {
fmt.Printf("[Exit]\n")
}

ports := make(chan int, 50)
results := make(chan int)
var openSlice[]int
var closeSlice[]int

//Task producer-distribute tasks (create a new goroutinue to distribute data)
go func(a int, b int) {
fori := a; i <= b; i++ {
ports <- i
}
}(portStart, portEnd)

//Task consumer-processing tasks (each port number is assigned a goroutinue for scanning)
//Result producer-every time the result is obtained, it is written into the result chan
for i := 0; i < cap(ports); i++ {
go handleWorker(ip, ports, results)
}

// Result consumer - waiting to collect results (goroutinue in main continuously reads data from chan in a blocking manner)
for i := portStart; i <= portEnd; i++ {
resPort := <-results
if resPort > 0 {
openSlice = append(openSlice, resPort)
} else {
closeSlice = append(closeSlice, -resPort)
}
}

// close chan
close(ports)
close(results)

// sort
sort.Ints(openSlice)
sort.Ints(closeSlice)

//output
for _, p := range openSlice {
fmt.Printf("[info] %s:%-8d Open\n", ip, p)
}
// for _, p := range closeSlice {
// fmt.Printf("[info] %s:%-8d Close\n", ip, p)
// }

cost := time.Since(start)
fmt.Printf("[tcpScanByGoroutineWithChannelAndSort] cost %s second \n", cost)
}

func verifyParam(ip string, portStart int, portEnd int) bool {
netip := net.ParseIP(ip)
if netip == nil {
fmt.Println("[Error] ip type is must net.ip")
return false
}
fmt.Printf("[Info] ip=%s | ip type is: %T | ip size is: %d \n", netip, netip, unsafe.Sizeof(netip))

if portStart < 1 || portEnd > 65535 {
fmt.Println("[Error] port is must in the range of 1~65535")
return false
}
fmt.Printf("[Info] port start:%d end:%d \n", portStart, portEnd)

return true
}
Likes(198)

Comment list count 0 Comments

No Comments

WeChat Self-Service

WeChat Consult

TaoBao

support@elephdev.com

发表
评论
Go
Top