This repository was archived by the owner on Apr 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathscan.go
71 lines (65 loc) · 1.72 KB
/
scan.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package edgecli
import (
"context"
"errors"
"fmt"
"github.com/Ullaakut/nmap/v2"
log "github.com/sirupsen/logrus"
"time"
)
type ScanOption struct {
Cidr string
Timeout int64
}
type ScanService struct {
ScanOption
}
type ScanResult struct {
HostName string `mapstructure:"hostName"`
IPv4 string `mapstructure:"ipv4"`
IPv6 string `mapstructure:"ipv6"`
MacAddress string `mapstructure:"macAddress"`
Vendor string `mapstructure:"vendor"`
OS string `mapstructure:"os"`
}
func (s *ScanService) Scan(option *ScanOption) (*[]ScanResult, error) {
ctx, cancel := context.WithTimeout(context.Background(), time.Duration(option.Timeout)*time.Second)
defer cancel()
scanner, err := nmap.NewScanner(
nmap.WithTargets(option.Cidr),
nmap.WithCustomArguments("-sP"),
nmap.WithContext(ctx),
)
if err != nil {
return nil, errors.New(fmt.Sprintf("unable to create nmap scanner: %v", err))
}
result, _, err := scanner.Run()
if err != nil {
return nil, errors.New(fmt.Sprintf("nmap scan failed: %v", err))
}
res := handleScanNmapResult(result)
return res, nil
}
func handleScanNmapResult(result *nmap.Run) *[]ScanResult {
res := []ScanResult{}
for _, host := range result.Hosts {
sr := ScanResult{}
for _, addr := range host.Addresses {
log.Infof("scan result addr: %s, type: %s, vendor: %s", addr.Addr, addr.AddrType, addr.Vendor)
if addr.AddrType == "ipv4" && sr.IPv4 == "" {
sr.IPv4 = addr.Addr
}
if addr.AddrType == "mac" && sr.MacAddress == "" {
sr.MacAddress = addr.Addr
}
if addr.AddrType == "ipv6" && sr.IPv6 == "" {
sr.IPv6 = addr.Addr
}
if addr.Vendor != "" && sr.Vendor == "" {
sr.Vendor = addr.Vendor
}
}
res = append(res, sr)
}
return &res
}