Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Write unit tests for message parsing code #3

Open
28 tasks
jmcph4 opened this issue Mar 20, 2020 · 0 comments
Open
28 tasks

Write unit tests for message parsing code #3

jmcph4 opened this issue Mar 20, 2020 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@jmcph4
Copy link
Owner

jmcph4 commented Mar 20, 2020

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
@jmcph4 jmcph4 self-assigned this Mar 20, 2020
@jmcph4 jmcph4 added the enhancement New feature or request label Mar 20, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant