-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
431 lines (391 loc) · 11 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
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
package main
import (
"code.google.com/p/gopacket"
_ "code.google.com/p/gopacket/layers"
"code.google.com/p/gopacket/pcap"
"flag"
"fmt"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
"path/filepath"
"strings"
"time"
)
type ipv4 struct {
version string
ihl string
tos string
ipLength string
id string
flags string
flagOffset string
ttl string
protocol string
checksum string
source string
destination string
//options string
//padding string
}
type ipv6 struct {
version string
trafficClass string
flowLabel string
ipLenth string
nextHeader string
hopLimit string
sourceIP string
destIP string
hopByHop string
}
type tcp struct {
source string
dest string
seq string
ackNumber string
dataOffset string
fin string
syn string
rst string
psh string
ack string
urg string
ece string
cwr string
ns string
window string
tcpChecksum string
urgentPointer string
// tcpOptions string
// tcpPadding string
}
type udp struct {
sourcePort string
destPort string
udpLength string
udpChecksum string
}
type linkLayer struct {
protocol string
source string
destination string
ethertype string
length string
}
type networkLayer struct {
protocol string
four *ipv4
six *ipv6
}
type transportLayer struct {
protocol string
tee *tcp
yoo *udp
}
type fullPacket struct {
length int
timestamp time.Time
truncated bool
link *linkLayer
network *networkLayer
transport *transportLayer
application []byte
}
func insertMongoDB(session *mgo.Session, packet fullPacket) error {
var mongoLinkLayer bson.M
var mongoNetworkLayer bson.M
var mongoTransportLayer bson.M
packetLenght := packet.length
packetTimestamp := packet.timestamp
packetTruncated := packet.truncated
packetPayload := packet.application
collection := session.DB("pcap").C("master")
if packet.link != nil {
linkProtocol := packet.link.protocol
linkSource := packet.link.source
linkDestination := packet.link.destination
linkEthertype := packet.link.ethertype
linkLength := packet.link.length
mongoLinkLayer = bson.M{"p": linkProtocol, "s": linkSource, "d": linkDestination,
"e": linkEthertype, "l": linkLength}
}
if packet.network != nil {
networkProtocol := packet.network.protocol
if packet.network.four != nil {
networkVersion := packet.network.four.version
networkIHL := packet.network.four.ihl
networkTOS := packet.network.four.tos
networkLength := packet.network.four.ipLength
networkID := packet.network.four.id
networkFlags := packet.network.four.flags
networkFlagOffset := packet.network.four.flagOffset
networkTTL := packet.network.four.ttl
networkTransProtocol := packet.network.four.protocol
networkChecksum := packet.network.four.checksum
networkSource := packet.network.four.source
networkDestination := packet.network.four.destination
mongoNetworkLayer = bson.M{"p": networkProtocol, "v": networkVersion, "ihl": networkIHL,
"tos": networkTOS, "l": networkLength, "id": networkID,
"f": networkFlags, "fo": networkFlagOffset, "ttl": networkTTL,
"tp": networkTransProtocol, "c": networkChecksum,
"s": networkSource, "d": networkDestination}
} else {
networkVersion := packet.network.six.version
networkTrafficClass := packet.network.six.trafficClass
networkFlowLabel := packet.network.six.flowLabel
networkNextHeader := packet.network.six.nextHeader
networkHopLimit := packet.network.six.hopLimit
networkSource := packet.network.six.sourceIP
networkDestination := packet.network.six.destIP
networkHopByHop := packet.network.six.hopByHop
mongoNetworkLayer = bson.M{"p": networkProtocol, "v": networkVersion,
"tc": networkTrafficClass, "fl": networkFlowLabel,
"nh": networkNextHeader, "hl": networkHopLimit, "hbh": networkHopByHop,
"s": networkSource, "d": networkDestination}
}
}
if packet.transport != nil {
transportProtocol := packet.transport.protocol
if packet.transport.tee != nil {
transportSource := packet.transport.tee.source
transportDestination := packet.transport.tee.dest
transportSeq := packet.transport.tee.seq
transportAckNumber := packet.transport.tee.ackNumber
transportDataOffset := packet.transport.tee.dataOffset
transportFin := packet.transport.tee.fin
transportSyn := packet.transport.tee.syn
transportRst := packet.transport.tee.rst
transportPsh := packet.transport.tee.psh
transportAck := packet.transport.tee.ack
transportUrg := packet.transport.tee.urg
transportEce := packet.transport.tee.ece
transportCwr := packet.transport.tee.cwr
transportNs := packet.transport.tee.ns
transportWindow := packet.transport.tee.window
transportChecksum := packet.transport.tee.tcpChecksum
transportUrgentPointer := packet.transport.tee.urgentPointer
mongoTransportLayer = bson.M{"p": transportProtocol, "s": transportSource,
"d": transportDestination, "seq": transportSeq, "an": transportAckNumber,
"do": transportDataOffset, "fin": transportFin, "syn": transportSyn,
"rst": transportRst, "phs": transportPsh, "ack": transportAck,
"urg": transportUrg, "ece": transportEce, "cwr": transportCwr,
"ns": transportNs, "w": transportWindow, "cs": transportChecksum,
"up": transportUrgentPointer,
}
} else {
transportSource := packet.transport.yoo.sourcePort
transportDestination := packet.transport.yoo.destPort
transportLength := packet.transport.yoo.udpLength
transportChecksum := packet.transport.yoo.udpChecksum
mongoTransportLayer = bson.M{"p": transportProtocol, "s": transportSource,
"d": transportDestination, "l": transportLength, "cs": transportChecksum,
}
}
}
query := bson.M{
"l": packetLenght,
"ts": packetTimestamp,
"tr": packetTruncated,
"ll": mongoLinkLayer,
"nl": mongoNetworkLayer,
"tl": mongoTransportLayer,
"al": packetPayload,
}
err := collection.Insert(query)
return err
}
func createTCP(transFields []string) *tcp {
var tee tcp
if len(transFields) == 22 {
tee = tcp{
strings.Split(transFields[3], "=")[1],
strings.Split(transFields[4], "=")[1],
strings.Split(transFields[5], "=")[1],
strings.Split(transFields[6], "=")[1],
strings.Split(transFields[7], "=")[1],
strings.Split(transFields[8], "=")[1],
strings.Split(transFields[9], "=")[1],
strings.Split(transFields[10], "=")[1],
strings.Split(transFields[11], "=")[1],
strings.Split(transFields[12], "=")[1],
strings.Split(transFields[13], "=")[1],
strings.Split(transFields[14], "=")[1],
strings.Split(transFields[15], "=")[1],
strings.Split(transFields[16], "=")[1],
strings.Split(transFields[17], "=")[1],
strings.Split(transFields[18], "=")[1],
strings.Split(transFields[19], "=")[1],
// strings.Split(transFields[20], "=")[1],
// strings.Trim(strings.Split(transFields[21], "=")[1], "}"),
}
} else {
tee = tcp{
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
"ignore",
}
}
return &tee
}
func createUDP(transFields []string) *udp {
yoo := udp{
strings.Split(transFields[3], "=")[1],
strings.Split(transFields[4], "=")[1],
strings.Split(transFields[5], "=")[1],
strings.Trim(strings.Split(transFields[6], "=")[1], "}"),
}
return &yoo
}
func createFour(netFields []string) *ipv4 {
four := ipv4{
strings.Split(netFields[3], "=")[1],
strings.Split(netFields[4], "=")[1],
strings.Split(netFields[5], "=")[1],
strings.Split(netFields[6], "=")[1],
strings.Split(netFields[7], "=")[1],
strings.Split(netFields[8], "=")[1],
strings.Split(netFields[9], "=")[1],
strings.Split(netFields[10], "=")[1],
strings.Split(netFields[11], "=")[1],
strings.Split(netFields[12], "=")[1],
strings.Split(netFields[13], "=")[1],
strings.Split(netFields[14], "=")[1],
// strings.Split(netFields[15], "=")[1],
// strings.Trim(strings.Split(netFields[16], "=")[1], "}"),
}
return &four
}
func createSix(netFields []string) *ipv6 {
six := ipv6{
strings.Split(netFields[3], "=")[1],
strings.Split(netFields[4], "=")[1],
strings.Split(netFields[5], "=")[1],
strings.Split(netFields[6], "=")[1],
strings.Split(netFields[7], "=")[1],
strings.Split(netFields[8], "=")[1],
strings.Split(netFields[9], "=")[1],
strings.Split(netFields[10], "=")[1],
strings.Trim(strings.Split(netFields[11], "=")[1], "}"),
}
return &six
}
func createLinkLayer(link gopacket.LinkLayer) *linkLayer {
linkString := gopacket.LayerString(link)
linkFields := strings.Fields(linkString)
linkFinal := linkLayer{
linkFields[0],
strings.Split(linkFields[3], "=")[1],
strings.Split(linkFields[4], "=")[1],
strings.Split(linkFields[5], "=")[1],
strings.Trim(strings.Split(linkFields[6], "=")[1], "}"),
}
return &linkFinal
}
func createNetworkLayer(net gopacket.NetworkLayer) *networkLayer {
var four *ipv4
var six *ipv6
four = nil
six = nil
netString := gopacket.LayerString(net)
netFields := strings.Fields(netString)
if netFields[0] == "IPv4" {
four = createFour(netFields)
} else {
six = createSix(netFields)
}
netFinal := networkLayer{
netFields[0],
four,
six,
}
return &netFinal
}
func createTransportLayer(trans gopacket.TransportLayer) *transportLayer {
var tee *tcp
var yoo *udp
tee = nil
yoo = nil
transString := gopacket.LayerString(trans)
transFields := strings.Fields(transString)
if transFields[0] == "TCP" {
tee = createTCP(transFields)
} else {
yoo = createUDP(transFields)
}
transFinal := transportLayer{
transFields[0],
tee,
yoo,
}
return &transFinal
}
func createPacket(packet gopacket.Packet) fullPacket {
var link *linkLayer
var net *networkLayer
var trans *transportLayer
var app []byte
link = nil
net = nil
trans = nil
app = nil
if packet.LinkLayer() != nil {
link = createLinkLayer(packet.LinkLayer())
}
if packet.NetworkLayer() != nil {
net = createNetworkLayer(packet.NetworkLayer())
}
if packet.TransportLayer() != nil {
trans = createTransportLayer(packet.TransportLayer())
}
if packet.ApplicationLayer() != nil {
app = packet.ApplicationLayer().Payload()
}
packetFinal := fullPacket{
packet.Metadata().Length,
packet.Metadata().Timestamp,
packet.Metadata().Truncated,
link,
net,
trans,
app,
}
return packetFinal
}
func main() {
//Pcap file is given as a possitional argument, will be totally changed!
flag.Parse()
args := flag.Args()
dir := args[0]
files, _ := filepath.Glob(dir + "/*")
for _, file := range files {
handle, err := pcap.OpenOffline(file)
if err != nil {
panic(err)
} else {
session, err := mgo.Dial("localhost:27017")
packetSource := gopacket.NewPacketSource(handle, handle.LinkType())
for packet := range packetSource.Packets() {
pack := createPacket(packet)
if err == nil {
insertMongoDB(session, pack)
}
}
session.Close()
}
fmt.Println("finished", file)
}
}