mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

- make TLS12 PRF a member function of the analyzer - use std::string in PRF - use StringValPtr instead of zeek::StringVal - replace malloc/free with C++ style allocations
111 lines
2.5 KiB
Text
111 lines
2.5 KiB
Text
#! Decrypt SSL/TLS payloads
|
|
|
|
@load base/frameworks/input
|
|
@load base/frameworks/notice
|
|
@load base/protocols/conn
|
|
@load base/protocols/ssl
|
|
|
|
module SSL;
|
|
|
|
export {
|
|
const keylog_file = getenv("ZEEK_TLS_KEYLOG_FILE") &redef;
|
|
|
|
global secrets: table[string] of string = {} &redef;
|
|
global keys: table[string] of string = {} &redef;
|
|
|
|
global add_keys: event(client_random: string, keys: string);
|
|
|
|
global add_secret: event(client_random: string, secret: string);
|
|
}
|
|
|
|
# Do not disable analyzers after detection - otherwise we will not receive
|
|
# encrypted packets.
|
|
redef SSL::disable_analyzer_after_detection=F;
|
|
|
|
redef record SSL::Info += {
|
|
# Decryption uses client_random as identifier
|
|
client_random: string &log &optional;
|
|
};
|
|
|
|
type Idx: record {
|
|
client_random: string;
|
|
};
|
|
|
|
type Val: record {
|
|
secret: string;
|
|
};
|
|
|
|
const input_stream_name = "input-tls-keylog-file";
|
|
|
|
event zeek_init()
|
|
{
|
|
# listen for secrets
|
|
Broker::subscribe("/zeek/tls/decryption");
|
|
|
|
# FIXME: is such a functionality helpful?
|
|
# ingest keylog file if the environment is set
|
|
if ( keylog_file != "" )
|
|
{
|
|
suspend_processing();
|
|
|
|
Input::add_table([$name=input_stream_name, $source=keylog_file, $destination=secrets, $idx=Idx, $val=Val, $want_record=F]);
|
|
Input::remove(input_stream_name);
|
|
}
|
|
}
|
|
|
|
event SSL::add_keys(client_random: string, val: string)
|
|
{
|
|
SSL::keys[client_random] = val;
|
|
}
|
|
|
|
event SSL::add_secret(client_random: string, val: string)
|
|
{
|
|
SSL::secrets[client_random] = val;
|
|
}
|
|
|
|
event ssl_client_hello(c: connection, version: count, record_version: count, possible_ts: time, client_random: string, session_id: string, ciphers: index_vec, comp_methods: index_vec)
|
|
{
|
|
c$ssl$client_random = client_random;
|
|
|
|
if ( client_random in keys )
|
|
{
|
|
set_keys(c, keys[client_random]);
|
|
}
|
|
else if ( client_random in secrets )
|
|
{
|
|
set_secret(c, secrets[client_random]);
|
|
}
|
|
}
|
|
|
|
event ssl_encrypted_data(c: connection, is_orig: bool, record_version: count, content_type: count, length: count, payload: string)
|
|
{
|
|
if ( c$ssl?$client_random )
|
|
{
|
|
if ( c$ssl$client_random in keys )
|
|
{
|
|
set_keys(c, keys[c$ssl$client_random]);
|
|
}
|
|
else if ( c$ssl$client_random in secrets )
|
|
{
|
|
set_secret(c, secrets[c$ssl$client_random]);
|
|
}
|
|
else
|
|
{
|
|
# FIXME: replace with @if gated reporter
|
|
#print "No suitable key or secret found for random:", c$ssl$client_random;
|
|
}
|
|
}
|
|
}
|
|
|
|
event SSL::tls_input_done()
|
|
{
|
|
continue_processing();
|
|
}
|
|
|
|
event Input::end_of_data(name: string, source: string)
|
|
{
|
|
if ( name == input_stream_name )
|
|
{
|
|
event SSL::tls_input_done();
|
|
}
|
|
}
|