-
Notifications
You must be signed in to change notification settings - Fork 104
/
nmap.go
357 lines (307 loc) · 9.47 KB
/
nmap.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
// Package nmap provides idiomatic `nmap` bindings for go developers.
package nmap
import (
"bytes"
"context"
"encoding/xml"
"fmt"
"io"
"os/exec"
"strings"
"sync"
"syscall"
"time"
"golang.org/x/sync/errgroup"
)
// ScanRunner represents something that can run a scan.
type ScanRunner interface {
Run() (result *Run, warnings []string, err error)
}
// Scanner represents n Nmap scanner.
type Scanner struct {
modifySysProcAttr func(*syscall.SysProcAttr)
args []string
binaryPath string
ctx context.Context
portFilter func(Port) bool
hostFilter func(Host) bool
doneAsync chan error
liveProgress chan float32
streamer io.Writer
toFile *string
}
// Option is a function that is used for grouping of Scanner options.
// Option adds or removes nmap command line arguments.
type Option func(*Scanner)
// NewScanner creates a new Scanner, and can take options to apply to the scanner.
func NewScanner(ctx context.Context, options ...Option) (*Scanner, error) {
scanner := &Scanner{
doneAsync: nil,
liveProgress: nil,
streamer: nil,
ctx: ctx,
}
for _, option := range options {
option(scanner)
}
if scanner.binaryPath == "" {
var err error
scanner.binaryPath, err = exec.LookPath("nmap")
if err != nil {
return nil, ErrNmapNotInstalled
}
}
return scanner, nil
}
// Async will run the nmap scan asynchronously. You need to provide a channel with error type.
// When the scan is finished an error or nil will be piped through this channel.
func (s *Scanner) Async(doneAsync chan error) *Scanner {
s.doneAsync = doneAsync
return s
}
// Progress pipes the progress of nmap every 100ms. It needs a channel of type float.
func (s *Scanner) Progress(liveProgress chan float32) *Scanner {
s.args = append(s.args, "--stats-every", "100ms")
s.liveProgress = liveProgress
return s
}
// ToFile enables the Scanner to write the nmap XML output to a given path.
// Nmap will write the normal CLI output to stdout. The XML is parsed from file after the scan is finished.
func (s *Scanner) ToFile(file string) *Scanner {
s.toFile = &file
return s
}
// Streamer takes an io.Writer that receives the XML output.
// So the stdout of nmap will be duplicated to the given stream and *Run.
// This will not disable parsing the output to the struct.
func (s *Scanner) Streamer(stream io.Writer) *Scanner {
s.streamer = stream
return s
}
// Run will run the Scanner with the enabled options.
// You need to create a Run struct and warnings array first so the function can parse it.
func (s *Scanner) Run() (result *Run, warnings *[]string, err error) {
var stdoutPipe io.ReadCloser
var stdout bytes.Buffer
var stderr bytes.Buffer
warnings = &[]string{} // Instantiate warnings array
args := s.args
// Write XML to standard output.
// If toFile is set then write XML to file.
if s.toFile != nil {
args = append(args, "-oX", *s.toFile)
} else {
args = append(args, "-oX", "-")
}
// Prepare nmap process.
cmd := exec.CommandContext(s.ctx, s.binaryPath, args...)
if s.modifySysProcAttr != nil {
s.modifySysProcAttr(cmd.SysProcAttr)
}
stdoutPipe, err = cmd.StdoutPipe()
if err != nil {
return result, warnings, err
}
stdoutDuplicate := io.TeeReader(stdoutPipe, &stdout)
cmd.Stderr = &stderr
// According to cmd.StdoutPipe() doc, we must not "call Wait before all reads from the pipe have completed"
// We use this WaitGroup to wait for all IO operations to finish before calling wait
var wg sync.WaitGroup
var streamerErrs *errgroup.Group
if s.streamer != nil {
streamerErrs, _ = errgroup.WithContext(s.ctx)
wg.Add(1)
streamerErrs.Go(func() error {
defer wg.Done()
_, err = io.Copy(s.streamer, stdoutDuplicate)
return err
})
} else {
wg.Add(1)
go func() {
defer wg.Done()
io.Copy(io.Discard, stdoutDuplicate)
}()
}
// Run nmap process.
err = cmd.Start()
if err != nil {
return result, warnings, err
}
// Add goroutine that updates chan when command is finished.
done := make(chan error, 1)
doneProgress := make(chan bool, 1)
go func() {
wg.Wait()
err := cmd.Wait()
if streamerErrs != nil {
streamerError := streamerErrs.Wait()
if streamerError != nil {
*warnings = append(*warnings, fmt.Sprintf("read from stdout failed: %s", err))
}
}
done <- err
}()
// Make goroutine to check the progress every second.
// Listening for channel doneProgress.
if s.liveProgress != nil {
go func() {
type progress struct {
TaskProgress []TaskProgress `xml:"taskprogress" json:"task_progress"`
}
for {
select {
case <-doneProgress:
close(s.liveProgress)
return
default:
time.Sleep(time.Millisecond * 100)
var p progress
_ = xml.Unmarshal(stdout.Bytes(), &p)
progressIndex := len(p.TaskProgress) - 1
if progressIndex >= 0 {
s.liveProgress <- p.TaskProgress[progressIndex].Percent
}
}
}
}()
}
// Check if function should run async.
// When async process nmap result in goroutine that waits for nmap command finish.
// Else block and process nmap result in this function scope.
result = &Run{}
if s.doneAsync != nil {
go func() {
s.doneAsync <- s.processNmapResult(result, warnings, &stdout, &stderr, done, doneProgress)
}()
} else {
err = s.processNmapResult(result, warnings, &stdout, &stderr, done, doneProgress)
}
return result, warnings, err
}
// AddOptions sets more scan options after the scan is created.
func (s *Scanner) AddOptions(options ...Option) *Scanner {
for _, option := range options {
option(s)
}
return s
}
// Args return the list of nmap args.
func (s *Scanner) Args() []string {
return s.args
}
func chooseHosts(result *Run, filter func(Host) bool) {
var filteredHosts []Host
for _, host := range result.Hosts {
if filter(host) {
filteredHosts = append(filteredHosts, host)
}
}
result.Hosts = filteredHosts
}
func choosePorts(result *Run, filter func(Port) bool) {
for idx := range result.Hosts {
var filteredPorts []Port
for _, port := range result.Hosts[idx].Ports {
if filter(port) {
filteredPorts = append(filteredPorts, port)
}
}
result.Hosts[idx].Ports = filteredPorts
}
}
func (s *Scanner) processNmapResult(result *Run, warnings *[]string, stdout, stderr *bytes.Buffer, done chan error, doneProgress chan bool) error {
// Wait for nmap to finish.
var err = <-done
close(doneProgress)
if err != nil {
return err
}
// Check stderr output.
if err := checkStdErr(stderr, warnings); err != nil {
return err
}
// Parse nmap xml output. Usually nmap always returns valid XML, even if there is a scan error.
// Potentially available warnings are returned too, but probably not the reason for a broken XML.
if s.toFile != nil {
err = result.FromFile(*s.toFile)
} else {
err = Parse(stdout.Bytes(), result)
}
if err != nil {
*warnings = append(*warnings, err.Error()) // Append parsing error to warnings for those who are interested.
return ErrParseOutput
}
// Critical scan errors are reflected in the XML.
if result != nil && len(result.Stats.Finished.ErrorMsg) > 0 {
switch {
case strings.Contains(result.Stats.Finished.ErrorMsg, "Error resolving name"):
return ErrResolveName
default:
return fmt.Errorf(result.Stats.Finished.ErrorMsg)
}
}
// Call filters if they are set.
if s.portFilter != nil {
choosePorts(result, s.portFilter)
}
if s.hostFilter != nil {
chooseHosts(result, s.hostFilter)
}
return err
}
// checkStdErr writes the output of stderr to the warnings array.
// It also processes nmap stderr output containing none-critical errors and warnings.
func checkStdErr(stderr *bytes.Buffer, warnings *[]string) error {
if stderr.Len() <= 0 {
return nil
}
stderrSplit := strings.Split(strings.Trim(stderr.String(), "\n "), "\n")
// Check for warnings that will inevitably lead to parsing errors, hence, have priority.
for _, warning := range stderrSplit {
warning = strings.Trim(warning, " ")
*warnings = append(*warnings, warning)
switch {
case strings.Contains(warning, "Malloc Failed!"):
return ErrMallocFailed
}
}
return nil
}
// WithCustomArguments sets custom arguments to give to the nmap binary.
// There should be no reason to use this, unless you are using a custom build
// of nmap or that this repository isn't up to date with the latest options
// of the official nmap release.
//
// Deprecated: You can use this as a quick way to paste an nmap command into your go code,
// but remember that the whole purpose of this repository is to be idiomatic,
// provide type checking, enums for the values that can be passed, etc.
func WithCustomArguments(args ...string) Option {
return func(s *Scanner) {
s.args = append(s.args, args...)
}
}
// WithBinaryPath sets the nmap binary path for a scanner.
func WithBinaryPath(binaryPath string) Option {
return func(s *Scanner) {
s.binaryPath = binaryPath
}
}
// WithFilterPort allows to set a custom function to filter out ports that
// don't fulfill a given condition. When the given function returns true,
// the port is kept, otherwise it is removed from the result. Can be used
// along with WithFilterHost.
func WithFilterPort(portFilter func(Port) bool) Option {
return func(s *Scanner) {
s.portFilter = portFilter
}
}
// WithFilterHost allows to set a custom function to filter out hosts that
// don't fulfill a given condition. When the given function returns true,
// the host is kept, otherwise it is removed from the result. Can be used
// along with WithFilterPort.
func WithFilterHost(hostFilter func(Host) bool) Option {
return func(s *Scanner) {
s.hostFilter = hostFilter
}
}