Cable-2-5 / GQUIC_Protocol_Analyzer

GQUIC Protocol Analyzer for Zeek (Bro) Network Security Monitor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GQUIC Protocol Analyzer

This analyzer parses GQUIC traffic in Bro/Zeek for logging and detection purposes. It examines the initial exchange between a client and server communicating over GQUIC, and extracts the information contained in the connection's client hello packet and server rejection packet. Currently, this protocol analyzer supports GQUIC versions Q039 to Q046.

Installing the GQUIC Protocol Analyzer using Source Tree

First, navigate to the plugin directory
cd bro-2.X.X/aux/bro-aux/plugin-support
Second, run this command
./init-plugin ./bro-quic Salesforce GQUIC

This will create a directory called bro-quic which contains several files and subdirectories.

Enter the bro-quic directory
cd bro-quic

Remove the CMakeLists.txt file and the scripts and src directory and replace them with the ones inside this repo.

Now run
./configure --bro-dist=/path/to/bro/dist && make
Finally set up an environment variable for the plugin
export BRO_PLUGIN_PATH=/path/to/bro-quic/build
Test to make sure the plugin was installed correctly
bro -N
The plugin is ready to be installed
sudo make install

CYU

To provide further insight and help detect anomalous (and potentially malicious) GQUIC traffic, fingerprinting is utilized. The fingerprinting method, named "CYU" works by identifying the GQUIC version and tags present in client hello packets. First, the version of the packet is extracted, immediately followed by a comma. After this, each tag in the client hello packet is gathered and concatenated together with hyphens to delimit each tag. For example: 46,PAD-SNI-STK-VER-CCS-NONC-AEAD-UAID-SCID-TCID-PDMD-SMHL-ICSL-NONP-PUBS-MIDS-SCLS-KEXS-XLCT-CSCT-COPT-CCRT-IRTT-CFCW-SFCW. After this string is created, it is then MD5 hashed to produce an easily shareable fingerprint. Hashing the previous string results in a CYU value of a46560d4548108cf99308319b3b85346. This is the most common fingerprint, making up the vast majority of GQUIC traffic.

Use case: Merlin C2

The CYU fingerprinting method can be very useful when it comes to detecting beacons transmitting to servers over GQUIC. For example, Merlin C2 clients use very few tags in their client hellos, giving them an anomalous fingerprints. Known Merlin beacon fingerprints: e030dea1f2eea44ac7db5fe4de792acd, 0811fab28e41e8c8a33e220a15b964d9, d8b208b236d176c89407500dbefb04c2.

New Events Created

The GQUIC protocol analyzer adds new four events which can be called in Zeek scripts.

gquic_packet

event (c: connection, is_orig: bool, hdr: GQUIC::PublicHeader)

Generated whenever a regular GQUIC packet is raised.

  • c: The connection.
  • is_orig: True if the event is raised for the originator side.
  • hdr: A data type which contains the packet number, connection ID, and version of a GQUIC packet.

gquic_client_version

event event(c: connection, version: count)

Raised whenever a GQUIC client sends a Regular Packet with a novel GQUIC version number.

  • c: The connection.
  • version: The version number seen in the packet.

gquic_hello

event (c: connection, is_orig: bool, hdr: GQUIC::PublicHeader, hello: GQUIC::HelloInfo);

Generated whenever a client hello packet is detected in GQUIC traffic. It includes the additional information contained in the hello packet.

  • c: The connection.
  • is_orig: True if the event is raised for the originator side.
  • hdr: A data type which contains the packet number, connection ID, and version of a GQUIC packet.
  • hello: A data type which contains the information about the tags of a client hello packet.

gquic_rej

event (c: connection, is_orig: bool, hdr: GQUIC::PublicHeader, rej: GQUIC::RejInfo);

Generated whenever a rejection packet (server hello) is detected in GQUIC traffic. It includes the additional information contained in the rejection packet.

  • c: The connection.
  • is_orig: True if the event is raised for the originator side.
  • hdr: A data type which contains the packet number, connection ID, and version of a GQUIC packet.
  • rej: A data type which contains the information about the tags of a server rejection packet.

New Constants

Defined in the init.bro script, a constant named skip_after_confirm is set to true. This means that only the initial exchange between the client and server will be captured. This is done to reduce noise, but it also reduces some visibility. It can be set to true as one sees fit.

New Types Created

The GQUIC protocol analyzer adds three new data types which can be referenced in Zeek scripts.

type: PublicHeader

pkt_num: count
cid: string &optional
version_exists: bool
version: count &optional
  • pkt_num: The packet number in the GQUIC traffic.
  • cid: The unique, client-selected, connection ID which defines the connection.
  • version_exists: True if the version number is in the packet header.
  • version: The GQUIC version used by the packet and stream.

type: HelloInfo

tag:	count;
padding_len:	count;
sni_exists:	bool;
sni:	string &optional;
stk_exists:	bool;
stk:	string &optional;
sno_exists:	bool;
sno:	string &optional;
ver_exists:	bool;
ver:	string &optional;
ccs_exists:	bool;
ccs:	string &optional;
nonc_exists:	bool;
nonc:	string &optional;
mspc_exists:	bool;
mspc:	string &optional;
aead_exists:	bool;
aead:	string &optional;
uaid_exists:	bool;
uaid:	string &optional;
scid_exists:	bool;
scid:	string &optional;
tcid_exists:	bool;
tcid:	string &optional;
pdmd_exists:	bool;
pdmd:	string &optional;
smhl_exists:	bool;
smhl:	string &optional;
icsl_exists:	bool;
icsl:	string &optional;
ctim_exists:	bool;
ctim:	string &optional;	
nonp_exists:	bool;
nonp:	string &optional;
pubs_exists:	bool;
pubs:	string &optional;
mids_exists:	bool;
mids:	string &optional;
scls_exists:	bool;
scls:	string &optional;
kexs_exists:	bool;
kexs:	string &optional;
xlct_exists:	bool;
xlct:	string &optional;
csct_exists:	bool;
csct:	string &optional;
copt_exists:	bool;
copt:	string &optional;
ccrt_exists:	bool;
ccrt:	string &optional;
irtt_exists:	bool;
irtt:	string &optional;
cetv_exists:	bool;
cetv:	string &optional;
cfcw_exists:	bool;
cfcw:	string &optional;
sfcw_exists:	bool;
sfcw:	string &optional;
tag_list: string;
  • tag: The total number of tags found in the client hello packet
  • padding_len: The offset at which padding length starts. Currently it is set to zero.
  • sni_exists: True if the server name indication tag exists.
  • sni: The fully qualified DNS name of the server, canonicalized to lowercase with no trailing period. Internationalized domain names need to be encoded as A-labels defined in RFC 5890.
  • stk_exists: True if the source address token tag exists.
  • stk: The source-address token that the server has previously provided, if any.
  • sno_exists: True if the server nonce tag exists.
  • sno: An echoed server nonce, if the server has provided one.
  • ver_exists: True if the version tag exists.
  • ver: The protocol version advertised by the client.
  • ccs_exists: True if the common certificate sets tag exists.
  • ccs: A series of 64-bit, FNV-1a hashes of sets of common certificates that the client possesses.
  • nonc_exists: True if the client nonce tag exists.
  • nonc: 32 bytes consisting of 4 bytes of timestamp (big-endian, UNIX epoch seconds), 8 bytes of server orbit and 20 bytes of random data.
  • mspc_exists: True if the max streams per connection tag exists.
  • mspc: The value through which each endpoint to independently set maximum number of supported streams. Being replaced by MIDS ("Maximum Incoming Dynamic Streams").
  • aead_exists: True if the authenticated encryption algorithms tag exists.
  • aead: Contains the tag of the encryption algorithm to be used.
  • uaid_exists: True if the client's user agent ID tag exists.
  • uaid: Contains the value of the user agent that sent the client hello packet.
  • scid_exists: True if the server config ID tag exists.
  • scid: 16-byte identifier for the ID of the server configuration that the client is using.
  • tcid_exists: True if the connection ID truncation tag exists.
  • tcid: Indicates support for truncated Connection IDs. If sent by a peer, indicates the connection IDs sent to the peer should be truncated to 0 bytes. Useful for cases when a client ephemeral port is only used for a single connection.
  • pdmd_exists: True if the proof demand tag exists.
  • pdmd: A list of tags describing the types of proof acceptable to the client, in preference order. Currently only X509 is defined.
  • smhl_exists: True if the support max header list tag exists.
  • smhl: The value of support max header list (size).
  • icsl_exists: True if the idle connection state tag exists.
  • icsl: The value denoting implicit shutdown. The default idle timeout for a QUIC connection is 30 seconds. The maximum is 10 minutes. If there is no network activity for the duration of the idle timeout, the connection is closed.
  • ctim_exists: True if the client timestamp tag exists.
  • ctim: The value of the client timestamp.
  • nonp_exists: True if the client proof nonce tag exists.
  • nonp: The 32 byte value of the client proof nonce.
  • pubs_exists: True if the public value tag exists.
  • pubs: The client’s public value for the given key exchange algorithm. 24-bit, little-endian length prefixed, in the same order as in KEXS. P-256 public values, if any, are encoded as uncompressed points in X9.62 format.
  • mids_exists: True if the max incoming dynamic strings tag exists.
  • mids: The value of the set maximum number of supported incoming streams.
  • scls_exists: True if the silently close on timeout tag exists.
  • scls: The value which permits a silent close upon timeout.
  • kexs_exists: True if the key exchange algorithms tag exists.
  • kexs: The selected tag of the key exchange algorithm to be used. Currently defined tags include C255 and P256.
  • xlct_exists: True if the expected leaf certificate tag exists.
  • xlct: A 64-bit, FNV-1a hash of the leaf certificate that the client expects the server to be using. The full contents of the certificate will be added into the HMAC-based key derivation function. If cached certificates are present, the first such entry should be identical to the value of this field.
  • csct_exists: True if the signed cert timestamp tag exists.
  • csct: The value of the signed cert timestamp, which is often missing.
  • copt_exists: True if the connection options tag exists.
  • copt: The field contains any connection options being requested by the client or server. These are typically used for experimentation and will evolve over time. Example use cases include changing congestion control algorithms and parameters such as initial window.
  • ccrt_exists: True if the cached certificates tag exists.
  • ccrt: A series of 64-bit, FNV-1a hashes of cached certificates for this server.
  • irtt_exists: True if the estimated initial RTT tag exists.
  • irtt: The value of the estimated initial round trip time for the connection.
  • cetv_exists: True if the client encrypted tag-value tag exists.
  • cetv: Specifies client certificates, Channel IDs and other non-public data in the client hello and encrypted using the AEAD.
  • cfcw_exists: True if the connection flow control window tag exists.
  • cfcw: The size in bytes of the connection level flow control window.
  • sfcw_exists: True if the stream flow control window tag exists.
  • sfcw: The size in bytes of the stream level flow control window.
  • tag_list: This captures the list of tags and their offsets in the order which they appear in the client hello packet.

type: RejInfo

tag_count: count;
tag_list: string; 
stk_exists:	bool;
stk:	string &optional;
sno_exists:	bool;
sno:	string &optional;
svid_exists:	bool;
svid:	string &optional;
prof_exists:	bool;
prof:	string &optional;
scfg_exists:	bool;
scfg:	string &optional;
rrej_exists:	bool;
rrej:	string &optional;
sttl_exists:	bool;
sttl:	string &optional;
csct_exists:	bool;
csct:	string &optional;
ver_exists:	bool;
ver:	string &optional;
aead_exists:	bool;
aead:	string &optional;
scid_exists:	bool;
scid:	string &optional;
pdmd_exists:	bool;
pdmd:	string &optional;
tbkp_exists:	bool;
tbkp:	string &optional;
pubs_exists:	bool;
pubs:	string &optional;
kexs_exists:	bool;
kexs:	string &optional;
obit_exists:	bool;
obit:	string &optional;
expy_exists:	bool;
expy:	string &optional;	
embedded_count:	count &optional;
  • tag_count: The total number of tags found in the rejection packet
  • tag_list: This captures the list of tags and their offsets in the order which they appear in the server rejection packet. Does not include tags found under SCFG.
  • stk_exists: True if the source address token tag exists.
  • stk: An opaque byte string that the client should echo in future client hello messages.
  • sno_exists: True if the server nonce tag exists.
  • sno: The server may set a nonce, which the client should echo in any future client hello messages. This allows a server to operate without a strike-register and for clients with clock-skew to connect.
  • svid_exists: True if the SVID tag exists.
  • svid: The SVID tag was once found in a pcap of Merlin C2 traffic. This tag is not currently supported by Wireshark.
  • prof_exists: True if the proof of authenticity tag exists.
  • prof: In the case of X.509, a signature of the server config by the public key in the leaf certificate. The format of the signature is currently fixed by the type of public key.
  • scfg_exists: True if the server config tag exists.
  • scfg: A message containing the server’s serialized config with its own set of tag/value pairs.
  • rrej_exists: True if the reasons for rejection tag exists.
  • rrej: The value which signifies why the server sent the rejection packet.
  • sttl_exists: True if the server config time to live tag exists.
  • sttl: The duration, in seconds, that the server config is valid for.
  • csct_exists: True if the signed certificate timestamp tag exists.
  • csct: The value of the signed certificate timestamp (defined by RFC 6962) of the leaf certificate
  • ver_exists: True if the version tag exists. This is the first of the tags included as a part of the server config message.
  • ver: Lists the versions that the server is able to use.
  • aead_exists: True if the authenticated encryption algorithms tag exists. Part of the server config message.
  • aead: A list of tags, in preference order, specifying the AEAD primitives supported by the server.
  • scid_exists: True if the server config ID tag exists. Part of the server config message.
  • scid: 16-byte identifier for this server configuration.
  • pdmd_exists: True if the proof demand tag exists. Part of the server config message.
  • pdmd: Used for finding proof acceptable to the client. Currently only X509 is defined.
  • tbkp_exists: True if the token binding key parameters tag exists. Part of the server config message.
  • tbkp: Value of the token.
  • pubs_exists: True if the public value tag exists. Part of the server config message.
  • pubs: A list of public values, 24-bit, little-endian length prefixed, in the same order as in KEXS. P-256 public values, if any, are encoded as uncompressed points in X9.62 format.
  • kexs_exists: True if the key exchange algorithms tag exists. Part of the server config message.
  • kexs: The selected tag of the key exchange algorithm to be used. Currently defined tags include C255 and P256.
  • obit_exists: True if the server orbit tag exists. Part of the server config message.
  • obit: An 8-byte, opaque value that identifies the strike-register.
  • expy_exists: True if the expiry tag exists. Part of the server config message.
  • expy: A 64-bit expiry time for the server config in UNIX epoch seconds.
  • embedded_count: The number of tags/value pairs defined in the server config message.

Credits

Created by:

With assistance from:

References:

About

GQUIC Protocol Analyzer for Zeek (Bro) Network Security Monitor

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:JavaScript 88.0%Language:Zeek 6.8%Language:C++ 3.5%Language:Makefile 0.7%Language:Shell 0.4%Language:CMake 0.4%Language:Standard ML 0.2%