| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # Fuzzer dictionary targetting HTTP/1.1 requests, to the extent that |
| 6 # HttpServer parses those (not very much). |
| 7 |
| 8 # Tokens the parser cares about. |
| 9 # INPUT_LWS |
| 10 " " |
| 11 "\x09" |
| 12 |
| 13 # INPUT_CR |
| 14 "\x0D" |
| 15 |
| 16 # INPUT_LF |
| 17 "\x0A" |
| 18 |
| 19 # INPUT_COLON |
| 20 ":" |
| 21 |
| 22 # Methods... The code doesn't actually care much about those |
| 23 "GET " |
| 24 "HEAD " |
| 25 |
| 26 # The server really wants one of these. |
| 27 "HTTP/1.1" |
| 28 |
| 29 # Some characters for URLs. |
| 30 "/" |
| 31 "%" |
| 32 "a" |
| 33 "?" |
| 34 |
| 35 # Want this accessible... |
| 36 "\x0D\x0A" |
| 37 |
| 38 # Some stuff for headers |
| 39 "Content-Length: 10" |
| 40 |
| 41 # Things that WebSocket cares about. |
| 42 "Connection: upgrade" |
| 43 "sec-websocket-version: 8" |
| 44 "sec-websocket-version: 13" |
| 45 "sec-websocket-key: abcd" |
| 46 # There is a separate fuzzer for this. |
| 47 "sec-websocket-extensions: permessage-deflate" |
| OLD | NEW |