-
Notifications
You must be signed in to change notification settings - Fork 21
/
gopacket.go
137 lines (121 loc) · 3.43 KB
/
gopacket.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
//go:build !ja3_disable_gopacket
/*
* JA3 - TLS Client Hello Hash
* Copyright (c) 2017, Salesforce.com, Inc.
* this code was created by 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 ja3
import (
"crypto/md5"
"encoding/hex"
"fmt"
"github.com/dreadl0ck/tlsx"
"github.com/google/gopacket"
"github.com/google/gopacket/layers"
)
// DigestPacket returns the Ja3 digest
// for a packet carrying a TLS Client Hello
// or an empty byte slice
func DigestPacket(p gopacket.Packet) [md5.Size]byte {
return md5.Sum(BarePacket(p))
}
// DigestPacket returns the Ja3s digest
// for a packet carrying a TLS Server Hello
// or an empty byte slice
func DigestPacketJa3s(p gopacket.Packet) [md5.Size]byte {
return md5.Sum(BarePacketJa3s(p))
}
// DigestHexPacket returns the hex string for the packet
// for a packet carrying a TLS Client Hello
func DigestHexPacket(p gopacket.Packet) string {
bare := BarePacket(p)
if len(bare) == 0 {
return ""
}
sum := md5.Sum(bare)
return hex.EncodeToString(sum[:])
}
// DigestHexPacket returns the hex string for the packet
// for a packet carrying a TLS Client Hello
func DigestHexPacketJa3s(p gopacket.Packet) string {
bare := BarePacketJa3s(p)
if len(bare) == 0 {
return ""
}
sum := md5.Sum(bare)
return hex.EncodeToString(sum[:])
}
// BarePacket returns the Ja3 digest if the supplied packet contains a TLS client hello
// otherwise returns an empty string
func BarePacket(p gopacket.Packet) []byte {
if tl := p.TransportLayer(); tl != nil {
if tcp, ok := tl.(*layers.TCP); ok {
if tcp.SYN {
// Connection setup
} else if tcp.FIN {
// Connection teardown
} else if tcp.ACK && len(tcp.LayerPayload()) == 0 {
// Acknowledgement packet
} else if tcp.RST {
// Unexpected packet
} else {
// data packet
var (
hello = tlsx.ClientHelloBasic{}
err = hello.Unmarshal(tcp.LayerPayload())
)
if err != nil {
if Debug {
fmt.Println(err)
//fmt.Println(p.Dump())
}
return []byte{}
}
// return JA3 bare
return Bare(&hello)
}
}
}
return []byte{}
}
// BarePacket returns the Ja3 digest if the supplied packet contains a TLS client hello
// otherwise returns an empty string
func BarePacketJa3s(p gopacket.Packet) []byte {
if tl := p.TransportLayer(); tl != nil {
if tcp, ok := tl.(*layers.TCP); ok {
if tcp.SYN {
// Connection setup
} else if tcp.FIN {
// Connection teardown
} else if tcp.ACK && len(tcp.LayerPayload()) == 0 {
// Acknowledgement packet
} else if tcp.RST {
// Unexpected packet
} else {
// data packet
var (
hello = tlsx.ServerHelloBasic{}
err = hello.Unmarshal(tcp.LayerPayload())
)
if err != nil {
if Debug {
fmt.Println(err, p.NetworkLayer().NetworkFlow(), p.TransportLayer().TransportFlow())
//fmt.Println(p.Dump())
}
return []byte{}
}
// return JA3 bare
return BareJa3s(&hello)
}
}
}
return []byte{}
}