summaryrefslogtreecommitdiff
path: root/tests/otv-heapoverflow-2.out
Commit message (Collapse)AuthorAgeFilesLines
* Use UTC/GMT time when building/checking tests filesFrancois-Xavier Le Bail2018-08-091-10/+10
| | | | | | | | | | | | | This will avoid some differences when checking in different time zones. We now run the tests without the '-t' option. This will allow to get problems/changes in time printing functions. Update the output of the tests accordingly. Moreover: Add the '-#' option to better identify a packet when there is a difference in output.
* Add more nd_print_trunc() callsFrancois-Xavier Le Bail2018-06-061-1/+1
| | | | Update the output of some tests accordingly.
* CVE-2017-5342/pass correct caplen value to ether_print()Denis Ovsienko2017-01-181-0/+11
In that function the "length" parameter means off-the-wire length, that is, the length declared inside the outer header. The "caplen" parameter means the amount of bytes actually available in the captured packet. gre_print_0() and the functions modelled after it passed the value of "length" instead of the value of "caplen", this could make ether_print() access beyond the memory allocated for the captured packet. Brian Carpenter had demonstrated this for the OTV case. Fix the involved functions that call ether_print() to pass the correct value and leave a comment to dismiss "caplen" later as its value can be reliably derived from the other ether_print() parameters.