mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
IKE attributes are an array of TLV style objects, this means there can
be duplicate types seen on the wire. However, Suricata logs these as a
mapping with the type as the key. This can result in the JSON
containing duplicate keys.
To address this, log the attributes as an array of objects, allow
duplicates to exist, for example:
"client": {
"proposals": [
{
"sa_life_duration": "Unknown",
"sa_life_duration_raw": 86400,
}
}
}
is now logged as:
"client": {
"proposals": [
{"key": "sa_life_duration", "value": "Unknown", "raw": 86400}
]
}
Also adds `"version": 2` to each IKE record to note the change of
format from previous versions.
Ticket: #7902
|
1 month ago | |
|---|---|---|
| .. | ||
| .cargo | 1 year ago | |
| derive | 6 months ago | |
| htp | 2 months ago | |
| src | 1 month ago | |
| suricatactl | 5 months ago | |
| suricatasc | 5 months ago | |
| sys | 1 month ago | |
| .gitignore | 1 year ago | |
| Cargo.lock.in | 1 month ago | |
| Cargo.toml.in | 2 months ago | |
| Makefile.am | 1 month ago | |
| cbindgen.toml | 1 month ago | |
| rustfmt.toml | 2 years ago | |