http (777B)
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-2019, 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 14 http_header_body_delimiter = "\x0d\x0a\x0d\x0a" 15 http_header_header_delimiter = "\x0d\x0a" 16 # multi-character tokens only 17 #http_header_value_delimiter = " " 18 19 content_length_header = "Content-Length:" 20 forwarded_for_header = "Forwarded-For:" 21 x_forwarded_for_header = "X-Forwarded-For:" 22 23 get_command = "GET" 24 post_command = "POST"