-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstructs.go
261 lines (240 loc) · 7.99 KB
/
structs.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
package surevego
import (
"strconv"
"time"
)
const suricataTimestampFormat = "2006-01-02T15:04:05.999999-0700"
type suriTime struct{ time.Time }
func (t *suriTime) UnmarshalJSON(b []byte) error {
data, err := strconv.Unquote(string(b))
if err != nil {
return err
}
t.Time, err = time.Parse(suricataTimestampFormat, data)
return err
}
func (t *suriTime) MarshalJSON() ([]byte, error) {
return []byte("\"" + t.Time.Format(suricataTimestampFormat) + "\""), nil
}
type alertEvent struct {
Action string `json:"action"`
Gid int `json:"gid"`
SignatureID int `json:"signature_id"`
Rev int `json:"rev"`
Signature string `json:"signature"`
Category string `json:"category"`
Severity int `json:"severity"`
}
type dnsEvent struct {
Type string `json:"type"`
ID int `json:"id"`
Rcode string `json:"rcode"`
Rrname string `json:"rrname"`
Rrtype string `json:"rrtype"`
TTL int `json:"ttl"`
Rdata string `json:"rdata"`
TxID int `json:"tx_id"`
}
type httpEvent struct {
Hostname string `json:"hostname"`
URL string `json:"url"`
HTTPUserAgent string `json:"http_user_agent"`
HTTPContentType string `json:"http_content_type"`
HTTPMethod string `json:"http_method"`
Protocol string `json:"protocol"`
Status int `json:"status"`
Length int `json:"length"`
}
type fileinfoEvent struct {
Filename string `json:"filename"`
Magic string `json:"magic"`
State string `json:"state"`
Md5 string `json:"md5"`
Stored bool `json:"stored"`
Size int `json:"size"`
TxID int `json:"tx_id"`
}
type flowEvent struct {
PktsToserver int `json:"pkts_toserver"`
PktsToclient int `json:"pkts_toclient"`
BytesToserver int `json:"bytes_toserver"`
BytesToclient int `json:"bytes_toclient"`
Start *suriTime `json:"start"`
End *suriTime `json:"end"`
Age int `json:"age"`
State string `json:"state"`
Reason string `json:"reason"`
}
type tlsEvent struct {
Subject string `json:"subject"`
Issuerdn string `json:"issuerdn"`
Fingerprint string `json:"fingerprint"`
Sni string `json:"sni"`
Version string `json:"version"`
}
type statsEvent struct {
Uptime int `json:"uptime"`
Capture struct {
KernelPackets int `json:"kernel_packets"`
KernelDrops int `json:"kernel_drops"`
} `json:"capture"`
Decoder struct {
Pkts int `json:"pkts"`
Bytes int64 `json:"bytes"`
Invalid int `json:"invalid"`
Ipv4 int `json:"ipv4"`
Ipv6 int `json:"ipv6"`
Ethernet int `json:"ethernet"`
Raw int `json:"raw"`
Null int `json:"null"`
Sll int `json:"sll"`
TCP int `json:"tcp"`
UDP int `json:"udp"`
Sctp int `json:"sctp"`
Icmpv4 int `json:"icmpv4"`
Icmpv6 int `json:"icmpv6"`
Ppp int `json:"ppp"`
Pppoe int `json:"pppoe"`
Gre int `json:"gre"`
Vlan int `json:"vlan"`
VlanQinq int `json:"vlan_qinq"`
Teredo int `json:"teredo"`
Ipv4InIpv6 int `json:"ipv4_in_ipv6"`
Ipv6InIpv6 int `json:"ipv6_in_ipv6"`
Mpls int `json:"mpls"`
AvgPktSize int `json:"avg_pkt_size"`
MaxPktSize int `json:"max_pkt_size"`
Erspan int `json:"erspan"`
Ipraw struct {
InvalidIPVersion int `json:"invalid_ip_version"`
} `json:"ipraw"`
Ltnull struct {
PktTooSmall int `json:"pkt_too_small"`
UnsupportedType int `json:"unsupported_type"`
} `json:"ltnull"`
Dce struct {
PktTooSmall int `json:"pkt_too_small"`
} `json:"dce"`
} `json:"decoder"`
Flow struct {
Memcap int `json:"memcap"`
Spare int `json:"spare"`
EmergModeEntered int `json:"emerg_mode_entered"`
EmergModeOver int `json:"emerg_mode_over"`
TCPReuse int `json:"tcp_reuse"`
Memuse int `json:"memuse"`
} `json:"flow"`
Defrag struct {
Ipv4 struct {
Fragments int `json:"fragments"`
Reassembled int `json:"reassembled"`
Timeouts int `json:"timeouts"`
} `json:"ipv4"`
Ipv6 struct {
Fragments int `json:"fragments"`
Reassembled int `json:"reassembled"`
Timeouts int `json:"timeouts"`
} `json:"ipv6"`
MaxFragHits int `json:"max_frag_hits"`
} `json:"defrag"`
Stream struct {
ThreeWhsAckInWrongDir int `json:"3whs_ack_in_wrong_dir"`
ThreeWhsAsyncWrongSeq int `json:"3whs_async_wrong_seq"`
ThreeWhsRightSeqWrongAckEvasion int `json:"3whs_right_seq_wrong_ack_evasion"`
} `json:"stream"`
TCP struct {
Sessions int `json:"sessions"`
SsnMemcapDrop int `json:"ssn_memcap_drop"`
Pseudo int `json:"pseudo"`
PseudoFailed int `json:"pseudo_failed"`
InvalidChecksum int `json:"invalid_checksum"`
NoFlow int `json:"no_flow"`
Syn int `json:"syn"`
Synack int `json:"synack"`
Rst int `json:"rst"`
SegmentMemcapDrop int `json:"segment_memcap_drop"`
StreamDepthReached int `json:"stream_depth_reached"`
ReassemblyGap int `json:"reassembly_gap"`
Memuse int `json:"memuse"`
ReassemblyMemuse int `json:"reassembly_memuse"`
} `json:"tcp"`
Detect struct {
Alert int `json:"alert"`
} `json:"detect"`
FlowMgr struct {
ClosedPruned int `json:"closed_pruned"`
NewPruned int `json:"new_pruned"`
EstPruned int `json:"est_pruned"`
} `json:"flow_mgr"`
DNS struct {
Memuse int `json:"memuse"`
MemcapState int `json:"memcap_state"`
MemcapGlobal int `json:"memcap_global"`
} `json:"dns"`
HTTP struct {
Memuse int `json:"memuse"`
Memcap int `json:"memcap"`
} `json:"http"`
}
type sshEvent struct {
Client struct {
ProtoVersion string `json:"proto_version"`
SoftwareVersion string `json:"software_version"`
} `json:"client"`
Server struct {
ProtoVersion string `json:"proto_version"`
SoftwareVersion string `json:"software_version"`
} `json:"server"`
}
type smtpEvent struct {
Helo string `json:"helo"`
MailFrom string `json:"mail_from"`
RcptTo []string `json:"rcpt_to"`
}
type tcpEvent struct {
State string `json:"state"`
Syn bool `json:"syn"`
TCPflags string `json:"tcp_flags"`
TCPflagsTc string `json:"tcp_flags_tc"`
TCPflagsTs string `json:"tcp_flags_ts"`
}
type emailEvent struct {
Status string `json:"status"`
}
// EveEvent is the huge struct which can contain a parsed suricata eve.json
// log event.
type EveEvent struct {
Timestamp *suriTime `json:"timestamp"`
EventType string `json:"event_type"`
FlowID int64 `json:"flow_id,omitempty"`
InIface string `json:"in_iface,omitempty"`
Vlan int `json:"vlan,omitempty"`
SrcIP string `json:"src_ip,omitempty"`
SrcPort int `json:"src_port,omitempty"`
DestIP string `json:"dest_ip,omitempty"`
DestPort int `json:"dest_port,omitempty"`
Proto string `json:"proto,omitempty"`
AppProto string `json:"app_proto,omitempty"`
TxID int `json:"tx_id,omitempty"`
TCP *tcpEvent `json:"tcp,omitempty"`
PacketInfo struct {
Linktype int `json:"linktype"`
} `json:"packet_info,omitempty"`
// Alert Events have some additional high level attributes to the json model
Alert *alertEvent `json:"alert,omitempty"`
Payload string `json:"payload,omitempty"`
PayloadPrintable string `json:"payload_printable,omitempty"`
Stream int `json:"stream,omitempty"`
Packet string `json:"packet,omitempty"`
// SMTP Events have some additional high level attributes to the json model
SMTP *smtpEvent `json:"smtp,omitempty"`
// Other sub event_types
Email *emailEvent `json:"email,omitempty"`
DNS *dnsEvent `json:"dns,omitempty"`
HTTP *httpEvent `json:"http,omitempty"`
Fileinfo *fileinfoEvent `json:"fileinfo,omitempty"`
Flow *flowEvent `json:"flow,omitempty"`
SSH *sshEvent `json:"ssh,omitempty"`
TLS *tlsEvent `json:"tls,omitempty"`
Stats *statsEvent `json:"stats,omitempty"`
}