mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Merge remote-tracking branch 'origin/topic/johanna/reformat-spicy-ssl'
* origin/topic/johanna/reformat-spicy-ssl: Bump spicy-format to 0.16.2 Bump spicy-format to 0.16.1 Spicy SSL: reformat with new version of spicy format
This commit is contained in:
commit
a0ff0fb18b
4 changed files with 11 additions and 5 deletions
|
@ -34,7 +34,7 @@ repos:
|
||||||
exclude: '^(.typos.toml|src/SmithWaterman.cc|testing/.*|auxil/.*|scripts/base/frameworks/files/magic/.*|CHANGES)$'
|
exclude: '^(.typos.toml|src/SmithWaterman.cc|testing/.*|auxil/.*|scripts/base/frameworks/files/magic/.*|CHANGES)$'
|
||||||
|
|
||||||
- repo: https://github.com/bbannier/spicy-format
|
- repo: https://github.com/bbannier/spicy-format
|
||||||
rev: v0.15.0
|
rev: v0.16.2
|
||||||
hooks:
|
hooks:
|
||||||
- id: spicy-format
|
- id: spicy-format
|
||||||
# TODO: Reformat existing large analyzers just before 8.0.
|
# TODO: Reformat existing large analyzers just before 8.0.
|
||||||
|
|
6
CHANGES
6
CHANGES
|
@ -1,3 +1,9 @@
|
||||||
|
7.1.0-dev.309 | 2024-09-12 08:51:08 +0200
|
||||||
|
|
||||||
|
* Bump spicy-format to 0.16.2 (Johanna Amann, Corelight)
|
||||||
|
|
||||||
|
* Spicy SSL: reformat with new version of spicy format (Johanna Amann, Corelight)
|
||||||
|
|
||||||
7.1.0-dev.305 | 2024-09-11 16:55:55 +0200
|
7.1.0-dev.305 | 2024-09-11 16:55:55 +0200
|
||||||
|
|
||||||
* Spicy SSL analyzer:
|
* Spicy SSL analyzer:
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
7.1.0-dev.305
|
7.1.0-dev.309
|
||||||
|
|
|
@ -701,7 +701,7 @@ type SSL2Record = unit(lengthone: uint8, inout msg: Message, inout sh: Share) {
|
||||||
var length: uint16;
|
var length: uint16;
|
||||||
|
|
||||||
on lengthtwo {
|
on lengthtwo {
|
||||||
self.length = (cast<uint16>(lengthone) & 0x7F)<<8 | self.lengthtwo;
|
self.length = (cast<uint16>(lengthone) & 0x7F) << 8 | self.lengthtwo;
|
||||||
}
|
}
|
||||||
message_type: uint8;
|
message_type: uint8;
|
||||||
|
|
||||||
|
@ -712,7 +712,7 @@ type SSL2Record = unit(lengthone: uint8, inout msg: Message, inout sh: Share) {
|
||||||
SSL2ProtocolMessages::ssl_server_verify -> : skip bytes &size=self.length;
|
SSL2ProtocolMessages::ssl_server_verify -> : skip bytes &size=self.length;
|
||||||
SSL2ProtocolMessages::ssl_request_certificate -> : skip bytes &size=self.length;
|
SSL2ProtocolMessages::ssl_request_certificate -> : skip bytes &size=self.length;
|
||||||
SSL2ProtocolMessages::ssl_client_certificate -> : skip bytes &size=self.length;
|
SSL2ProtocolMessages::ssl_client_certificate -> : skip bytes &size=self.length;
|
||||||
} if(get_encrypted(sh) == False) ;
|
} if(get_encrypted(sh) == False);
|
||||||
: skip bytes &size=self.length if(get_encrypted(sh) == True);
|
: skip bytes &size=self.length if(get_encrypted(sh) == True);
|
||||||
|
|
||||||
on %done {
|
on %done {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue