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

This only allows access to the ocsp stapling response data. No verification or anything else at the moment.
7 lines
202 B
Text
7 lines
202 B
Text
# @TEST-EXEC: bro -C -r $TRACES/tls/ocsp-stapling.trace %INPUT
|
|
# @TEST-EXEC: btest-diff .stdout
|
|
|
|
event ssl_stapled_ocsp(c: connection, is_orig: bool, response: string)
|
|
{
|
|
print is_orig, |response|;
|
|
}
|