Documentation
¶
Overview ¶
Package GoScan is a blanzingly fast network/port scanner written in Go
Index ¶
- func GetService(port int) string
- func GetSubnetMask(suffix int) string
- func IsIPReachable(ipAddr string, timeout time.Duration) (bool, error)
- func ResultOutput(results []ScanResult)
- func ScanNetHosts(network NetworkInfo, portRange [2]int, scanInterval time.Duration, ...) ([][2]any, []error)
- func ScanNetHostsFast(network NetworkInfo, portRange [2]int, timeout time.Duration) [][2]any
- func ValidateIpv4(ipaddr string) (bool, error)
- type NetworkInfo
- type ScanResult
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetService ¶ added in v0.1.8
The GetService returns the service for the given port.
Example ¶
package main import ( "fmt" GoScan "github.com/menaruben/GoScan" ) func main() { service := GoScan.GetService(22) fmt.Println(service) }
Output: SSH (Secure Shell)
func GetSubnetMask ¶ added in v0.1.8
GetSubnetMask returns the subnet mask in the x.x.x.x format and takes the subnet suffix as input.
Example ¶
package main import ( "fmt" GoScan "github.com/menaruben/GoScan" ) func main() { subnetMask := GoScan.GetSubnetMask(25) fmt.Println(subnetMask) }
Output: 255.255.255.128
func IsIPReachable ¶ added in v0.1.10
IsIPReachable returns if an IP address is reachable
Example ¶
package main import ( "fmt" GoScan "github.com/menaruben/GoScan" "time" ) func main() { validCheck, err := GoScan.IsIPReachable("142.250.203.100", 12*time.Second) if err != nil { fmt.Println(err) } fmt.Println(validCheck) }
Output: true
func ResultOutput ¶
func ResultOutput(results []ScanResult)
ResultOutput prints the output to the terminal as a table.
Example ¶
package main import ( GoScan "github.com/menaruben/GoScan" "time" ) func main() { // scan ports 20 to 30 portRange := [2]int{20, 30} // scan ports concurrently result := GoScan.ScanHostFast("localhost", portRange, 12*time.Second) GoScan.ResultOutput(result) }
Output: +------+-------+--------------------+ | PORT | STATE | SERVICE | +------+-------+--------------------+ | 22 | open | SSH (Secure Shell) | +------+-------+--------------------+
func ScanNetHosts ¶ added in v0.1.15
func ScanNetHosts(network NetworkInfo, portRange [2]int, scanInterval time.Duration, timeout time.Duration) ([][2]any, []error)
ScanNetHosts returns an array of an array of scan results of all hosts inside a network
Example ¶
package main import ( "fmt" GoScan "github.com/menaruben/GoScan" "time" ) func main() { portRange := [2]int{20, 30} myNetwork, _ := GoScan.ScanNetwork("192.168.1.0/24", 12*time.Second) myResult, err := GoScan.ScanNetHosts(myNetwork, portRange, 0*time.Second, 12*time.Second) if err != nil { fmt.Println(err) } fmt.Println(myResult) }
Output: [[192.168.1.74 []] [192.168.1.19 [{22 true}]]
func ScanNetHostsFast ¶ added in v0.1.15
func ScanNetHostsFast(network NetworkInfo, portRange [2]int, timeout time.Duration) [][2]any
ScanNetHostsFast returns an array of an array of scan results of all hosts inside a network
Example ¶
package main import ( "fmt" GoScan "github.com/menaruben/GoScan" "time" ) func main() { portRange := [2]int{20, 30} myNetwork, err := GoScan.ScanNetwork("192.168.1.0/24", 12*time.Second) if err != nil { fmt.Println(err) } myResult := GoScan.ScanNetHostsFast(myNetwork, portRange, 12*time.Second) fmt.Println(myResult) }
Output: [[192.168.1.19 [{22 true}]] [192.168.1.74 []]
func ValidateIpv4 ¶ added in v0.1.8
ValidateIpv4 returns a bool and checks wether the input is a valid IPv4 address.
Example ¶
package main import ( "fmt" GoScan "github.com/menaruben/GoScan" ) func main() { validCheck, err := GoScan.ValidateIpv4("192.168.100.29") if err != nil { fmt.Println(err) } fmt.Println(validCheck) }
Output: true
Types ¶
type NetworkInfo ¶ added in v0.1.10
NetworkInfo contains information about a network.
func ScanNetwork ¶ added in v0.1.10
func ScanNetwork(netaddr string, timeout time.Duration) (NetworkInfo, error)
ScanNetwork returns NetworkInfo about a specific network. It contains the network IP, subnet mask/suffix and all hosts.
Example ¶
package main import ( "fmt" GoScan "github.com/menaruben/GoScan" "time" ) func main() { myNetwork, err := GoScan.ScanNetwork("192.168.1.0/24", 12*time.Second) if err != nil { fmt.Println(err) } fmt.Println(myNetwork) }
Output: {192.168.1.0 255.255.255.0 24 [192.168.1.19 192.168.1.4 192.168.1.101]}
type ScanResult ¶
ScanResult struct contains the port and its state as a boolean (open = true, closed = false).
func ScanHost ¶
func ScanHost(hostname string, portRange [2]int, scanInterval time.Duration, timeout time.Duration) ([]ScanResult, error)
ScanHost scans all ports inside the portRange argument and returns all open ports.
Example ¶
package main import ( "fmt" GoScan "github.com/menaruben/GoScan" "time" ) func main() { // scan ports 20 to 30 portRange := [2]int{20, 30} // scan each port with 2 seconds interval result, err := GoScan.ScanHost("localhost", portRange, 2*time.Second, 12*time.Second) if err != nil { fmt.Println(err) } fmt.Println(result) }
Output: Port scanning finished in 45.630600 seconds [{22 true}]
func ScanHostFast ¶
func ScanHostFast(hostname string, portRange [2]int, timeout time.Duration) []ScanResult
ScanHostFast scans all ports inside the portRange argument concurrently and returns all open ports.
Example ¶
package main import ( "fmt" GoScan "github.com/menaruben/GoScan" "time" ) func main() { // scan ports 20 to 30 portRange := [2]int{20, 30} // scan ports concurrently result := GoScan.ScanHostFast("localhost", portRange, 12*time.Second) fmt.Println(result) }
Output: [{22 true}]
func ScanPort ¶
ScanPort scans a single port.
Example ¶
package main import ( "fmt" GoScan "github.com/menaruben/GoScan" "time" ) func main() { sshResult, err := GoScan.ScanPort("localhost", 22, 12*time.Second) if err != nil { fmt.Println(err) } fmt.Println(sshResult.Port, sshResult.State) }
Output: 22 true