-
Notifications
You must be signed in to change notification settings - Fork 159
/
tcp.go
91 lines (86 loc) · 2.81 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
/*
* NETCAP - Traffic Analysis Framework
* Copyright (c) 2017 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 types
import (
"encoding/hex"
"strconv"
"strings"
)
func (t TCP) CSVHeader() []string {
return filter([]string{
"Timestamp",
"SrcPort",
"DstPort",
"SeqNum",
"AckNum",
"DataOffset",
"FIN",
"SYN",
"RST",
"PSH",
"ACK",
"URG",
"ECE",
"CWR",
"NS",
"Window",
"Checksum",
"Urgent",
"Padding",
"Options",
"PayloadEntropy",
"PayloadSize",
})
}
func (t TCP) CSVRecord() []string {
return filter([]string{
formatTimestamp(t.Timestamp), // string
formatInt32(t.SrcPort), // int32
formatInt32(t.DstPort), // int32
strconv.FormatUint(uint64(t.SeqNum), 10), // uint32
strconv.FormatUint(uint64(t.AckNum), 10), // uint32
formatInt32(t.DataOffset), // int32
strconv.FormatBool(t.FIN), // bool
strconv.FormatBool(t.SYN), // bool
strconv.FormatBool(t.RST), // bool
strconv.FormatBool(t.PSH), // bool
strconv.FormatBool(t.ACK), // bool
strconv.FormatBool(t.URG), // bool
strconv.FormatBool(t.ECE), // bool
strconv.FormatBool(t.CWR), // bool
strconv.FormatBool(t.NS), // bool
formatInt32(t.Window), // int32
formatInt32(t.Checksum), // int32
formatInt32(t.Urgent), // int32
string(t.Padding), // []byte
t.GetOptionString(), // []*TCPOption
strconv.FormatFloat(t.PayloadEntropy, 'f', 8, 64), // float64
formatInt32(t.PayloadSize), // int32
})
}
func (t TCP) GetOptionString() string {
var b strings.Builder
for _, o := range t.Options {
b.WriteString(begin)
b.WriteString(strconv.Itoa(int(o.OptionType)))
b.WriteString(sep)
b.WriteString(strconv.Itoa(int(o.OptionLength)))
b.WriteString(sep)
b.WriteString(hex.EncodeToString(o.OptionData))
b.WriteString(end)
}
return b.String()
}
func (f TCP) NetcapTimestamp() string {
return f.Timestamp
}