diff --git a/hws/hw-fuzzing-tabbed.html b/hws/hw-fuzzing-tabbed.html index c693a4e..e3e6863 100644 --- a/hws/hw-fuzzing-tabbed.html +++ b/hws/hw-fuzzing-tabbed.html @@ -61,7 +61,10 @@

Background

  • You should have a recent version of Python, and you will need to be able to install packages, via pip
  • Changelog

    -

    Any changes to this page will be put here for easy reference. Typo fixes and minor clarifications are not listed here. So far there aren’t any significant changes to report.

    +

    Any changes to this page will be put here for easy reference. Typo fixes and minor clarifications are not listed here.

    +

    Setup

    This assignment must be done in a recent version of Python. The only additional package you will need is uvicorn – to install it, enter pip install uvicorn (or pip3 install uvicorn).

    You will need a number of files from this repository to work on this assignment:

    @@ -90,30 +93,31 @@

    Output

    We are going to use this particular call the visible test when you submit your assignment (although we will use a smaller word list to save time, but it will contain both class and development.log). Other hidden tests will be used to grade your assignment.

    DO NOT HAVE ANY OTHER OUTPUT! We are going to test it by doing a file comparison, so if you have any other output it will report as not the same, and you will fail that test. Again, the order of the lines in your output does not matter.

    Task 2: Advanced fuzzing

    -

    There are a number of command-line parameters that the fuzzer.py file will accept. You have to implement usage of the others. You can find the via python3 fuzzer.py -h. The remaining ones to implement are as follows. Note that these are already parsed for you; you just have to handle when those values are in the args parameter to the fuzz() function.

    +

    There are a number of command-line parameters that the fuzzer.py file will accept. You have to implement usage of the others. You can find them all via python3 fuzzer.py -h. The remaining ones to implement are as follows. Note that these are already parsed for you; you just have to handle when those values are in the args parameter to the fuzz() function.