Actions
Bug #2207
closedDNS UDP "Response" parsing recording an incorrect value
Affected Versions:
Effort:
Difficulty:
Label:
Description
Must change
if (f != NULL) {
dns_state->last_req = f->lastts;
}
to:
if (f != NULL) {
dns_state->last_resp = f->lastts;
}
The procedure is currently recording the last request (last_req), rather than the last response (last_resp) as it should to be consistent with the Response parsing.
Updated by Andreas Herz about 7 years ago
Since you found it, would you mind sending a PR for that? See more details at https://redmine.openinfosecfoundation.org/projects/suricata/wiki/Contributing
Updated by Victor Julien about 7 years ago
- Status changed from New to Closed
Updated by Victor Julien about 7 years ago
- Subject changed from DNS UDP "Respone" parsing recording an incorrect value to DNS UDP "Response" parsing recording an incorrect value
Actions