-
Notifications
You must be signed in to change notification settings - Fork 159
/
tcp.go
135 lines (111 loc) · 3.45 KB
/
tcp.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
/*
* NETCAP - Traffic Analysis Framework
* Copyright (c) 2017-2020 Philipp Mieden <dreadl0ck [at] protonmail [dot] ch>
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
package maltego
import (
"errors"
"fmt"
"io"
"log"
"os"
"path/filepath"
"strings"
"github.com/gogo/protobuf/proto"
"github.com/dreadl0ck/maltego"
"github.com/dreadl0ck/netcap/defaults"
"github.com/dreadl0ck/netcap/types"
)
// TCPCountFunc is a function that counts something over multiple TCP audit records.
//goland:noinspection GoUnnecessarilyExportedIdentifiers
type TCPCountFunc func()
// TCPTransformationFunc is a transformation over TCP audit records.
//goland:noinspection GoUnnecessarilyExportedIdentifiers
type TCPTransformationFunc = func(lt maltego.LocalTransform, trx *maltego.Transform, tcp *types.TCP, min, max uint64, path string, ip string)
// TCPTransform applies a maltego transformation over TCP audit records.
func TCPTransform(count TCPCountFunc, transform TCPTransformationFunc, continueTransform bool) {
var (
lt = maltego.ParseLocalArguments(os.Args[3:])
path = strings.TrimPrefix(lt.Values["path"], "file://")
ipaddr = lt.Values[PropertyIpAddr]
trx = maltego.Transform{}
)
if !strings.HasPrefix(filepath.Base(path), "TCP.ncap") {
path = filepath.Join(filepath.Dir(path), "TCP.ncap.gz")
}
f, err := os.Open(path)
if err != nil {
log.Println(err)
fmt.Println(trx.ReturnOutput())
return
}
// check if its an audit record file
if !strings.HasSuffix(f.Name(), defaults.FileExtensionCompressed) && !strings.HasSuffix(f.Name(), defaults.FileExtension) {
maltego.Die(errUnexpectedFileType, f.Name())
}
r := openNetcapArchive(path)
// read netcap header
header, errFileHeader := r.ReadHeader()
if errFileHeader != nil {
maltego.Die("failed to read file header", errFileHeader.Error())
}
if header.Type != types.Type_NC_TCP {
maltego.Die("file does not contain TCP records", header.Type.String())
}
var (
tcp = new(types.TCP)
pm proto.Message
ok bool
)
pm = tcp
if _, ok = pm.(types.AuditRecord); !ok {
panic("type does not implement types.AuditRecord interface")
}
var (
min uint64 = 10000000
max uint64 = 0
)
if count != nil {
for {
err = r.Next(tcp)
if errors.Is(err, io.EOF) || errors.Is(err, io.ErrUnexpectedEOF) {
break
} else if err != nil {
maltego.Die(err.Error(), errUnexpectedReadFailure)
}
count()
}
err = r.Close()
if err != nil {
log.Println("failed to close audit record file: ", err)
}
}
r = openNetcapArchive(path)
// read netcap header - ignore err as it has been checked before
_, _ = r.ReadHeader()
for {
err = r.Next(tcp)
if errors.Is(err, io.EOF) || errors.Is(err, io.ErrUnexpectedEOF) {
break
} else if err != nil {
panic(err)
}
transform(lt, &trx, tcp, min, max, path, ipaddr)
}
err = r.Close()
if err != nil {
log.Println("failed to close audit record file: ", err)
}
if !continueTransform {
trx.AddUIMessage("completed!", maltego.UIMessageInform)
fmt.Println(trx.ReturnOutput())
}
}