http 777 B

123456789101112131415161718192021222324
  1. #
  2. # AFL dictionary for the Tor Directory protocol's HTTP headers
  3. # ------------------------------------------------------------
  4. #
  5. # Extracted from directory_handle_command() in the tor source code
  6. #
  7. # Copyright (c) 2016-2017, The Tor Project, Inc.
  8. # See LICENSE for licensing information
  9. #
  10. # Usage:
  11. # Select the dictionaries relevant to the part of the directory protocol you
  12. # are fuzzing, and feed them to your fuzzer (if it supports dictionaries).
  13. http_header_body_delimiter = "\x0d\x0a\x0d\x0a"
  14. http_header_header_delimiter = "\x0d\x0a"
  15. # multi-character tokens only
  16. #http_header_value_delimiter = " "
  17. content_length_header = "Content-Length:"
  18. forwarded_for_header = "Forwarded-For:"
  19. x_forwarded_for_header = "X-Forwarded-For:"
  20. get_command = "GET"
  21. post_command = "POST"