You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the message parsing code (i.e. the conversion methods to_bytes and from_bytes for the Message trait) present the largest attack surface against tftpd (and the client also).
Unit tests are required for all message parsing code, covering the following test cases:
RRQ
Mismatched opcode
Missing filename
Unterminated filename
Missing mode string
Unterminated mode string
Unterminated filename and unterminated mode string
Too few bytes
Too many bytes
WRQ
Mismatched opcode
Missing filename
Unterminated filename
Missing mode string
Unterminated mode string
Unterminated filename and unterminated mode string
Too few bytes
Too many bytes
DATA
Mismatched opcode
No data
Too few bytes
Too many bytes
ACK
Mismatched opcode
Too few bytes
Too many bytes
ERROR
Mismatched opcode
Missing error message
Unterminated error message
Too few bytes
Too many bytes
The text was updated successfully, but these errors were encountered:
Currently, the message parsing code (i.e. the conversion methods
to_bytes
andfrom_bytes
for theMessage
trait) present the largest attack surface againsttftpd
(and the client also).Unit tests are required for all message parsing code, covering the following test cases:
RRQ
WRQ
DATA
ACK
ERROR
The text was updated successfully, but these errors were encountered: