Bug #2810
closedenabling add request/response http headers in master
Description
I was trying out the new response/request header feature ( https://github.com/OISF/suricata/pull/3639 - many thanks for the contribution !) for login and noticed the following
Using latest master as of the time of posting this issue:
suricata -V This is Suricata version 5.0.0-dev (rev 6c0ec0b2)
Default in yaml
# set this value to one among {both, request, response} to dump all # http headers for every http request and/or response # dump-all-headers: [both, request, response]
Given the default setting above in yaml a user may just try to adjust the dump-all-headers and use only "both" or "request, response" inside the []. In those cases the logging of the response/request headers will not work as intended (at least in my tests). See bellow:
Does not work
# set this value to one among {both, request, response} to dump all # http headers for every http request and/or response dump-all-headers: [request, response]
Does not work
# set this value to one among {both, request, response} to dump all # http headers for every http request and/or response dump-all-headers: [both]
Does not work
# set this value to one among {both, request, response} to dump all # http headers for every http request and/or response dump-all-headers: "response, request"
Works
# set this value to one among {both, request, response} to dump all # http headers for every http request and/or response dump-all-headers: "both"
Thanks Andreas for the pointer.
Updated by Victor Julien about 5 years ago
- Assignee changed from Maurizio Abba to OISF Dev
- Target version changed from TBD to 5.0.0
Updated by Philippe Antoine about 5 years ago
The code responsible for this is
const char *all_headers = ConfNodeLookupChildValue(
conf, "dump-all-headers");
if (all_headers != NULL) {
if (strcmp(all_headers, "both") == 0) {
http_ctx->flags |= LOG_HTTP_REQ_HEADERS;
http_ctx->flags |= LOG_HTTP_RES_HEADERS;
} else if (strcmp(all_headers, "request") == 0) {
http_ctx->flags |= LOG_HTTP_REQ_HEADERS;
} else if (strcmp(all_headers, "response") == 0) {
http_ctx->flags |= LOG_HTTP_RES_HEADERS;
}
}
So, I would change the comment in the yaml.
Maybe set this value to one among could become
set this value to one and only one among
And then
# dump-all-headers: none
As I was told that we should put the default value in the comment
Updated by Victor Julien about 5 years ago
Right, I think if we put 'none' there it should also be handled in the code (and reject all other values).
Updated by Victor Julien about 5 years ago
- Target version changed from 5.0.0 to 5.0.1
Updated by Victor Julien almost 5 years ago
- Status changed from New to Assigned
- Assignee changed from OISF Dev to Philippe Antoine
Updated by Victor Julien almost 5 years ago
- Status changed from Assigned to Closed