summaryrefslogtreecommitdiff
path: root/tests/tftp-heapoverflow.out
Commit message (Collapse)AuthorAgeFilesLines
* TFTP: Print protocol name and length keywordFrancois-Xavier Le Bail2019-03-101-1/+1
| | | | Update the output of a test accordingly.
* Use UTC/GMT time when building/checking tests filesFrancois-Xavier Le Bail2018-08-091-1/+1
| | | | | | | | | | | | | 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.
* CVE-2016-7983,7984/Don't use strchr() to scan packet data.Guy Harris2017-01-181-0/+2
It can't be told to stop at the end of the packet data. Add a fn_printztn() that prints null-terminated strings, with a length check, and which returns the number of bytes processed, or 0 if we ran out of data. That means it does the scanning we need, but safely. Use it in the TFTP and BOOTP printers. Fixes a heap overflow found with American Fuzzy Lop by Hanno Böck.