wip - nitpicking
parent
1212cf511c
commit
e59ea05e57
|
@ -1,7 +1,8 @@
|
||||||
# sensor-d4-tls-fingerprinting
|
# sensor-d4-tls-fingerprinting
|
||||||
Extracts TLS certificates from pcap files or network interfaces (tcpreassembly is done thanks to gopacket), fingerprints TLS client/server interactions with ja3/ja3s and print output in JSON form.
|
Extracts TLS certificates from pcap files or network interfaces (tcpreassembly is done thanks to gopacket), fingerprints TLS client/server interactions with ja3/ja3s and print output in JSON form.
|
||||||
# Use
|
# Use
|
||||||
This project is currently in its very early stage and relies mainly on a customized version of ![gopacket](http://github.com/google/gopacket "gopacket link") that will be the subject of a pull request later on.
|
This project is currently in its very early stage and relies on a customized version of ![gopacket](http://github.com/google/gopacket "gopacket link").
|
||||||
|
Check the list of issues.
|
||||||
## Install dependencies & go get
|
## Install dependencies & go get
|
||||||
``` shell
|
``` shell
|
||||||
$go get github.com/gallypette/gopacket
|
$go get github.com/gallypette/gopacket
|
||||||
|
|
|
@ -4,6 +4,9 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
"crypto/x509"
|
"crypto/x509"
|
||||||
|
|
||||||
|
// TODO consider
|
||||||
|
//"github.com/google/certificate-transparency-go/x509"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"flag"
|
"flag"
|
||||||
|
|
Loading…
Reference in New Issue