-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
189 lines (161 loc) · 4.13 KB
/
main.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
package main
import (
"bytes"
"encoding/xml"
"flag"
"fmt"
"io"
"os"
"strconv"
"strings"
)
type NmapRun struct {
XMLName xml.Name `xml:"nmaprun"`
Version string `xml:"version,attr"`
Hosts []Host `xml:"host"`
}
type Host struct {
XMLName xml.Name `xml:"host"`
Ports Ports `xml:"ports"`
Address Address `xml:"address"`
Hostnames Hostanames `xml:"hostnames"`
}
type Hostanames struct {
XMLName xml.Name `xml:"hostnames"`
Hostnames []Hostname `xml:"hostname"`
}
type Hostname struct {
XMLName xml.Name `xml:"hostname"`
Name string `xml:"name,attr"`
}
type Address struct {
XMLName xml.Name `xml:"address"`
Addr string `xml:"addr,attr"`
}
type Ports struct {
XMLName xml.Name `xml:"ports"`
OpenPorts []OpenPort `xml:"port"`
}
type OpenPort struct {
XMLName xml.Name `xml:"port"`
Protocol string `xml:"protocol,attr"`
PortID int `xml:"portid,attr"`
Service Service `xml:"service"`
}
type Service struct {
XMLName xml.Name `xml:"service"`
Name string `xml:"name,attr"`
}
var nmaprun NmapRun
func getPorts(bytes []byte) []int {
nmaprun = NmapRun{}
xml.Unmarshal(bytes, &nmaprun)
var openPorts []int
for _, openPort := range nmaprun.Hosts[0].Ports.OpenPorts {
openPorts = append(openPorts, openPort.PortID)
}
return openPorts
}
func intSliceToString(intElements []int, glue string) string {
var stringElements []string
for _, elem := range intElements {
stringElements = append(stringElements, strconv.Itoa(elem))
}
return strings.Join(stringElements, glue)
}
func portsToNmap(ports []int) string {
return "-p" + intSliceToString(ports, ",")
}
func getAddress(bytes []byte) string {
nmaprun = NmapRun{}
xml.Unmarshal(bytes, &nmaprun)
return nmaprun.Hosts[0].Address.Addr
}
func getHostnames(bytes []byte) []string {
nmaprun = NmapRun{}
xml.Unmarshal(bytes, &nmaprun)
var hostnames []string
for _, hostname := range nmaprun.Hosts[0].Hostnames.Hostnames {
hostnames = append(hostnames, hostname.Name)
}
return removeDuplicates(hostnames)
}
func readerToBytes(r io.Reader) []byte {
buf := new(bytes.Buffer)
buf.ReadFrom(r)
return buf.Bytes()
}
func removeDuplicates(elements []string) []string {
encountered := map[string]bool{}
result := []string{}
for v := range elements {
if encountered[elements[v]] == true {
} else {
encountered[elements[v]] = true
result = append(result, elements[v])
}
}
return result
}
func init() {
flag.Usage = func() {
h := "Parse XML output from Nmap (file or stdin) to get reusable information\n\n"
h += "Usage:\n"
h += " nmap-parser [OPTIONS] [FILE|URL|-]\n\n"
h += "Options:\n"
h += " -n, --hostnames Get hostnames\n"
h += " -a, --address Get address\n"
h += " -p, --ports List open ports\n"
h += "\n"
fmt.Fprintf(os.Stderr, h)
}
}
func main() {
var (
portFlag bool
addressFlag bool
hostnamesFlag bool
)
flag.BoolVar(&addressFlag, "address", false, "")
flag.BoolVar(&addressFlag, "a", false, "")
flag.BoolVar(&portFlag, "ports", false, "")
flag.BoolVar(&portFlag, "p", false, "")
flag.BoolVar(&hostnamesFlag, "hostanames", false, "")
flag.BoolVar(&hostnamesFlag, "n", false, "")
flag.Parse()
var rawInput io.Reader
filename := flag.Arg(0)
if filename == "" || filename == "-" {
rawInput = os.Stdin
} else {
r, err := os.Open(filename)
if err != nil {
fmt.Fprintf(os.Stderr, "%s\n", err)
os.Exit(-1)
}
rawInput = r
}
fileBytes := readerToBytes(rawInput)
if portFlag {
ports := getPorts(fileBytes)
portsAsString := portsToNmap(ports)
fmt.Println(portsAsString)
os.Exit(0)
} else if addressFlag {
address := getAddress(fileBytes)
fmt.Println(address)
os.Exit(0)
} else if hostnamesFlag {
hostnames := strings.Join(getHostnames(fileBytes), ", ")
fmt.Println(hostnames)
os.Exit(0)
} else {
hostnames := strings.Join(getHostnames(fileBytes), ", ")
address := getAddress(fileBytes)
ports := getPorts(fileBytes)
portsAsString := intSliceToString(ports, ", ")
fmt.Fprintf(os.Stdout, "[+] Hostname(s):\t%s\n", hostnames)
fmt.Fprintf(os.Stdout, "[+] Address:\t\t%s\n", address)
fmt.Fprintf(os.Stdout, "[+] Ports:\t\t%s\n", portsAsString)
}
}