diff --git a/README.md b/README.md index 725523e..fcd141e 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,13 @@ Bypass Url Parser, made with love by @TheLaluka A tool that tests MANY url bypasses to reach a 40X protected page. Usage: - ./bypass_url_parser.py -u [-m ] [-o ] [-S ] [(-H
)...] [-r ] - [-s ] [--spoofip-replace] [-p ] [--spoofport-replace] [--dump-payloads] - [-t ] [-T ] [-x ] [-v | -d | -dd] + ./bypass_url_parser.py (-u | -R ) [-m ] [-o ] [-S ] [ (-H
)...] [-r ] + [-s ] [--spoofip-replace] [-p ] [--spoofport-replace] [--request-tls] + [--dump-payloads] [-t ] [-T ] [-x ] [-v | -d | -dd] Program options: + -u, --url URL (path is optional) to run bypasses against + -R, --request Load HTTP raw request from a file -H, --header
Header(s) to use, format: "Cookie: can_i_haz=fire" -m, --mode Bypass modes. See 'Bypasser.BYPASS_MODES' in code [Default: all] -o, --outdir Output directory for results @@ -35,7 +37,6 @@ Program options: -r, --retry Retry attempts of failed requests. Set 0 to disable all retry tentatives [Default: 3] -t, --threads Scan with N parallel threads [Default: 1] -T, --timeout Request times out after N seconds [Default: 5] - -u, --url URL (path is optional) to run bypasses against General options: -h, --help Show help, you are here :) @@ -47,21 +48,23 @@ General options: Misc options: --spoofip-replace Disable list of default internal IPs in 'http_headers_ip' bypass mode --spoofport-replace Disable list of default internal ports in 'http_headers_port' bypass mode + --request-tls Force usage of TLS/HTTPS for the request load with the '-R, --request' option --dump-payloads Print all payloads (curls) generated by this tool. Examples: ./bypass_url_parser.py -u "http://127.0.0.1/juicy_403_endpoint/" -s 8.8.8.8 -d ./bypass_url_parser.py -u /path/urls -t 30 -T 5 -H "Cookie: me_iz=admin" -H "User-agent: test" + ./bypass_url_parser.py -R /path/request_file --request-tls -m "mid_paths, end_paths" ``` ## Expected result ```bash ./bypass_url_parser.py -u http://127.0.0.1:8000/foo/bar -2022-08-09 14:52:40 lalu-perso bup[361559] WARNING Trying to bypass 'http://127.0.0.1:8000/foo/bar' url (1625 payloads)... -2022-08-09 14:52:40 lalu-perso bup[361559] INFO Doing: 50 / 1625 +2022-08-09 14:52:40 lalu-perso bup[361559] WARNING Trying to bypass 'http://127.0.0.1:8000/foo/bar' url (3213 payloads)... +2022-08-09 14:52:40 lalu-perso bup[361559] INFO Doing: 50 / 3213 [...] -2022-08-09 14:52:54 lalu-perso bup[361559] INFO Doing: 1600 / 1625 +2022-08-09 14:52:54 lalu-perso bup[361559] INFO Doing: 3200 / 3213 2022-08-09 14:52:54 lalu-perso bup[361559] INFO Retry (1/3) the '16' failed curl commands with 10 threads and 10s timeout 2022-08-09 14:52:54 lalu-perso bup[361559] INFO Retry (2/3) the '16' failed curl commands with 5 threads and 20s timeout 2022-08-09 14:52:54 lalu-perso bup[361559] INFO Retry (3/3) the '16' failed curl commands with 1 threads and 30s timeout @@ -125,6 +128,12 @@ cat /path/urls | ./bypass_url_parser.py -u - echo 'http://thinkloveshare.com/test' | ./bypass_url_parser.py -u - ``` +### Target definition + +A target must be defined for the tool to work. 2 options: +- `-u, --url`: URL(s), in GET +- `-R, --request`: Request file. The protocol can't be guessed from file, so `http` by default or `https` if `--request-tls` option is present. + ### Bypass mode If `-m, --mode` is specified, you can select the desired bypass mode to run a specific test (or tests) and reduce the number of requests sent by the tool. diff --git a/bypass_url_parser.py b/bypass_url_parser.py index 74dc3e0..c3f7d89 100755 --- a/bypass_url_parser.py +++ b/bypass_url_parser.py @@ -4,11 +4,13 @@ A tool that tests MANY url bypasses to reach a 40X protected page. Usage: - ./bypass_url_parser.py -u [-m ] [-o ] [-S ] [(-H
)...] [-r ] - [-s ] [--spoofip-replace] [-p ] [--spoofport-replace] [--dump-payloads] - [-t ] [-T ] [-x ] [-v | -d | -dd] + ./bypass_url_parser.py (-u | -R ) [-m ] [-o ] [-S ] [ (-H
)...] [-r ] + [-s ] [--spoofip-replace] [-p ] [--spoofport-replace] [--request-tls] + [--dump-payloads] [-t ] [-T ] [-x ] [-v | -d | -dd] Program options: + -u, --url URL (path is optional) to run bypasses against + -R, --request Load HTTP raw request from a file -H, --header
Header(s) to use, format: "Cookie: can_i_haz=fire" -m, --mode Bypass modes. See 'Bypasser.BYPASS_MODES' in code [Default: all] -o, --outdir Output directory for results @@ -19,7 +21,6 @@ -r, --retry Retry attempts of failed requests. Set 0 to disable all retry tentatives [Default: 3] -t, --threads Scan with N parallel threads [Default: 1] -T, --timeout Request times out after N seconds [Default: 5] - -u, --url URL (path is optional) to run bypasses against General options: -h, --help Show help, you are here :) @@ -31,17 +32,23 @@ Misc options: --spoofip-replace Disable list of default internal IPs in 'http_headers_ip' bypass mode --spoofport-replace Disable list of default internal ports in 'http_headers_port' bypass mode + --request-tls Force usage of TLS/HTTPS for the request load with the '-R, --request' option --dump-payloads Print all payloads (curls) generated by this tool. Examples: ./bypass_url_parser.py -u "http://127.0.0.1/juicy_403_endpoint/" -s 8.8.8.8 -d ./bypass_url_parser.py -u /path/urls -t 30 -T 5 -H "Cookie: me_iz=admin" -H "User-agent: test" + ./bypass_url_parser.py -R /path/request_file --request-tls -m "mid_paths, end_paths" """ from __future__ import annotations +from collections import defaultdict + +import coloredlogs import concurrent.futures import hashlib +import json import locale import logging import os @@ -51,16 +58,14 @@ import subprocess import sys import tempfile -from collections import defaultdict +from docopt import docopt from enum import IntEnum from pathlib import Path from queue import Queue +from shlex import join as shlex_join from shutil import which from urllib.parse import ParseResult, urlparse -import coloredlogs -from docopt import docopt - VERSION = "0.2.0" logger = logging.getLogger("bup") @@ -75,6 +80,11 @@ class SaveLevel(IntEnum): # Default class values REGEX_URL = re.compile(r"^https?://[^/]+", re.IGNORECASE) REGEX_PROXY_URL = re.compile(r"^https?://.*:\d{2,5}$", re.IGNORECASE) + REGEX_REQ_METHOD = re.compile(r"^(\w+)\s.*\sHTTP/\d\.?\d?$", re.IGNORECASE | re.MULTILINE) + REGEX_REQ_TARGET = re.compile(r"^\w+\s(.*)\sHTTP/\d\.?\d?$", re.IGNORECASE | re.MULTILINE) + REGEX_REQ_HTTP_VERSION = re.compile(r"^\w+\s.*\sHTTP/(\d|\d\.\d)$", re.IGNORECASE | re.MULTILINE) + REGEX_REQ_HOST = re.compile(r"^Host:\s(.*)$", re.IGNORECASE | re.MULTILINE) + REGEX_REQ_CONTENT_TYPE = re.compile(r"^Content-Type:\s(\w+/\w+);?.*$", re.IGNORECASE | re.MULTILINE) BYPASS_MODES = {"all", "mid_paths", "end_paths", "http_host", "http_methods", "http_versions", "case_substitution", "unicode", "char_encode", "http_headers_method", "http_headers_scheme", "http_headers_ip", "http_headers_port", "http_headers_url", "misc"} # Not yet all implemented, coming soon @@ -84,6 +94,8 @@ class SaveLevel(IntEnum): DEFAULT_HTTP_VERSION = "0" # Disabled by default. Lets curl to manage its own version of HTTP by default DEFAULT_LOG_FILENAME = "triaged-bypass.log" DEFAULT_OUTPUT_DIR = f"{tempfile.TemporaryDirectory().name}-bypass-url-parser" + DEFAULT_REQUEST_TLS = False # Use HTTP protocol by default for requests load with the --request option + DEFAULT_REQUEST_METHOD = "GET" DEFAULT_RETRY_NUMBER = 3 DEFAULT_SAVE_LEVEL = SaveLevel.MINIMAL DEFAULT_SPOOF_IP_REPLACE = False @@ -132,33 +144,40 @@ def __init__(self, config_dict=None, encoding=None, verbose=False, debug=False, # Import HTTP headers payloads self.header_http_methods = Tools.load_file_into_memory_list( - "payloads/header_http_methods.lst", enc_format=self.encoding, ext_logger=self.logger, - debug=self.debug_class) + "payloads/header_http_methods.lst", enc_format=self.encoding, clean_filename=False, external_file=False, + return_str=False, ext_logger=self.logger, debug=self.debug_class) self.header_ip_hosts = Tools.load_file_into_memory_list( - "payloads/header_ip_hosts.lst", enc_format=self.encoding, ext_logger=self.logger, debug=self.debug_class) + "payloads/header_ip_hosts.lst", enc_format=self.encoding, clean_filename=False, external_file=False, + return_str=False, ext_logger=self.logger, debug=self.debug_class) self.header_ports = Tools.load_file_into_memory_list( - "payloads/header_ports.lst", enc_format=self.encoding, ext_logger=self.logger, debug=self.debug_class) + "payloads/header_ports.lst", enc_format=self.encoding, clean_filename=False, external_file=False, + return_str=False, ext_logger=self.logger, debug=self.debug_class) self.header_proto_schemes = Tools.load_file_into_memory_list( - "payloads/header_proto_schemes.lst", enc_format=self.encoding, ext_logger=self.logger, - debug=self.debug_class) + "payloads/header_proto_schemes.lst", enc_format=self.encoding, clean_filename=False, external_file=False, + return_str=False, ext_logger=self.logger, debug=self.debug_class) self.header_urls = Tools.load_file_into_memory_list( - "payloads/header_urls.lst", enc_format=self.encoding, ext_logger=self.logger, debug=self.debug_class) + "payloads/header_urls.lst", enc_format=self.encoding, clean_filename=False, external_file=False, + return_str=False, ext_logger=self.logger, debug=self.debug_class) # Import internal bypass payloads self.internal_endpaths = Tools.load_file_into_memory_list( - "payloads/internal_endpaths.lst", enc_format=self.encoding, ext_logger=self.logger, debug=self.debug_class) + "payloads/internal_endpaths.lst", enc_format=self.encoding, clean_filename=False, external_file=False, + return_str=False, ext_logger=self.logger, debug=self.debug_class) self.internal_http_methods = Tools.load_file_into_memory_list( - "payloads/internal_http_methods.lst", enc_format=self.encoding, ext_logger=self.logger, - debug=self.debug_class) + "payloads/internal_http_methods.lst", enc_format=self.encoding, clean_filename=False, external_file=False, + return_str=False, ext_logger=self.logger, debug=self.debug_class) self.internal_ip_hosts = Tools.load_file_into_memory_list( - "payloads/internal_ip_hosts.lst", enc_format=self.encoding, ext_logger=self.logger, debug=self.debug_class) + "payloads/internal_ip_hosts.lst", enc_format=self.encoding, clean_filename=False, external_file=False, + return_str=False, ext_logger=self.logger, debug=self.debug_class) self.internal_midpaths = Tools.load_file_into_memory_list( - "payloads/internal_midpaths.lst", enc_format=self.encoding, ext_logger=self.logger, debug=self.debug_class) + "payloads/internal_midpaths.lst", enc_format=self.encoding, clean_filename=False, external_file=False, + return_str=False, ext_logger=self.logger, debug=self.debug_class) self.internal_ports = Tools.load_file_into_memory_list( - "payloads/internal_ports.lst", enc_format=self.encoding, ext_logger=self.logger, debug=self.debug_class) + "payloads/internal_ports.lst", enc_format=self.encoding, clean_filename=False, external_file=False, + return_str=False, ext_logger=self.logger, debug=self.debug_class) self.internal_proto_schemes = Tools.load_file_into_memory_list( - "payloads/internal_proto_schemes.lst", enc_format=self.encoding, ext_logger=self.logger, - debug=self.debug_class) + "payloads/internal_proto_schemes.lst", enc_format=self.encoding, clean_filename=False, external_file=False, + return_str=False, ext_logger=self.logger, debug=self.debug_class) # Init properties self.binary_name = Bypasser.DEFAULT_BINARY_NAME @@ -177,7 +196,14 @@ def __init__(self, config_dict=None, encoding=None, verbose=False, debug=False, self.timeout = config_dict.get("--timeout") self.dump_payloads = config_dict.get("--dump-payloads") self.retry_number = config_dict.get("--retry") - self.urls = config_dict.get("--url") + self.request_tls = config_dict.get("--request-tls") + if config_dict.get("--request"): + self.request_raw = Tools.load_file_into_memory_list( + config_dict.get("--request"), enc_format=self.encoding, clean_filename=False, external_file=True, + return_str=True, ext_logger=self.logger, debug=self.debug_class) + else: + self.request_raw = None + self.urls = config_dict.get("--url") # *** Protected methods *** # @@ -465,7 +491,7 @@ def _run_curl(self, item): :param CurlItem item: Item object """ if self.debug: - self.logger.info(f"Current: {item.request_curl_cmd}") + self.logger.info(f"Current: {shlex_join(item.request_curl_cmd)}") try: process = subprocess.Popen(item.request_curl_cmd, text=True, shell=False, stderr=subprocess.STDOUT, stdout=subprocess.PIPE) @@ -490,7 +516,7 @@ def _run_curl(self, item): if item in self.to_retry_items: self.to_retry_items.remove(item) else: - error_msg = f"Command {item.request_curl_cmd} succeeds but returns no result" + error_msg = f'Command "{shlex_join(item.request_curl_cmd)}" succeeds but returns no result' self.logger.error(error_msg) raise ValueError(error_msg) # Raise a detailed CalledProcessError when the return code != 0 @@ -498,12 +524,13 @@ def _run_curl(self, item): raise subprocess.CalledProcessError(process.returncode, item.request_curl_cmd, output=result) except subprocess.CalledProcessError as e: - if self.verbose: - self.logger.warning(f"command '{e.cmd}' returned on-zero error code {e.returncode}: {e.output}") + if self.debug: + self.logger.warning(f'Command "{shlex_join(e.cmd)}" returned on-zero error code {e.returncode}: ' + f'{e.output}') # curl: (92) HTTP/2 stream 0 was not closed cleanly: PROTOCOL_ERROR (err 1) if e.returncode == 92: # With recent curl versions, can occur with HTTP/2 and the CONNECT method - if self.verbose: + if self.debug: self.logger.warning("Curl HTTP/2 with HTTP/1.1 upgrade failed. Force HTTP/1.1 for this " "request and add to retry list") # Force or add HTTP version 1.1 in item curl command @@ -515,8 +542,8 @@ def _run_curl(self, item): self.to_retry_items.add(item) except subprocess.TimeoutExpired as e: - if self.verbose: - self.logger.warning(f"command '{e.cmd}' timed out: {e.output}") + if self.debug: + self.logger.warning(f'Command "{shlex_join(e.cmd)}" timed out: {e.output}') self.to_retry_items.add(item) def _save_results(self, url_obj): @@ -619,6 +646,40 @@ def _output_results(self, url_obj, silent_mode=False) -> defaultdict[list]: return grouped_curl_items + def _parse_raw_request(self) -> None: + """ Parse raw request if present to define headers and url. + + Called by get_curl_base and keep the prevalence of existing headers. So it's possible to override a raw request + header with '-H' argument(s) + """ + if self.request_raw: + # Ignore raw request 'Accept-Encoding' header which causes an encoding error in result parsing (ex: gzip) + forbidden_header = re.compile(r"Accept-Encoding", re.IGNORECASE) + try: + # Parse request headers + for elt in self.request_headers.split("\n")[1:]: + key, value = elt.split(":", 1) + # To keep prevalence of the -H argument(s), do not delete existing entries + if key not in self.headers and not forbidden_header.search(key): + self.headers[key] = value.strip() + + # Define HTTP version + self.http_version = str(Bypasser.REGEX_REQ_HTTP_VERSION.search(self.request_headers).group(1)) + + # Define scheme & URL + request_target = Bypasser.REGEX_REQ_TARGET.search(self.request_headers).group(1) + base_host = Bypasser.REGEX_REQ_HOST.search(self.request_headers).group(1) + if self.request_tls: + self.urls = f"https://{base_host}{request_target}" + else: + self.urls = f"http://{base_host}{request_target}" + + except AttributeError: + error_msg = f"Please check that the raw request contains a valid HTTP method and a host " \ + f"header:\n{self.request_headers}" + self.logger.error(error_msg) + raise ValueError(error_msg) + def _retry_failed_commands(self): """Retry/Resend curl commands against failed items.""" if self.to_retry_items: @@ -677,7 +738,7 @@ def dump_bypasser_payloads(self, show_bypass_mode=True, show_full_cmd=False) -> def get_curl_base(self, forced_user_agent=None, forced_http_version=None, debug=False) -> list[str]: """Build curl base command. - User-agent prevalence rule : force_user_agent > -H "User-agent: xxx" > Bypasser.DEFAULT_USER_AGENT + User-agent prevalence rule : force_user_agent > -H "User-agent: xxx" > -R req_file UA > DEFAULT_USER_AGENT Note: place all based elements before '--path-as-is' which is key to split the base command from payload(s) @@ -685,9 +746,16 @@ def get_curl_base(self, forced_user_agent=None, forced_http_version=None, debug= :param str forced_http_version: Forced HTTP version :param bool debug: If True, log the obtained base command at the end of this method """ + # Optional raw request parsing + self._parse_raw_request() + # Build base curl command base_curl = [self.binary_name, "-sS", "-kgi"] + # Request method + if self.request_method != "GET": + base_curl.extend(["-X", self.request_method]) + # HTTP version if self.http_version != "0" and not forced_http_version: base_curl.append(f"--http{self.http_version}") @@ -703,6 +771,10 @@ def get_curl_base(self, forced_user_agent=None, forced_http_version=None, debug= else: base_curl.extend(["-H", f"{key}: {value}"]) + # Optional raw request data part + if self.request_raw and self.request_datas: + base_curl.extend(["-d", f'{self.request_datas}']) + # User-Agent / forced_user_agent & Pivot option if not forced_user_agent: # User-agent is a base option @@ -723,22 +795,40 @@ def get_curl_base(self, forced_user_agent=None, forced_http_version=None, debug= raise ValueError(error_msg) if debug: - self.logger.debug(f"Base curl command: {' '.join(base_curl)}") + self.logger.debug(f"Base curl command: {' '.join(shlex_join(base_curl))}") return base_curl - def run(self, urls=None, silent_mode=False) -> defaultdict[ParseResult, defaultdict]: - # Target URLs can be defined in object initialization or here - if urls: - self.urls = urls - if not self.urls: - error_msg = "Can't find any valid target url." + def run(self, urls=None, raw_request=None, raw_request_tls=None, silent_mode=False) \ + -> defaultdict[ParseResult, defaultdict]: + """ Executes and processes curl requests. + + :param any urls: Target base URL(s). Could be str / str list separated by comma / list / filename + :param str raw_request: Use a complete raw request as target instead of simple url + :param bool raw_request_tls: Force usage of TLS/HTTPS for the request load with raw_request parameter + :param bool silent_mode: Disable result printing on STDOUT + :return: All results produced by this method. Useful in library mode + """ + # Target URLs or request can be defined in object initialization or here + if raw_request_tls: + self.request_tls = raw_request_tls + if urls and raw_request: + error_msg = "Please make a choice between url(s) and raw request" self.logger.error(error_msg) raise ValueError(error_msg) + elif urls and not raw_request: + self.urls = urls + elif not urls and raw_request: + self.request_raw = raw_request # Rebuild curl base command self.base_curl = self.get_curl_base(debug=self.debug_class) + if not self.urls: + error_msg = "Can't find any valid target url" + self.logger.error(error_msg) + raise ValueError(error_msg) + if self.debug_class: self.logger.debug(f"Bypasser configuration:\n{self}") @@ -949,6 +1039,92 @@ def http_version(self, value) -> None: self.logger.error(error_msg) raise ValueError(error_msg) + @property + def request_content_type(self) -> str | None: + if self.request_headers: + content_type = Bypasser.REGEX_REQ_CONTENT_TYPE.search(self.request_headers) + if content_type: + return content_type.group(1) + else: + return None + else: + self.logger.warning("Please define request_raw property before trying to access its headers values.") + return None + + @property + def request_datas(self) -> str | None: + if self.request_raw: + split_request = self.request_raw.split("\n\n") + # When data part is present + if len(split_request) >= 2: + # Strip useless '\n' for curl command debug + request_data = split_request[1].replace("\n", "") + # If JSON, format datas for curl + if request_data: + if re.match(r"application/json", self.request_content_type, re.IGNORECASE): + return json.dumps(json.loads(request_data), separators=(',', ':')) + else: + return request_data + else: # Empty data part + return None + else: # The request doesn't contain a minimum of two '\n' + return None + else: + self.logger.warning("Please define request_raw property before trying to access its datas.") + return None + + @property + def request_headers(self) -> str | None: + if self.request_raw: + return self.request_raw.split("\n\n")[0] + else: + self.logger.warning("Please define request_raw property before trying to access its headers.") + return None + + @property + def request_method(self) -> str: + if self.request_raw: + method = Bypasser.REGEX_REQ_METHOD.search(self.request_headers) + if method: + return method.group(1).upper() + else: + error_msg = f"Custom raw request seems not having a method line in its headers:\n{self.request_headers}" + self.logger.error(error_msg) + raise ValueError(error_msg) + else: + return Bypasser.DEFAULT_REQUEST_METHOD + + @property + def request_raw(self) -> str: + return self._request_raw + + @request_raw.setter + def request_raw(self, value): + try: + if value: + if "\r" in value: + self._request_raw = value.replace("\r\n", "\n") # Windows txt editor + self._request_raw = self.request_raw.replace("\r", "\n") # Mac OS <= 9 + else: + self._request_raw = value + else: + self._request_raw = None + except Exception as e: + error_msg = f"Custom curl raw output parsing error. {e}" + self.logger.error(error_msg) + self.logger.error(repr(value)) + raise ValueError(error_msg) + + @property + def request_tls(self) -> bool: + return self._request_tls + + @request_tls.setter + def request_tls(self, value): + self._request_tls = Bypasser.DEFAULT_REQUEST_TLS + if value: + self._request_tls = value + @property def retry_number(self) -> int: return self._retry_number @@ -1346,7 +1522,7 @@ def save(self, output_dir, force_output_dir_creation=False) -> bool: if self.response_raw_output and Tools.is_exist_directory(output_dir, force_create=force_output_dir_creation): self.logger.debug(f"Saving html pages and short output in: '{output_dir}{Tools.SEPARATOR}'") with open(f"{out_filename}", mode="wt", encoding=self.encoding) as file: - file.write(f"{self.request_curl_cmd}\n\n{self.response_headers}\n\n{self.response_data}") + file.write(f"{shlex_join(self.request_curl_cmd)}\n\n{self.response_headers}\n\n{self.response_data}") return True else: return False @@ -1680,7 +1856,8 @@ def get_list_from_generic_arg(argument, arg_name="generic", enc_format=None, std if ext_logger and debug: ext_logger.debug(f"The '{arg_name}' argument is a file") return [line.rstrip() for line in Tools.load_file_into_memory_list( - argument, enc_format=encoding, clean_filename=False, ext_logger=ext_logger, debug=debug)] + argument, enc_format=encoding, clean_filename=False, external_file=True, return_str=False, + ext_logger=ext_logger, debug=debug)] # Arg value is a string elif isinstance(argument, str): # Arg value is a string with multiple items separated by a comma ("value1, value2, ...") @@ -1700,24 +1877,33 @@ def get_list_from_generic_arg(argument, arg_name="generic", enc_format=None, std raise ValueError(error_msg) @staticmethod - def load_file_into_memory_list(filename, enc_format=None, clean_filename=False, debug=False, - ext_logger=None) -> list[str]: - """Load whole file into a list in memory, using file.readlines() + def load_file_into_memory_list(filename, enc_format=None, clean_filename=False, external_file=False, + return_str=False, debug=False, ext_logger=None) -> list[str] | str: + """Load whole file into a list (or a string) in memory. Note: Fast for small files, do not use with huge file... :param str filename: Fast filename from args example: .\test.txt or "../../test.txt" :param str enc_format: Encoding format to read file. Default (locale.getpreferredencoding) (Optional) :param bool clean_filename: Is filename previously cleaned (transform_relative_filename) ? Default (False) + :param bool external_file: If not clean_filename, don't use project root dir for absolute file name resolution + :param bool return_str: Is true, this method return a string instead of a list :param bool debug: Show debug info from "transform_relative_filename" (Optional) :param logger ext_logger: Specify your own logger for debug (default: None) (Optional) - :return: List containing the whole file + :return: List or String (if return_str) containing the whole file """ file = None encoding = enc_format if enc_format else locale.getpreferredencoding(False) # Transform relative path to absolute if not clean_filename: - absolute_filename = os.path.join(os.path.realpath(os.path.dirname(filename)), os.path.basename(filename)) + if external_file: + # Absolute filename resolution based on the external file directory + absolute_filename = \ + os.path.join(os.path.realpath(os.path.dirname(filename)), os.path.basename(filename)) + else: + # Absolute filename resolution of files located in project dir. Allow to call the tool from anywhere, + # even with a symbolic link + absolute_filename = os.path.join(os.path.dirname(os.path.realpath(__file__)), filename) if ext_logger and debug and absolute_filename != filename: ext_logger.debug(f"Filename {filename} modified to {absolute_filename}") else: @@ -1725,7 +1911,10 @@ def load_file_into_memory_list(filename, enc_format=None, clean_filename=False, # Not using with statement, prefer keep control of debug_class try: file = open(absolute_filename, mode="rt", encoding=encoding) - tmp_list = file.read().strip().splitlines() + if return_str: + tmp = file.read() + else: + tmp = file.read().strip().splitlines() except IOError as error: if ext_logger: ext_logger.error(f"Unable to open {absolute_filename} file: \n{error}") @@ -1739,7 +1928,7 @@ def load_file_into_memory_list(filename, enc_format=None, clean_filename=False, raise else: file.close() - return tmp_list + return tmp @staticmethod def is_exist_directory(directory, force_create=False, create_mode=0o760) -> bool: diff --git a/tests-history/bup-payloads-2023-04-18.lst b/tests-history/bup-payloads-2023-04-18.lst new file mode 100644 index 0000000..af485f4 --- /dev/null +++ b/tests-history/bup-payloads-2023-04-18.lst @@ -0,0 +1,3215 @@ + +Bypasser has generated 3213 payloads for 'http://127.0.0.1:8000/foo/bar' url: +[case_substitution] http://127.0.0.1:8000/Foo/bar +[case_substitution] http://127.0.0.1:8000/fOo/bar +[case_substitution] http://127.0.0.1:8000/foO/bar +[case_substitution] http://127.0.0.1:8000/foo/Bar +[case_substitution] http://127.0.0.1:8000/foo/bAr +[case_substitution] http://127.0.0.1:8000/foo/baR +[char_encode] http://127.0.0.1:8000/%66oo/bar +[char_encode] http://127.0.0.1:8000/f%6fo/bar +[char_encode] http://127.0.0.1:8000/fo%6f/bar +[char_encode] http://127.0.0.1:8000/foo/%62ar +[char_encode] http://127.0.0.1:8000/foo/b%61r +[char_encode] http://127.0.0.1:8000/foo/ba%72 +[end_paths] http://127.0.0.1:8000/foo/bar# +[end_paths] http://127.0.0.1:8000/foo/bar#/ +[end_paths] http://127.0.0.1:8000/foo/bar#/./ +[end_paths] http://127.0.0.1:8000/foo/bar#/.// +[end_paths] http://127.0.0.1:8000/foo/bar#// +[end_paths] http://127.0.0.1:8000/foo/bar% +[end_paths] http://127.0.0.1:8000/foo/bar%/ +[end_paths] http://127.0.0.1:8000/foo/bar%00 +[end_paths] http://127.0.0.1:8000/foo/bar%00/ +[end_paths] http://127.0.0.1:8000/foo/bar%09 +[end_paths] http://127.0.0.1:8000/foo/bar%09/ +[end_paths] http://127.0.0.1:8000/foo/bar%0A +[end_paths] http://127.0.0.1:8000/foo/bar%0A/ +[end_paths] http://127.0.0.1:8000/foo/bar%0D +[end_paths] http://127.0.0.1:8000/foo/bar%0D/ +[end_paths] http://127.0.0.1:8000/foo/bar%20 +[end_paths] http://127.0.0.1:8000/foo/bar%20/ +[end_paths] http://127.0.0.1:8000/foo/bar%23 +[end_paths] http://127.0.0.1:8000/foo/bar%23/ +[end_paths] http://127.0.0.1:8000/foo/bar%26 +[end_paths] http://127.0.0.1:8000/foo/bar%26/ +[end_paths] http://127.0.0.1:8000/foo/bar%3f +[end_paths] http://127.0.0.1:8000/foo/bar%3f/ +[end_paths] http://127.0.0.1:8000/foo/bar%61 +[end_paths] http://127.0.0.1:8000/foo/bar%61/ +[end_paths] http://127.0.0.1:8000/foo/bar& +[end_paths] http://127.0.0.1:8000/foo/bar&/ +[end_paths] http://127.0.0.1:8000/foo/bar- +[end_paths] http://127.0.0.1:8000/foo/bar-/ +[end_paths] http://127.0.0.1:8000/foo/bar. +[end_paths] http://127.0.0.1:8000/foo/bar..; +[end_paths] http://127.0.0.1:8000/foo/bar..;/ +[end_paths] http://127.0.0.1:8000/foo/bar..\; +[end_paths] http://127.0.0.1:8000/foo/bar..\;/ +[end_paths] http://127.0.0.1:8000/foo/bar./ +[end_paths] http://127.0.0.1:8000/foo/bar.// +[end_paths] http://127.0.0.1:8000/foo/bar.html +[end_paths] http://127.0.0.1:8000/foo/bar.html/ +[end_paths] http://127.0.0.1:8000/foo/bar.json +[end_paths] http://127.0.0.1:8000/foo/bar.json/ +[end_paths] http://127.0.0.1:8000/foo/bar.random +[end_paths] http://127.0.0.1:8000/foo/bar.random/ +[end_paths] http://127.0.0.1:8000/foo/bar.svc +[end_paths] http://127.0.0.1:8000/foo/bar.svc/ +[end_paths] http://127.0.0.1:8000/foo/bar.svc?wsdl +[end_paths] http://127.0.0.1:8000/foo/bar.svc?wsdl/ +[end_paths] http://127.0.0.1:8000/foo/bar.wsdl +[end_paths] http://127.0.0.1:8000/foo/bar.wsdl/ +[end_paths] http://127.0.0.1:8000/foo/bar/ +[end_paths] http://127.0.0.1:8000/foo/bar/# +[end_paths] http://127.0.0.1:8000/foo/bar/#/ +[end_paths] http://127.0.0.1:8000/foo/bar/#/./ +[end_paths] http://127.0.0.1:8000/foo/bar/#/.// +[end_paths] http://127.0.0.1:8000/foo/bar/#// +[end_paths] http://127.0.0.1:8000/foo/bar/% +[end_paths] http://127.0.0.1:8000/foo/bar/%/ +[end_paths] http://127.0.0.1:8000/foo/bar/%00 +[end_paths] http://127.0.0.1:8000/foo/bar/%00/ +[end_paths] http://127.0.0.1:8000/foo/bar/%09 +[end_paths] http://127.0.0.1:8000/foo/bar/%09/ +[end_paths] http://127.0.0.1:8000/foo/bar/%0A +[end_paths] http://127.0.0.1:8000/foo/bar/%0A/ +[end_paths] http://127.0.0.1:8000/foo/bar/%0D +[end_paths] http://127.0.0.1:8000/foo/bar/%0D/ +[end_paths] http://127.0.0.1:8000/foo/bar/%20 +[end_paths] http://127.0.0.1:8000/foo/bar/%20/ +[end_paths] http://127.0.0.1:8000/foo/bar/%23 +[end_paths] http://127.0.0.1:8000/foo/bar/%23/ +[end_paths] http://127.0.0.1:8000/foo/bar/%26 +[end_paths] http://127.0.0.1:8000/foo/bar/%26/ +[end_paths] http://127.0.0.1:8000/foo/bar/%3f +[end_paths] http://127.0.0.1:8000/foo/bar/%3f/ +[end_paths] http://127.0.0.1:8000/foo/bar/%61 +[end_paths] http://127.0.0.1:8000/foo/bar/%61/ +[end_paths] http://127.0.0.1:8000/foo/bar/& +[end_paths] http://127.0.0.1:8000/foo/bar/&/ +[end_paths] http://127.0.0.1:8000/foo/bar/- +[end_paths] http://127.0.0.1:8000/foo/bar/-/ +[end_paths] http://127.0.0.1:8000/foo/bar/. +[end_paths] http://127.0.0.1:8000/foo/bar/..; +[end_paths] http://127.0.0.1:8000/foo/bar/..;/ +[end_paths] http://127.0.0.1:8000/foo/bar/..\; +[end_paths] http://127.0.0.1:8000/foo/bar/..\;/ +[end_paths] http://127.0.0.1:8000/foo/bar/./ +[end_paths] http://127.0.0.1:8000/foo/bar/.// +[end_paths] http://127.0.0.1:8000/foo/bar/.html +[end_paths] http://127.0.0.1:8000/foo/bar/.html/ +[end_paths] http://127.0.0.1:8000/foo/bar/.json +[end_paths] http://127.0.0.1:8000/foo/bar/.json/ +[end_paths] http://127.0.0.1:8000/foo/bar/.random +[end_paths] http://127.0.0.1:8000/foo/bar/.random/ +[end_paths] http://127.0.0.1:8000/foo/bar/.svc +[end_paths] http://127.0.0.1:8000/foo/bar/.svc/ +[end_paths] http://127.0.0.1:8000/foo/bar/.svc?wsdl +[end_paths] http://127.0.0.1:8000/foo/bar/.svc?wsdl/ +[end_paths] http://127.0.0.1:8000/foo/bar/.wsdl +[end_paths] http://127.0.0.1:8000/foo/bar/.wsdl/ +[end_paths] http://127.0.0.1:8000/foo/bar// +[end_paths] http://127.0.0.1:8000/foo/bar/// +[end_paths] http://127.0.0.1:8000/foo/bar//// +[end_paths] http://127.0.0.1:8000/foo/bar/0 +[end_paths] http://127.0.0.1:8000/foo/bar/0/ +[end_paths] http://127.0.0.1:8000/foo/bar/1 +[end_paths] http://127.0.0.1:8000/foo/bar/1/ +[end_paths] http://127.0.0.1:8000/foo/bar/? +[end_paths] http://127.0.0.1:8000/foo/bar/?/ +[end_paths] http://127.0.0.1:8000/foo/bar/?? +[end_paths] http://127.0.0.1:8000/foo/bar/??/ +[end_paths] http://127.0.0.1:8000/foo/bar/??? +[end_paths] http://127.0.0.1:8000/foo/bar/???/ +[end_paths] http://127.0.0.1:8000/foo/bar/?WSDL +[end_paths] http://127.0.0.1:8000/foo/bar/?WSDL/ +[end_paths] http://127.0.0.1:8000/foo/bar/?debug=1 +[end_paths] http://127.0.0.1:8000/foo/bar/?debug=1/ +[end_paths] http://127.0.0.1:8000/foo/bar/?debug=true +[end_paths] http://127.0.0.1:8000/foo/bar/?debug=true/ +[end_paths] http://127.0.0.1:8000/foo/bar/?param +[end_paths] http://127.0.0.1:8000/foo/bar/?param/ +[end_paths] http://127.0.0.1:8000/foo/bar/\/\/ +[end_paths] http://127.0.0.1:8000/foo/bar/\/\// +[end_paths] http://127.0.0.1:8000/foo/bar/debug +[end_paths] http://127.0.0.1:8000/foo/bar/debug/ +[end_paths] http://127.0.0.1:8000/foo/bar/false +[end_paths] http://127.0.0.1:8000/foo/bar/false/ +[end_paths] http://127.0.0.1:8000/foo/bar/null +[end_paths] http://127.0.0.1:8000/foo/bar/null/ +[end_paths] http://127.0.0.1:8000/foo/bar/true +[end_paths] http://127.0.0.1:8000/foo/bar/true/ +[end_paths] http://127.0.0.1:8000/foo/bar/~ +[end_paths] http://127.0.0.1:8000/foo/bar/~/ +[end_paths] http://127.0.0.1:8000/foo/bar/°/ +[end_paths] http://127.0.0.1:8000/foo/bar/°// +[end_paths] http://127.0.0.1:8000/foo/bar0 +[end_paths] http://127.0.0.1:8000/foo/bar0/ +[end_paths] http://127.0.0.1:8000/foo/bar1 +[end_paths] http://127.0.0.1:8000/foo/bar1/ +[end_paths] http://127.0.0.1:8000/foo/bar? +[end_paths] http://127.0.0.1:8000/foo/bar?/ +[end_paths] http://127.0.0.1:8000/foo/bar?? +[end_paths] http://127.0.0.1:8000/foo/bar??/ +[end_paths] http://127.0.0.1:8000/foo/bar??? +[end_paths] http://127.0.0.1:8000/foo/bar???/ +[end_paths] http://127.0.0.1:8000/foo/bar?WSDL +[end_paths] http://127.0.0.1:8000/foo/bar?WSDL/ +[end_paths] http://127.0.0.1:8000/foo/bar?debug=1 +[end_paths] http://127.0.0.1:8000/foo/bar?debug=1/ +[end_paths] http://127.0.0.1:8000/foo/bar?debug=true +[end_paths] http://127.0.0.1:8000/foo/bar?debug=true/ +[end_paths] http://127.0.0.1:8000/foo/bar?param +[end_paths] http://127.0.0.1:8000/foo/bar?param/ +[end_paths] http://127.0.0.1:8000/foo/bar\/\/ +[end_paths] http://127.0.0.1:8000/foo/bar\/\// +[end_paths] http://127.0.0.1:8000/foo/bar~ +[end_paths] http://127.0.0.1:8000/foo/bar~/ +[end_paths] http://127.0.0.1:8000/foo/bar°/ +[end_paths] http://127.0.0.1:8000/foo/bar°// +[http_headers_ip] -H Ali-CDN-Real-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Ali-CDN-Real-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Ali-CDN-Real-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Ali-CDN-Real-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Ali-CDN-Real-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Ali-CDN-Real-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Ali-CDN-Real-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Ali-CDN-Real-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Ali-CDN-Real-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Ali-CDN-Real-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Ali-CDN-Real-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Ali-CDN-Real-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H CF-Connecting-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H CF-Connecting-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H CF-Connecting-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H CF-Connecting-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H CF-Connecting-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H CF-Connecting-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H CF-Connecting-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H CF-Connecting-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H CF-Connecting-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H CF-Connecting-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H CF-Connecting-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H CF-Connecting-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Real-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Real-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Real-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Real-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Real-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Real-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Real-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Real-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Real-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Real-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Real-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Real-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Src-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Src-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Src-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Src-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Src-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Src-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Src-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Src-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Src-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Src-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Src-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cdn-Src-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cf-Pseudo-IPv4: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cf-Pseudo-IPv4: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cf-Pseudo-IPv4: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cf-Pseudo-IPv4: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cf-Pseudo-IPv4: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cf-Pseudo-IPv4: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cf-Pseudo-IPv4: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cf-Pseudo-IPv4: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cf-Pseudo-IPv4: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cf-Pseudo-IPv4: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cf-Pseudo-IPv4: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cf-Pseudo-IPv4: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Cluster-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Connection: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Connection: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Connection: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Connection: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Connection: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Connection: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Connection: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Connection: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Connection: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Connection: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Connection: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Connection: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Contact: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Contact: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Contact: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Contact: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Contact: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Contact: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Contact: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Contact: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Contact: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Contact: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Contact: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Contact: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Destination: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Destination: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Destination: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Destination: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Destination: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Destination: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Destination: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Destination: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Destination: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Destination: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Destination: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Destination: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Fastly-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Fastly-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Fastly-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Fastly-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Fastly-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Fastly-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Fastly-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Fastly-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Fastly-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Fastly-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Fastly-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Fastly-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-For: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: by=* http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: by=0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: by=0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: by=10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: by=127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: by=172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: by=192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: by=192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: by=8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: by=localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: by=norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: by=null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: for=* http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: for=0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: for=0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: for=10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: for=127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: for=172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: for=192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: for=192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: for=8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: for=localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: for=norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: for=null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: host=* http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: host=0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: host=0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: host=10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: host=127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: host=172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: host=192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: host=192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: host=8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: host=localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: host=norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarded: host=null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-For: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-For: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-For: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-For: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-For: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-For: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-For: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-For: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-For: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-For: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-For: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-For: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarder: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-For: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-For: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-For: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-For: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-For: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-For: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-For: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-For: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-For: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-For: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-For: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-For: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Forwarding: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H From: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H From: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H From: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H From: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H From: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H From: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H From: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H From: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H From: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H From: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H From: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H From: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H HTTP-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H HTTP-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H HTTP-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H HTTP-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H HTTP-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H HTTP-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H HTTP-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H HTTP-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H HTTP-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H HTTP-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H HTTP-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H HTTP-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Incap-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Incap-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Incap-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Incap-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Incap-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Incap-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Incap-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Incap-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Incap-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Incap-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Incap-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Incap-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Origin: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Originating-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Originating-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Originating-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Originating-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Originating-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Originating-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Originating-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Originating-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Originating-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Originating-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Originating-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Originating-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Override-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Override-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Override-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Override-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Override-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Override-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Override-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Override-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Override-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Override-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Override-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Override-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Profile: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Profile: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Profile: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Profile: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Profile: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Profile: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Profile: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Profile: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Profile: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Profile: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Profile: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Profile: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Proxy: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Real-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Redirect: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Redirect: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Redirect: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Redirect: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Redirect: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Redirect: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Redirect: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Redirect: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Redirect: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Redirect: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Redirect: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Redirect: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Addr: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Addr: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Addr: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Addr: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Addr: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Addr: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Addr: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Addr: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Addr: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Addr: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Addr: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Addr: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Remote-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Request-Uri: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Request-Uri: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Request-Uri: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Request-Uri: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Request-Uri: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Request-Uri: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Request-Uri: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Request-Uri: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Request-Uri: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Request-Uri: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Request-Uri: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Request-Uri: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-Name: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-Name: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-Name: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-Name: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-Name: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-Name: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-Name: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-Name: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-Name: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-Name: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-Name: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server-Name: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Server: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Source-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Source-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Source-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Source-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Source-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Source-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Source-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Source-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Source-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Source-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Source-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Source-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H True-Client: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Via: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Via: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Via: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Via: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Via: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Via: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Via: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Via: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Via: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Via: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Via: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Via: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H WL-Proxy-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H WL-Proxy-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H WL-Proxy-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H WL-Proxy-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H WL-Proxy-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H WL-Proxy-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H WL-Proxy-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H WL-Proxy-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H WL-Proxy-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H WL-Proxy-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H WL-Proxy-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H WL-Proxy-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-AppEngine-Trusted-IP-Request: 1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Appengine-User-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Appengine-User-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Appengine-User-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Appengine-User-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Appengine-User-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Appengine-User-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Appengine-User-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Appengine-User-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Appengine-User-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Appengine-User-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Appengine-User-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Appengine-User-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Arbitrary: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Arbitrary: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Arbitrary: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Arbitrary: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Arbitrary: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Arbitrary: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Arbitrary: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Arbitrary: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Arbitrary: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Arbitrary: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Arbitrary: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Arbitrary: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Server: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Server: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Server: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Server: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Server: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Server: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Server: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Server: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Server: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Server: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Server: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Backend-Server: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-BlueCoat-Via: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-BlueCoat-Via: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-BlueCoat-Via: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-BlueCoat-Via: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-BlueCoat-Via: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-BlueCoat-Via: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-BlueCoat-Via: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-BlueCoat-Via: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-BlueCoat-Via: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-BlueCoat-Via: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-BlueCoat-Via: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-BlueCoat-Via: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-C-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-C-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-C-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-C-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-C-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-C-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-C-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-C-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-C-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-C-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-C-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-C-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cache-Info: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cache-Info: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cache-Info: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cache-Info: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cache-Info: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cache-Info: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cache-Info: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cache-Info: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cache-Info: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cache-Info: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cache-Info: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cache-Info: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Cluster-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Custom-IP-Authorization: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Custom-IP-Authorization: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Custom-IP-Authorization: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Custom-IP-Authorization: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Custom-IP-Authorization: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Custom-IP-Authorization: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Custom-IP-Authorization: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Custom-IP-Authorization: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Custom-IP-Authorization: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Custom-IP-Authorization: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Custom-IP-Authorization: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Custom-IP-Authorization: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Dev-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Dev-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Dev-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Dev-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Dev-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Dev-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Dev-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Dev-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Dev-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Dev-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Dev-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Dev-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Ebay-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Ebay-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Ebay-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Ebay-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Ebay-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Ebay-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Ebay-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Ebay-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Ebay-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Ebay-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Ebay-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Ebay-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fake-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fake-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fake-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fake-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fake-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fake-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fake-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fake-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fake-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fake-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fake-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fake-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-User-Remote-Addr: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-User-Remote-Addr: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-User-Remote-Addr: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-User-Remote-Addr: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-User-Remote-Addr: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-User-Remote-Addr: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-User-Remote-Addr: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-User-Remote-Addr: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-User-Remote-Addr: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-User-Remote-Addr: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-User-Remote-Addr: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Fb-User-Remote-Addr: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward-For: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward-For: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward-For: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward-For: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward-For: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward-For: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward-For: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward-For: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward-For: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward-For: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward-For: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward-For: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forward: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-By: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-By: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-By: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-By: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-By: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-By: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-By: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-By: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-By: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-By: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-By: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-By: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-Original: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-Original: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-Original: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-Original: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-Original: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-Original: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-Original: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-Original: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-Original: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-Original: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-Original: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For-Original: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-For: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-From: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-From: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-From: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-From: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-From: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-From: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-From: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-From: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-From: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-From: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-From: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-From: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Server: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Server: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Server: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Server: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Server: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Server: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Server: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Server: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Server: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Server: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Server: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded-Server: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarded: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-For: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-For: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-For: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-For: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-For: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-For: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-For: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-For: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-For: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-For: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-For: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-For: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarder: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-For: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-For: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-For: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-For: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-For: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-For: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-For: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-For: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-For: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-For: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-For: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-For: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwarding: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwared-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwared-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwared-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwared-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwared-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwared-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwared-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwared-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwared-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwared-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwared-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Forwared-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-From: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Gateway-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Gateway-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Gateway-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Gateway-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Gateway-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Gateway-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Gateway-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Gateway-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Gateway-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Gateway-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Gateway-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Gateway-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-HTTP-Host-Override: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-HTTP-Host-Override: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-HTTP-Host-Override: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-HTTP-Host-Override: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-HTTP-Host-Override: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-HTTP-Host-Override: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-HTTP-Host-Override: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-HTTP-Host-Override: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-HTTP-Host-Override: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-HTTP-Host-Override: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-HTTP-Host-Override: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-HTTP-Host-Override: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-Override: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-Override: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-Override: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-Override: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-Override: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-Override: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-Override: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-Override: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-Override: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-Override: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-Override: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host-Override: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Host-Override: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Host-Override: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Host-Override: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Host-Override: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Host-Override: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Host-Override: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Host-Override: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Host-Override: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Host-Override: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Host-Override: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Host-Override: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Host-Override: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Method-Override: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Method-Override: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Method-Override: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Method-Override: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Method-Override: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Method-Override: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Method-Override: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Method-Override: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Method-Override: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Method-Override: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Method-Override: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Http-Method-Override: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Addr: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Addr: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Addr: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Addr: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Addr: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Addr: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Addr: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Addr: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Addr: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Addr: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Addr: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Addr: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Address: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Address: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Address: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Address: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Address: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Address: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Address: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Address: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Address: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Address: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Address: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Address: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Trail: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Trail: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Trail: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Trail: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Trail: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Trail: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Trail: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Trail: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Trail: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Trail: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Trail: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP-Trail: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-ADFS-Proxy-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-ADFS-Proxy-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-ADFS-Proxy-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-ADFS-Proxy-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-ADFS-Proxy-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-ADFS-Proxy-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-ADFS-Proxy-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-ADFS-Proxy-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-ADFS-Proxy-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-ADFS-Proxy-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-ADFS-Proxy-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-ADFS-Proxy-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-Forwarded-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-Forwarded-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-Forwarded-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-Forwarded-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-Forwarded-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-Forwarded-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-Forwarded-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-Forwarded-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-Forwarded-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-Forwarded-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-Forwarded-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-MS-Forwarded-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Nokia-ipaddress: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Nokia-ipaddress: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Nokia-ipaddress: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Nokia-ipaddress: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Nokia-ipaddress: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Nokia-ipaddress: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Nokia-ipaddress: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Nokia-ipaddress: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Nokia-ipaddress: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Nokia-ipaddress: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Nokia-ipaddress: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Nokia-ipaddress: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Origin: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-For: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-For: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-For: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-For: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-For: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-For: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-For: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-For: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-For: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-For: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-For: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-For: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Forwarded-For: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Forwarded-For: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Forwarded-For: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Forwarded-For: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Forwarded-For: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Forwarded-For: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Forwarded-For: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Forwarded-For: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Forwarded-For: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Forwarded-For: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Forwarded-For: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Forwarded-For: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Hostname: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Hostname: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Hostname: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Hostname: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Hostname: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Hostname: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Hostname: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Hostname: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Hostname: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Hostname: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Hostname: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Hostname: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Remote-Addr: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Remote-Addr: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Remote-Addr: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Remote-Addr: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Remote-Addr: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Remote-Addr: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Remote-Addr: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Remote-Addr: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Remote-Addr: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Remote-Addr: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Remote-Addr: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Original-Remote-Addr: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originally-Forwarded-For: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originally-Forwarded-For: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originally-Forwarded-For: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originally-Forwarded-For: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originally-Forwarded-For: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originally-Forwarded-For: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originally-Forwarded-For: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originally-Forwarded-For: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originally-Forwarded-For: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originally-Forwarded-For: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originally-Forwarded-For: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originally-Forwarded-For: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Originating: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Proxy: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyMesh-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyMesh-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyMesh-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyMesh-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyMesh-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyMesh-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyMesh-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyMesh-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyMesh-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyMesh-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyMesh-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyMesh-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyUser-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyUser-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyUser-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyUser-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyUser-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyUser-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyUser-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyUser-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyUser-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyUser-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyUser-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-ProxyUser-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Real-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Addr: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Addr: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Addr: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Addr: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Addr: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Addr: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Addr: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Addr: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Addr: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Addr: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Addr: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Addr: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Remote-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Served-By: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Served-By: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Served-By: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Served-By: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Served-By: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Served-By: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Served-By: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Served-By: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Served-By: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Served-By: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Served-By: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Served-By: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-Name: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-Name: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-Name: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-Name: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-Name: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-Name: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-Name: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-Name: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-Name: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-Name: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-Name: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server-Name: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Server: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Edge-Host: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Edge-Host: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Edge-Host: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Edge-Host: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Edge-Host: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Edge-Host: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Edge-Host: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Edge-Host: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Edge-Host: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Edge-Host: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Edge-Host: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Edge-Host: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Forwarded-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Forwarded-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Forwarded-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Forwarded-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Forwarded-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Forwarded-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Forwarded-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Forwarded-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Forwarded-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Forwarded-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Forwarded-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Sp-Forwarded-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-Client: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-True-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-WAP-Network-Client-IP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-WAP-Network-Client-IP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-WAP-Network-Client-IP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-WAP-Network-Client-IP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-WAP-Network-Client-IP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-WAP-Network-Client-IP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-WAP-Network-Client-IP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-WAP-Network-Client-IP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-WAP-Network-Client-IP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-WAP-Network-Client-IP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-WAP-Network-Client-IP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-WAP-Network-Client-IP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Wap-Profile: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Wap-Profile: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Wap-Profile: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Wap-Profile: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Wap-Profile: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Wap-Profile: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Wap-Profile: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Wap-Profile: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Wap-Profile: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Wap-Profile: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Wap-Profile: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-Wap-Profile: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-YWBCLO-UIP: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-YWBCLO-UIP: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-YWBCLO-UIP: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-YWBCLO-UIP: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-YWBCLO-UIP: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-YWBCLO-UIP: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-YWBCLO-UIP: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-YWBCLO-UIP: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-YWBCLO-UIP: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-YWBCLO-UIP: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-YWBCLO-UIP: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H X-YWBCLO-UIP: null http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Z-Forwarded-For: * http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Z-Forwarded-For: 0.0.0.0 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Z-Forwarded-For: 0177.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Z-Forwarded-For: 10.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Z-Forwarded-For: 127.0.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Z-Forwarded-For: 172.17.0.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Z-Forwarded-For: 192.168.0.2 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Z-Forwarded-For: 192.168.1.1 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Z-Forwarded-For: 8.8.8.8 http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Z-Forwarded-For: localhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Z-Forwarded-For: norealhost http://127.0.0.1:8000/foo/bar +[http_headers_ip] -H Z-Forwarded-For: null http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: ACL http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: BIND http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: CHECKIN http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: CHECKOUT http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: CONNECT http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: COPY http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: DELETE http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: GET http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: HEAD http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: LABEL http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: LINK http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: LOCK http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: MERGE http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: MKCOL http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: MOVE http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: OPTIONS http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: ORDERPATCH http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: PATCH http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: POST http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: POUET http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: PRI http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: PROPFIND http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: PROPPATCH http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: PUT http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: QUERY http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: REBIND http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: REPORT http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: SEARCH http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: TRACE http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: TRACK http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: UNCHECKOUT http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: UNLOCK http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: UPDATE http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: UPDATEREDIRECTREF http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method-Override: VERSION-CONTROL http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: ACL http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: BIND http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: CHECKIN http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: CHECKOUT http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: CONNECT http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: COPY http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: DELETE http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: GET http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: HEAD http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: LABEL http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: LINK http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: LOCK http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: MERGE http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: MKCOL http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: MOVE http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: OPTIONS http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: ORDERPATCH http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: PATCH http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: POST http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: POUET http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: PRI http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: PROPFIND http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: PROPPATCH http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: PUT http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: QUERY http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: REBIND http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: REPORT http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: SEARCH http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: TRACE http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: TRACK http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: UNCHECKOUT http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: UNLOCK http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: UPDATE http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: UPDATEREDIRECTREF http://127.0.0.1:8000/foo/bar +[http_headers_method] -H X-HTTP-Method: VERSION-CONTROL http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 1080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 2080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 3000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 4443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 74443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 80 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 8000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 8080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 8443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 9000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 9080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Server-Port: 9443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 1080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 2080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 3000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 4443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 74443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 80 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 8000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 8080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 8443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 9000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 9080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Cdn-Src-Port: 9443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 1080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 2080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 3000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 4443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 74443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 80 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 8000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 8080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 8443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 9000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 9080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H Port: 9443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 1080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 2080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 3000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 4443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 74443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 80 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 8000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 8080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 8443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 9000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 9080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Cdn-Src-Port: 9443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 1080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 2080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 3000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 4443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 74443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 80 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 8000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 8080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 8443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 9000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 9080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Forwarded-Port: 9443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 1080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 2080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 3000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 4443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 74443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 80 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 8000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 8080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 8443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 9000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 9080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Port: 9443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 1080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 2080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 3000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 4443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 74443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 80 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 8000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 8080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 8443 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 9000 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 9080 http://127.0.0.1:8000/foo/bar +[http_headers_port] -H X-Protocol-Port: 9443 http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H CloudFront-Forwarded-Proto: foo http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H CloudFront-Forwarded-Proto: ftp http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H CloudFront-Forwarded-Proto: http http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H CloudFront-Forwarded-Proto: https http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H CloudFront-Forwarded-Proto: webdav http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H Forwarded: proto=foo http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H Forwarded: proto=ftp http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H Forwarded: proto=http http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H Forwarded: proto=https http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H Forwarded: proto=webdav http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H Front-End-Https: on http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Forwarded-HTTPS: on http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Forwarded-Proto: foo http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Forwarded-Proto: ftp http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Forwarded-Proto: http http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Forwarded-Proto: https http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Forwarded-Proto: webdav http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Forwarded-SSL: on http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Forwarded-Scheme: foo http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Forwarded-Scheme: ftp http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Forwarded-Scheme: http http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Forwarded-Scheme: https http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Forwarded-Scheme: webdav http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Protocol-Scheme: foo http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Protocol-Scheme: ftp http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Protocol-Scheme: http http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Protocol-Scheme: https http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Protocol-Scheme: webdav http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Sp-Edge-Scheme: foo http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Sp-Edge-Scheme: ftp http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Sp-Edge-Scheme: http http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Sp-Edge-Scheme: https http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Sp-Edge-Scheme: webdav http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Url-Scheme: foo http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Url-Scheme: ftp http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Url-Scheme: http http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Url-Scheme: https http://127.0.0.1:8000/foo/bar +[http_headers_scheme] -H X-Url-Scheme: webdav http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Base-URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Base-URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Base-URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Base-URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Base-URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Base-URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Http-URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Http-URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Http-URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Http-URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Http-URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Http-URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Original-Path: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Original-Path: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Original-Path: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Original-URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Original-URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Original-URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Original-URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Original-URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Original-URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Path: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Path: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Path: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Proxy-Request-FullURI: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Proxy-Request-FullURI: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Proxy-Request-FullURI: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Proxy-Request-FullURI: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Proxy-URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Proxy-URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Proxy-URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Proxy-URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Proxy-URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Proxy-URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Referer: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Referer: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Referer: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Referer: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Referer: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Request-URI: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Request-URI: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H Request-URI: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H Request-URI: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H URI: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H URI: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H URI: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Accel-Redirect: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Accel-Redirect: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Accel-Redirect: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Cf-URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Cf-URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Cf-URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Cf-URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Cf-URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Cf-URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Envoy-Original-Path: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Envoy-Original-Path: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Envoy-Original-Path: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Flx-Redirect-URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Flx-Redirect-URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Flx-Redirect-URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Flx-Redirect-URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Flx-Redirect-URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Flx-Redirect-URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Forwarded-Path: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Forwarded-Path: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Forwarded-Path: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Forwarded-URI: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Forwarded-URI: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Forwarded-URI: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Forwarded-URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Forwarded-URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Forwarded-URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Forwarded-URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Forwarded-URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Forwarded-URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-HTTP-DestinationURL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-HTTP-DestinationURL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-HTTP-DestinationURL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-HTTP-DestinationURL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-HTTP-DestinationURL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-HTTP-DestinationURL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-HTTP-Path-Override: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-HTTP-Path-Override: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-HTTP-Path-Override: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-MS-Endpoint-Absolute-Path: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-MS-Endpoint-Absolute-Path: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-MS-Endpoint-Absolute-Path: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Ning-Request-URI: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Ning-Request-URI: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Ning-Request-URI: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Ning-Request-URI: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Original-Path: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Original-Path: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Original-Path: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Original-URI: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Original-URI: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Original-URI: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Original-URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Original-URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Original-URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Original-URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Original-URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Original-URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Override-URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Override-URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Override-URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Override-URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Override-URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Override-URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Path: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Path: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Path: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Proxy-Request: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Proxy-Request: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Proxy-Request: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Proxy-Request: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Proxy-URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Proxy-URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Proxy-URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Proxy-URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Proxy-URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Proxy-URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Referer: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Referer: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Referer: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Referer: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Referer: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Referrer: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Referrer: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Referrer: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Referrer: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Referrer: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Rewrite-URI: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Rewrite-URI: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Rewrite-URI: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Rewrite-URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Rewrite-URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Rewrite-URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Rewrite-URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Rewrite-URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Rewrite-URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Route-Request: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Route-Request: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Route-Request: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Route-Request: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Sendfile: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Sendfile: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Sendfile: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Sendfile: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-URI: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-URI: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-URI: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-URL: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-URL: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-URL: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-URL: http://127.0.0.1:8000/ http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-URL: http://127.0.0.1:8000/foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-URL: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Wap-Profile: / http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Wap-Profile: /foo http://127.0.0.1:8000/foo/bar +[http_headers_url] -H X-Wap-Profile: /foo/bar http://127.0.0.1:8000/ +[http_headers_url] -H X-Wap-Profile: http://127.0.0.1:8000/foo/bar http://127.0.0.1:8000/ +[http_methods] -X ACL http://127.0.0.1:8000/foo/bar +[http_methods] -X BIND http://127.0.0.1:8000/foo/bar +[http_methods] -X CHECKIN http://127.0.0.1:8000/foo/bar +[http_methods] -X CHECKOUT http://127.0.0.1:8000/foo/bar +[http_methods] -X CONNECT http://127.0.0.1:8000/foo/bar +[http_methods] -X COPY http://127.0.0.1:8000/foo/bar +[http_methods] -X DELETE http://127.0.0.1:8000/foo/bar +[http_methods] -X GET http://127.0.0.1:8000/foo/bar +[http_methods] -X HEAD http://127.0.0.1:8000/foo/bar +[http_methods] -X LABEL http://127.0.0.1:8000/foo/bar +[http_methods] -X LINK http://127.0.0.1:8000/foo/bar +[http_methods] -X LOCK http://127.0.0.1:8000/foo/bar +[http_methods] -X MERGE http://127.0.0.1:8000/foo/bar +[http_methods] -X MKCOL http://127.0.0.1:8000/foo/bar +[http_methods] -X MOVE http://127.0.0.1:8000/foo/bar +[http_methods] -X OPTIONS http://127.0.0.1:8000/foo/bar +[http_methods] -X ORDERPATCH http://127.0.0.1:8000/foo/bar +[http_methods] -X PATCH http://127.0.0.1:8000/foo/bar +[http_methods] -X POST http://127.0.0.1:8000/foo/bar +[http_methods] -X POUET http://127.0.0.1:8000/foo/bar +[http_methods] -X PRI http://127.0.0.1:8000/foo/bar +[http_methods] -X PROPFIND http://127.0.0.1:8000/foo/bar +[http_methods] -X PROPPATCH http://127.0.0.1:8000/foo/bar +[http_methods] -X PUT http://127.0.0.1:8000/foo/bar +[http_methods] -X QUERY http://127.0.0.1:8000/foo/bar +[http_methods] -X REBIND http://127.0.0.1:8000/foo/bar +[http_methods] -X REPORT http://127.0.0.1:8000/foo/bar +[http_methods] -X SEARCH http://127.0.0.1:8000/foo/bar +[http_methods] -X TRACE http://127.0.0.1:8000/foo/bar +[http_methods] -X TRACK http://127.0.0.1:8000/foo/bar +[http_methods] -X UNCHECKOUT http://127.0.0.1:8000/foo/bar +[http_methods] -X UNLOCK http://127.0.0.1:8000/foo/bar +[http_methods] -X UPDATE http://127.0.0.1:8000/foo/bar +[http_methods] -X UPDATEREDIRECTREF http://127.0.0.1:8000/foo/bar +[http_methods] -X VERSION-CONTROL http://127.0.0.1:8000/foo/bar +[http_versions] --http0.9 http://127.0.0.1:8000/foo/bar +[http_versions] --http1.0 http://127.0.0.1:8000/foo/bar +[http_versions] --http1.1 http://127.0.0.1:8000/foo/bar +[http_versions] --http2 http://127.0.0.1:8000/foo/bar +[http_versions] --http2-prior-knowledge http://127.0.0.1:8000/foo/bar +[mid_paths] http://127.0.0.1:8000/#?foo/bar +[mid_paths] http://127.0.0.1:8000/#foo/bar +[mid_paths] http://127.0.0.1:8000/%09%3bfoo/bar +[mid_paths] http://127.0.0.1:8000/%09..foo/bar +[mid_paths] http://127.0.0.1:8000/%09;foo/bar +[mid_paths] http://127.0.0.1:8000/%09foo/bar +[mid_paths] http://127.0.0.1:8000/%20/foo/bar +[mid_paths] http://127.0.0.1:8000/%20foo/bar +[mid_paths] http://127.0.0.1:8000/%23%3ffoo/bar +[mid_paths] http://127.0.0.1:8000/%23foo/bar +[mid_paths] http://127.0.0.1:8000/%252f%252ffoo/bar +[mid_paths] http://127.0.0.1:8000/%252f/foo/bar +[mid_paths] http://127.0.0.1:8000/%26foo/bar +[mid_paths] http://127.0.0.1:8000/%2e%2e%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/%2e%2e/foo/bar +[mid_paths] http://127.0.0.1:8000/%2e%2efoo/bar +[mid_paths] http://127.0.0.1:8000/%2e/foo/bar +[mid_paths] http://127.0.0.1:8000/%2efoo/bar +[mid_paths] http://127.0.0.1:8000/%2f%20%23foo/bar +[mid_paths] http://127.0.0.1:8000/%2f%23foo/bar +[mid_paths] http://127.0.0.1:8000/%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/%2f%3b%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/%2f%3b%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/%2f%3f/foo/bar +[mid_paths] http://127.0.0.1:8000/%2f%3ffoo/bar +[mid_paths] http://127.0.0.1:8000/%2f/foo/bar +[mid_paths] http://127.0.0.1:8000/%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/%3b%09foo/bar +[mid_paths] http://127.0.0.1:8000/%3b%2f%2e%2e%2f%2e%2e%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/%3b%2f%2e%2efoo/bar +[mid_paths] http://127.0.0.1:8000/%3b%2f%2e.foo/bar +[mid_paths] http://127.0.0.1:8000/%3b%2f..foo/bar +[mid_paths] http://127.0.0.1:8000/%3b/%2e%2e/..%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/%3b/%2e.foo/bar +[mid_paths] http://127.0.0.1:8000/%3b/%2f%2f../foo/bar +[mid_paths] http://127.0.0.1:8000/%3b/..foo/bar +[mid_paths] http://127.0.0.1:8000/%3b//%2f../foo/bar +[mid_paths] http://127.0.0.1:8000/%3bfoo/bar +[mid_paths] http://127.0.0.1:8000/%3f%23foo/bar +[mid_paths] http://127.0.0.1:8000/%3f%3ffoo/bar +[mid_paths] http://127.0.0.1:8000/%3ffoo/bar +[mid_paths] http://127.0.0.1:8000/%foo/bar +[mid_paths] http://127.0.0.1:8000/&foo/bar +[mid_paths] http://127.0.0.1:8000/.%2e/foo/bar +[mid_paths] http://127.0.0.1:8000/..%00/;foo/bar +[mid_paths] http://127.0.0.1:8000/..%00/foo/bar +[mid_paths] http://127.0.0.1:8000/..%00;/foo/bar +[mid_paths] http://127.0.0.1:8000/..%09foo/bar +[mid_paths] http://127.0.0.1:8000/..%0d/;foo/bar +[mid_paths] http://127.0.0.1:8000/..%0d/foo/bar +[mid_paths] http://127.0.0.1:8000/..%0d;/foo/bar +[mid_paths] http://127.0.0.1:8000/..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/..%3Bfoo/bar +[mid_paths] http://127.0.0.1:8000/..%5c/foo/bar +[mid_paths] http://127.0.0.1:8000/..%5cfoo/bar +[mid_paths] http://127.0.0.1:8000/..%ff/;foo/bar +[mid_paths] http://127.0.0.1:8000/..%ff;/foo/bar +[mid_paths] http://127.0.0.1:8000/..%fffoo/bar +[mid_paths] http://127.0.0.1:8000/.././foo/bar +[mid_paths] http://127.0.0.1:8000/../foo/bar +[mid_paths] http://127.0.0.1:8000/..;%00/foo/bar +[mid_paths] http://127.0.0.1:8000/..;%0d/foo/bar +[mid_paths] http://127.0.0.1:8000/..;%ff/foo/bar +[mid_paths] http://127.0.0.1:8000/..;/foo/bar +[mid_paths] http://127.0.0.1:8000/..;\;foo/bar +[mid_paths] http://127.0.0.1:8000/..;\\foo/bar +[mid_paths] http://127.0.0.1:8000/..;foo/bar +[mid_paths] http://127.0.0.1:8000/..\;foo/bar +[mid_paths] http://127.0.0.1:8000/..\\foo/bar +[mid_paths] http://127.0.0.1:8000/..foo/bar +[mid_paths] http://127.0.0.1:8000/./.foo/bar +[mid_paths] http://127.0.0.1:8000/.//./foo/bar +[mid_paths] http://127.0.0.1:8000/./foo/bar +[mid_paths] http://127.0.0.1:8000/.;/foo/bar +[mid_paths] http://127.0.0.1:8000/.htmlfoo/bar +[mid_paths] http://127.0.0.1:8000/.jsonfoo/bar +[mid_paths] http://127.0.0.1:8000//#?foo/bar +[mid_paths] http://127.0.0.1:8000//#foo/bar +[mid_paths] http://127.0.0.1:8000//%09%3bfoo/bar +[mid_paths] http://127.0.0.1:8000//%09..foo/bar +[mid_paths] http://127.0.0.1:8000//%09;foo/bar +[mid_paths] http://127.0.0.1:8000//%09foo/bar +[mid_paths] http://127.0.0.1:8000//%20#foo/bar +[mid_paths] http://127.0.0.1:8000//%20%20/foo/bar +[mid_paths] http://127.0.0.1:8000//%20%23foo/bar +[mid_paths] http://127.0.0.1:8000//%20/foo/bar +[mid_paths] http://127.0.0.1:8000//%20foo/bar +[mid_paths] http://127.0.0.1:8000//%23%3ffoo/bar +[mid_paths] http://127.0.0.1:8000//%23foo/bar +[mid_paths] http://127.0.0.1:8000//%252e%252e%252f/foo/bar +[mid_paths] http://127.0.0.1:8000//%252e%252e%253b/foo/bar +[mid_paths] http://127.0.0.1:8000//%252e%252f/foo/bar +[mid_paths] http://127.0.0.1:8000//%252e%253b/foo/bar +[mid_paths] http://127.0.0.1:8000//%252e/foo/bar +[mid_paths] http://127.0.0.1:8000//%252f%252ffoo/bar +[mid_paths] http://127.0.0.1:8000//%252f/foo/bar +[mid_paths] http://127.0.0.1:8000//%252ffoo/bar +[mid_paths] http://127.0.0.1:8000//%26foo/bar +[mid_paths] http://127.0.0.1:8000//%2e%2e%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//%2e%2e%3b/foo/bar +[mid_paths] http://127.0.0.1:8000//%2e%2e/foo/bar +[mid_paths] http://127.0.0.1:8000//%2e%2efoo/bar +[mid_paths] http://127.0.0.1:8000//%2e%2f/foo/bar +[mid_paths] http://127.0.0.1:8000//%2e%3b//foo/bar +[mid_paths] http://127.0.0.1:8000//%2e%3b/foo/bar +[mid_paths] http://127.0.0.1:8000//%2e//foo/bar +[mid_paths] http://127.0.0.1:8000//%2e/foo/bar +[mid_paths] http://127.0.0.1:8000//%2efoo/bar +[mid_paths] http://127.0.0.1:8000//%2f%20%23foo/bar +[mid_paths] http://127.0.0.1:8000//%2f%23foo/bar +[mid_paths] http://127.0.0.1:8000//%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//%2f%3b%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//%2f%3b%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//%2f%3f/foo/bar +[mid_paths] http://127.0.0.1:8000//%2f%3ffoo/bar +[mid_paths] http://127.0.0.1:8000//%2f/foo/bar +[mid_paths] http://127.0.0.1:8000//%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//%3b%09foo/bar +[mid_paths] http://127.0.0.1:8000//%3b%2f%2e%2e%2f%2e%2e%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//%3b%2f%2e%2efoo/bar +[mid_paths] http://127.0.0.1:8000//%3b%2f%2e.foo/bar +[mid_paths] http://127.0.0.1:8000//%3b%2f..foo/bar +[mid_paths] http://127.0.0.1:8000//%3b/%2e%2e/..%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//%3b/%2e.foo/bar +[mid_paths] http://127.0.0.1:8000//%3b/%2f%2f../foo/bar +[mid_paths] http://127.0.0.1:8000//%3b/..foo/bar +[mid_paths] http://127.0.0.1:8000//%3b//%2f../foo/bar +[mid_paths] http://127.0.0.1:8000//%3b/foo/bar +[mid_paths] http://127.0.0.1:8000//%3bfoo/bar +[mid_paths] http://127.0.0.1:8000//%3f%23foo/bar +[mid_paths] http://127.0.0.1:8000//%3f%3ffoo/bar +[mid_paths] http://127.0.0.1:8000//%3ffoo/bar +[mid_paths] http://127.0.0.1:8000//%foo/bar +[mid_paths] http://127.0.0.1:8000//&foo/bar +[mid_paths] http://127.0.0.1:8000//*/foo/bar +[mid_paths] http://127.0.0.1:8000//*foo/bar +[mid_paths] http://127.0.0.1:8000//.%2e/foo/bar +[mid_paths] http://127.0.0.1:8000//..%00/;foo/bar +[mid_paths] http://127.0.0.1:8000//..%00/foo/bar +[mid_paths] http://127.0.0.1:8000//..%00;/foo/bar +[mid_paths] http://127.0.0.1:8000//..%09foo/bar +[mid_paths] http://127.0.0.1:8000//..%0d/;foo/bar +[mid_paths] http://127.0.0.1:8000//..%0d/foo/bar +[mid_paths] http://127.0.0.1:8000//..%0d;/foo/bar +[mid_paths] http://127.0.0.1:8000//..%2f..%2f..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//..%2f..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//..%3Bfoo/bar +[mid_paths] http://127.0.0.1:8000//..%5c/foo/bar +[mid_paths] http://127.0.0.1:8000//..%5cfoo/bar +[mid_paths] http://127.0.0.1:8000//..%ff/;foo/bar +[mid_paths] http://127.0.0.1:8000//..%ff;/foo/bar +[mid_paths] http://127.0.0.1:8000//..%fffoo/bar +[mid_paths] http://127.0.0.1:8000//../../..//foo/bar +[mid_paths] http://127.0.0.1:8000//../../../foo/bar +[mid_paths] http://127.0.0.1:8000//../..//../foo/bar +[mid_paths] http://127.0.0.1:8000//../..//foo/bar +[mid_paths] http://127.0.0.1:8000//../../foo/bar +[mid_paths] http://127.0.0.1:8000//../..;/foo/bar +[mid_paths] http://127.0.0.1:8000//.././../foo/bar +[mid_paths] http://127.0.0.1:8000//.././foo/bar +[mid_paths] http://127.0.0.1:8000//../.;/../foo/bar +[mid_paths] http://127.0.0.1:8000//..//../../foo/bar +[mid_paths] http://127.0.0.1:8000//..//../foo/bar +[mid_paths] http://127.0.0.1:8000//..//..;/foo/bar +[mid_paths] http://127.0.0.1:8000//..//foo/bar +[mid_paths] http://127.0.0.1:8000//../;/../foo/bar +[mid_paths] http://127.0.0.1:8000//../;/foo/bar +[mid_paths] http://127.0.0.1:8000//../foo/bar +[mid_paths] http://127.0.0.1:8000//..;%00/foo/bar +[mid_paths] http://127.0.0.1:8000//..;%0d/foo/bar +[mid_paths] http://127.0.0.1:8000//..;%2f..;%2f..;%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//..;%2f..;%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//..;%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//..;%ff/foo/bar +[mid_paths] http://127.0.0.1:8000//..;/../foo/bar +[mid_paths] http://127.0.0.1:8000//..;/..;/foo/bar +[mid_paths] http://127.0.0.1:8000//..;//../foo/bar +[mid_paths] http://127.0.0.1:8000//..;//..;/foo/bar +[mid_paths] http://127.0.0.1:8000//..;//foo/bar +[mid_paths] http://127.0.0.1:8000//..;/;/..;/foo/bar +[mid_paths] http://127.0.0.1:8000//..;/;/foo/bar +[mid_paths] http://127.0.0.1:8000//..;/foo/bar +[mid_paths] http://127.0.0.1:8000//..;\;foo/bar +[mid_paths] http://127.0.0.1:8000//..;\\foo/bar +[mid_paths] http://127.0.0.1:8000//..;foo/bar +[mid_paths] http://127.0.0.1:8000//..\;foo/bar +[mid_paths] http://127.0.0.1:8000//..\\foo/bar +[mid_paths] http://127.0.0.1:8000//..foo/bar +[mid_paths] http://127.0.0.1:8000//./.foo/bar +[mid_paths] http://127.0.0.1:8000//.//./foo/bar +[mid_paths] http://127.0.0.1:8000//.//foo/bar +[mid_paths] http://127.0.0.1:8000//./foo/bar +[mid_paths] http://127.0.0.1:8000//.;//foo/bar +[mid_paths] http://127.0.0.1:8000//.;/foo/bar +[mid_paths] http://127.0.0.1:8000//.foo/bar +[mid_paths] http://127.0.0.1:8000//.htmlfoo/bar +[mid_paths] http://127.0.0.1:8000//.jsonfoo/bar +[mid_paths] http://127.0.0.1:8000//.randomstringfoo/bar +[mid_paths] http://127.0.0.1:8000///%20#foo/bar +[mid_paths] http://127.0.0.1:8000///%20%20/foo/bar +[mid_paths] http://127.0.0.1:8000///%20%23foo/bar +[mid_paths] http://127.0.0.1:8000///%252e%252e%252f/foo/bar +[mid_paths] http://127.0.0.1:8000///%252e%252e%253b/foo/bar +[mid_paths] http://127.0.0.1:8000///%252e%252f/foo/bar +[mid_paths] http://127.0.0.1:8000///%252e%253b/foo/bar +[mid_paths] http://127.0.0.1:8000///%252e/foo/bar +[mid_paths] http://127.0.0.1:8000///%252ffoo/bar +[mid_paths] http://127.0.0.1:8000///%2e%2e%3b/foo/bar +[mid_paths] http://127.0.0.1:8000///%2e%2e/foo/bar +[mid_paths] http://127.0.0.1:8000///%2e%2efoo/bar +[mid_paths] http://127.0.0.1:8000///%2e%2f/foo/bar +[mid_paths] http://127.0.0.1:8000///%2e%3b//foo/bar +[mid_paths] http://127.0.0.1:8000///%2e%3b/foo/bar +[mid_paths] http://127.0.0.1:8000///%2e//foo/bar +[mid_paths] http://127.0.0.1:8000///%2e/foo/bar +[mid_paths] http://127.0.0.1:8000///%2ffoo/bar +[mid_paths] http://127.0.0.1:8000///%3b/foo/bar +[mid_paths] http://127.0.0.1:8000///*/foo/bar +[mid_paths] http://127.0.0.1:8000///*foo/bar +[mid_paths] http://127.0.0.1:8000///..%2f..%2f..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000///..%2f..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000///..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000///../../..//foo/bar +[mid_paths] http://127.0.0.1:8000///../../../foo/bar +[mid_paths] http://127.0.0.1:8000///../..//../foo/bar +[mid_paths] http://127.0.0.1:8000///../..//foo/bar +[mid_paths] http://127.0.0.1:8000///../../foo/bar +[mid_paths] http://127.0.0.1:8000///../..;/foo/bar +[mid_paths] http://127.0.0.1:8000///.././../foo/bar +[mid_paths] http://127.0.0.1:8000///../.;/../foo/bar +[mid_paths] http://127.0.0.1:8000///..//../../foo/bar +[mid_paths] http://127.0.0.1:8000///..//../foo/bar +[mid_paths] http://127.0.0.1:8000///..//..;/foo/bar +[mid_paths] http://127.0.0.1:8000///..//foo/bar +[mid_paths] http://127.0.0.1:8000///../;/../foo/bar +[mid_paths] http://127.0.0.1:8000///../;/foo/bar +[mid_paths] http://127.0.0.1:8000///../foo/bar +[mid_paths] http://127.0.0.1:8000///..;%2f..;%2f..;%2ffoo/bar +[mid_paths] http://127.0.0.1:8000///..;%2f..;%2ffoo/bar +[mid_paths] http://127.0.0.1:8000///..;%2ffoo/bar +[mid_paths] http://127.0.0.1:8000///..;/../foo/bar +[mid_paths] http://127.0.0.1:8000///..;/..;/foo/bar +[mid_paths] http://127.0.0.1:8000///..;//../foo/bar +[mid_paths] http://127.0.0.1:8000///..;//..;/foo/bar +[mid_paths] http://127.0.0.1:8000///..;//foo/bar +[mid_paths] http://127.0.0.1:8000///..;/;/..;/foo/bar +[mid_paths] http://127.0.0.1:8000///..;/;/foo/bar +[mid_paths] http://127.0.0.1:8000///..;/foo/bar +[mid_paths] http://127.0.0.1:8000///..;foo/bar +[mid_paths] http://127.0.0.1:8000///..foo/bar +[mid_paths] http://127.0.0.1:8000///.//foo/bar +[mid_paths] http://127.0.0.1:8000///./foo/bar +[mid_paths] http://127.0.0.1:8000///.;//foo/bar +[mid_paths] http://127.0.0.1:8000///.;/foo/bar +[mid_paths] http://127.0.0.1:8000///.foo/bar +[mid_paths] http://127.0.0.1:8000///.randomstringfoo/bar +[mid_paths] http://127.0.0.1:8000////../../foo/bar +[mid_paths] http://127.0.0.1:8000////..//foo/bar +[mid_paths] http://127.0.0.1:8000////../foo/bar +[mid_paths] http://127.0.0.1:8000////..;//foo/bar +[mid_paths] http://127.0.0.1:8000////..;/foo/bar +[mid_paths] http://127.0.0.1:8000////..;foo/bar +[mid_paths] http://127.0.0.1:8000////..foo/bar +[mid_paths] http://127.0.0.1:8000////./foo/bar +[mid_paths] http://127.0.0.1:8000////.;/foo/bar +[mid_paths] http://127.0.0.1:8000////.foo/bar +[mid_paths] http://127.0.0.1:8000/////..//foo/bar +[mid_paths] http://127.0.0.1:8000/////../foo/bar +[mid_paths] http://127.0.0.1:8000/////..;//foo/bar +[mid_paths] http://127.0.0.1:8000/////..;/foo/bar +[mid_paths] http://127.0.0.1:8000/////..;foo/bar +[mid_paths] http://127.0.0.1:8000/////..foo/bar +[mid_paths] http://127.0.0.1:8000//////foo/bar +[mid_paths] http://127.0.0.1:8000/////foo/bar +[mid_paths] http://127.0.0.1:8000////;/foo/bar +[mid_paths] http://127.0.0.1:8000////?anythingfoo/bar +[mid_paths] http://127.0.0.1:8000////foo/bar +[mid_paths] http://127.0.0.1:8000///;//foo/bar +[mid_paths] http://127.0.0.1:8000///;/foo/bar +[mid_paths] http://127.0.0.1:8000///;x/foo/bar +[mid_paths] http://127.0.0.1:8000///;xfoo/bar +[mid_paths] http://127.0.0.1:8000///?anythingfoo/bar +[mid_paths] http://127.0.0.1:8000///foo/bar +[mid_paths] http://127.0.0.1:8000///x/..//foo/bar +[mid_paths] http://127.0.0.1:8000///x/../;/foo/bar +[mid_paths] http://127.0.0.1:8000///x/../foo/bar +[mid_paths] http://127.0.0.1:8000///x/..;//foo/bar +[mid_paths] http://127.0.0.1:8000///x/..;/;/foo/bar +[mid_paths] http://127.0.0.1:8000///x/..;/foo/bar +[mid_paths] http://127.0.0.1:8000///x//../foo/bar +[mid_paths] http://127.0.0.1:8000///x//..;/foo/bar +[mid_paths] http://127.0.0.1:8000///x/;/../foo/bar +[mid_paths] http://127.0.0.1:8000///x/;/..;/foo/bar +[mid_paths] http://127.0.0.1:8000//;%09..;foo/bar +[mid_paths] http://127.0.0.1:8000//;%09..foo/bar +[mid_paths] http://127.0.0.1:8000//;%09;foo/bar +[mid_paths] http://127.0.0.1:8000//;%09foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f%2e%2e%2f%2e%2e%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;%2f%2e%2efoo/bar +[mid_paths] http://127.0.0.1:8000//;%2f%2f/../foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..%2f%2e%2e%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..%2f..%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..%2f/..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..%2f/../foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..%2f/foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f../%2f..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;%2f../%2f../foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..//..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..//../foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..///;foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..///foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..//;/;foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..//;/foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f../;//foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f../;/;/;foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f../;/;/foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..;///foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..;//;/foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..;/;//foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f..foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f/%2f../foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f//..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;%2f//../foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f//..;/foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f/;/../foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f/;/..;/foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f;//../foo/bar +[mid_paths] http://127.0.0.1:8000//;%2f;/;/..;/foo/bar +[mid_paths] http://127.0.0.1:8000//;/%2e%2e%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;/%2e%2e%2f/foo/bar +[mid_paths] http://127.0.0.1:8000//;/%2e%2e/foo/bar +[mid_paths] http://127.0.0.1:8000//;/%2e%2efoo/bar +[mid_paths] http://127.0.0.1:8000//;/%2e.foo/bar +[mid_paths] http://127.0.0.1:8000//;/%2f%2f../foo/bar +[mid_paths] http://127.0.0.1:8000//;/%2f/..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;/%2f/../foo/bar +[mid_paths] http://127.0.0.1:8000//;/.%2e/%2e%2e/%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;/.%2efoo/bar +[mid_paths] http://127.0.0.1:8000//;/..%2f%2f../foo/bar +[mid_paths] http://127.0.0.1:8000//;/..%2f..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;/..%2f//foo/bar +[mid_paths] http://127.0.0.1:8000//;/..%2f/foo/bar +[mid_paths] http://127.0.0.1:8000//;/..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;/../%2f/foo/bar +[mid_paths] http://127.0.0.1:8000//;/../..//foo/bar +[mid_paths] http://127.0.0.1:8000//;/../../foo/bar +[mid_paths] http://127.0.0.1:8000//;/.././../foo/bar +[mid_paths] http://127.0.0.1:8000//;/../.;/../foo/bar +[mid_paths] http://127.0.0.1:8000//;/..//%2e%2e/foo/bar +[mid_paths] http://127.0.0.1:8000//;/..//%2ffoo/bar +[mid_paths] http://127.0.0.1:8000//;/..//../foo/bar +[mid_paths] http://127.0.0.1:8000//;/..///foo/bar +[mid_paths] http://127.0.0.1:8000//;/..//foo/bar +[mid_paths] http://127.0.0.1:8000//;/../;/../foo/bar +[mid_paths] http://127.0.0.1:8000//;/../;/foo/bar +[mid_paths] http://127.0.0.1:8000//;/../foo/bar +[mid_paths] http://127.0.0.1:8000//;/..;foo/bar +[mid_paths] http://127.0.0.1:8000//;/..foo/bar +[mid_paths] http://127.0.0.1:8000//;/.;.foo/bar +[mid_paths] http://127.0.0.1:8000//;//%2f../foo/bar +[mid_paths] http://127.0.0.1:8000//;//../../foo/bar +[mid_paths] http://127.0.0.1:8000//;//..foo/bar +[mid_paths] http://127.0.0.1:8000//;///..//foo/bar +[mid_paths] http://127.0.0.1:8000//;///../foo/bar +[mid_paths] http://127.0.0.1:8000//;///..foo/bar +[mid_paths] http://127.0.0.1:8000//;//foo/bar +[mid_paths] http://127.0.0.1:8000//;/foo/bar +[mid_paths] http://127.0.0.1:8000//;foo/bar +[mid_paths] http://127.0.0.1:8000//;x/foo/bar +[mid_paths] http://127.0.0.1:8000//;x;foo/bar +[mid_paths] http://127.0.0.1:8000//;xfoo/bar +[mid_paths] http://127.0.0.1:8000//???foo/bar +[mid_paths] http://127.0.0.1:8000//??foo/bar +[mid_paths] http://127.0.0.1:8000//?foo/bar +[mid_paths] http://127.0.0.1:8000//\..\.\foo/bar +[mid_paths] http://127.0.0.1:8000//foo/#?bar +[mid_paths] http://127.0.0.1:8000//foo/#bar +[mid_paths] http://127.0.0.1:8000//foo/%09%3bbar +[mid_paths] http://127.0.0.1:8000//foo/%09..bar +[mid_paths] http://127.0.0.1:8000//foo/%09;bar +[mid_paths] http://127.0.0.1:8000//foo/%09bar +[mid_paths] http://127.0.0.1:8000//foo/%20/bar +[mid_paths] http://127.0.0.1:8000//foo/%20bar +[mid_paths] http://127.0.0.1:8000//foo/%23%3fbar +[mid_paths] http://127.0.0.1:8000//foo/%23bar +[mid_paths] http://127.0.0.1:8000//foo/%252f%252fbar +[mid_paths] http://127.0.0.1:8000//foo/%252f/bar +[mid_paths] http://127.0.0.1:8000//foo/%26bar +[mid_paths] http://127.0.0.1:8000//foo/%2e%2e%2fbar +[mid_paths] http://127.0.0.1:8000//foo/%2e%2e/bar +[mid_paths] http://127.0.0.1:8000//foo/%2e%2ebar +[mid_paths] http://127.0.0.1:8000//foo/%2e/bar +[mid_paths] http://127.0.0.1:8000//foo/%2ebar +[mid_paths] http://127.0.0.1:8000//foo/%2f%20%23bar +[mid_paths] http://127.0.0.1:8000//foo/%2f%23bar +[mid_paths] http://127.0.0.1:8000//foo/%2f%2fbar +[mid_paths] http://127.0.0.1:8000//foo/%2f%3b%2f%2fbar +[mid_paths] http://127.0.0.1:8000//foo/%2f%3b%2fbar +[mid_paths] http://127.0.0.1:8000//foo/%2f%3f/bar +[mid_paths] http://127.0.0.1:8000//foo/%2f%3fbar +[mid_paths] http://127.0.0.1:8000//foo/%2f/bar +[mid_paths] http://127.0.0.1:8000//foo/%2fbar +[mid_paths] http://127.0.0.1:8000//foo/%3b%09bar +[mid_paths] http://127.0.0.1:8000//foo/%3b%2f%2e%2e%2f%2e%2e%2f%2fbar +[mid_paths] http://127.0.0.1:8000//foo/%3b%2f%2e%2ebar +[mid_paths] http://127.0.0.1:8000//foo/%3b%2f%2e.bar +[mid_paths] http://127.0.0.1:8000//foo/%3b%2f..bar +[mid_paths] http://127.0.0.1:8000//foo/%3b/%2e%2e/..%2f%2fbar +[mid_paths] http://127.0.0.1:8000//foo/%3b/%2e.bar +[mid_paths] http://127.0.0.1:8000//foo/%3b/%2f%2f../bar +[mid_paths] http://127.0.0.1:8000//foo/%3b/..bar +[mid_paths] http://127.0.0.1:8000//foo/%3b//%2f../bar +[mid_paths] http://127.0.0.1:8000//foo/%3bbar +[mid_paths] http://127.0.0.1:8000//foo/%3f%23bar +[mid_paths] http://127.0.0.1:8000//foo/%3f%3fbar +[mid_paths] http://127.0.0.1:8000//foo/%3fbar +[mid_paths] http://127.0.0.1:8000//foo/%bar +[mid_paths] http://127.0.0.1:8000//foo/&bar +[mid_paths] http://127.0.0.1:8000//foo/.%2e/bar +[mid_paths] http://127.0.0.1:8000//foo/..%00/;bar +[mid_paths] http://127.0.0.1:8000//foo/..%00/bar +[mid_paths] http://127.0.0.1:8000//foo/..%00;/bar +[mid_paths] http://127.0.0.1:8000//foo/..%09bar +[mid_paths] http://127.0.0.1:8000//foo/..%0d/;bar +[mid_paths] http://127.0.0.1:8000//foo/..%0d/bar +[mid_paths] http://127.0.0.1:8000//foo/..%0d;/bar +[mid_paths] http://127.0.0.1:8000//foo/..%2fbar +[mid_paths] http://127.0.0.1:8000//foo/..%3Bbar +[mid_paths] http://127.0.0.1:8000//foo/..%5c/bar +[mid_paths] http://127.0.0.1:8000//foo/..%5cbar +[mid_paths] http://127.0.0.1:8000//foo/..%ff/;bar +[mid_paths] http://127.0.0.1:8000//foo/..%ff;/bar +[mid_paths] http://127.0.0.1:8000//foo/..%ffbar +[mid_paths] http://127.0.0.1:8000//foo/.././bar +[mid_paths] http://127.0.0.1:8000//foo/../bar +[mid_paths] http://127.0.0.1:8000//foo/..;%00/bar +[mid_paths] http://127.0.0.1:8000//foo/..;%0d/bar +[mid_paths] http://127.0.0.1:8000//foo/..;%ff/bar +[mid_paths] http://127.0.0.1:8000//foo/..;/bar +[mid_paths] http://127.0.0.1:8000//foo/..;\;bar +[mid_paths] http://127.0.0.1:8000//foo/..;\\bar +[mid_paths] http://127.0.0.1:8000//foo/..;bar +[mid_paths] http://127.0.0.1:8000//foo/..\;bar +[mid_paths] http://127.0.0.1:8000//foo/..\\bar +[mid_paths] http://127.0.0.1:8000//foo/..bar +[mid_paths] http://127.0.0.1:8000//foo/./.bar +[mid_paths] http://127.0.0.1:8000//foo/.//./bar +[mid_paths] http://127.0.0.1:8000//foo/./bar +[mid_paths] http://127.0.0.1:8000//foo/.;/bar +[mid_paths] http://127.0.0.1:8000//foo/.htmlbar +[mid_paths] http://127.0.0.1:8000//foo/.jsonbar +[mid_paths] http://127.0.0.1:8000//foo//%20#bar +[mid_paths] http://127.0.0.1:8000//foo//%20%20/bar +[mid_paths] http://127.0.0.1:8000//foo//%20%23bar +[mid_paths] http://127.0.0.1:8000//foo//%252e%252e%252f/bar +[mid_paths] http://127.0.0.1:8000//foo//%252e%252e%253b/bar +[mid_paths] http://127.0.0.1:8000//foo//%252e%252f/bar +[mid_paths] http://127.0.0.1:8000//foo//%252e%253b/bar +[mid_paths] http://127.0.0.1:8000//foo//%252e/bar +[mid_paths] http://127.0.0.1:8000//foo//%252fbar +[mid_paths] http://127.0.0.1:8000//foo//%2e%2e%3b/bar +[mid_paths] http://127.0.0.1:8000//foo//%2e%2e/bar +[mid_paths] http://127.0.0.1:8000//foo//%2e%2ebar +[mid_paths] http://127.0.0.1:8000//foo//%2e%2f/bar +[mid_paths] http://127.0.0.1:8000//foo//%2e%3b//bar +[mid_paths] http://127.0.0.1:8000//foo//%2e%3b/bar +[mid_paths] http://127.0.0.1:8000//foo//%2e//bar +[mid_paths] http://127.0.0.1:8000//foo//%2e/bar +[mid_paths] http://127.0.0.1:8000//foo//%2fbar +[mid_paths] http://127.0.0.1:8000//foo//%3b/bar +[mid_paths] http://127.0.0.1:8000//foo//*/bar +[mid_paths] http://127.0.0.1:8000//foo//*bar +[mid_paths] http://127.0.0.1:8000//foo//..%2f..%2f..%2fbar +[mid_paths] http://127.0.0.1:8000//foo//..%2f..%2fbar +[mid_paths] http://127.0.0.1:8000//foo//..%2fbar +[mid_paths] http://127.0.0.1:8000//foo//../../..//bar +[mid_paths] http://127.0.0.1:8000//foo//../../../bar +[mid_paths] http://127.0.0.1:8000//foo//../..//../bar +[mid_paths] http://127.0.0.1:8000//foo//../..//bar +[mid_paths] http://127.0.0.1:8000//foo//../../bar +[mid_paths] http://127.0.0.1:8000//foo//../..;/bar +[mid_paths] http://127.0.0.1:8000//foo//.././../bar +[mid_paths] http://127.0.0.1:8000//foo//../.;/../bar +[mid_paths] http://127.0.0.1:8000//foo//..//../../bar +[mid_paths] http://127.0.0.1:8000//foo//..//../bar +[mid_paths] http://127.0.0.1:8000//foo//..//..;/bar +[mid_paths] http://127.0.0.1:8000//foo//..//bar +[mid_paths] http://127.0.0.1:8000//foo//../;/../bar +[mid_paths] http://127.0.0.1:8000//foo//../;/bar +[mid_paths] http://127.0.0.1:8000//foo//../bar +[mid_paths] http://127.0.0.1:8000//foo//..;%2f..;%2f..;%2fbar +[mid_paths] http://127.0.0.1:8000//foo//..;%2f..;%2fbar +[mid_paths] http://127.0.0.1:8000//foo//..;%2fbar +[mid_paths] http://127.0.0.1:8000//foo//..;/../bar +[mid_paths] http://127.0.0.1:8000//foo//..;/..;/bar +[mid_paths] http://127.0.0.1:8000//foo//..;//../bar +[mid_paths] http://127.0.0.1:8000//foo//..;//..;/bar +[mid_paths] http://127.0.0.1:8000//foo//..;//bar +[mid_paths] http://127.0.0.1:8000//foo//..;/;/..;/bar +[mid_paths] http://127.0.0.1:8000//foo//..;/;/bar +[mid_paths] http://127.0.0.1:8000//foo//..;/bar +[mid_paths] http://127.0.0.1:8000//foo//..bar +[mid_paths] http://127.0.0.1:8000//foo//.//bar +[mid_paths] http://127.0.0.1:8000//foo//./bar +[mid_paths] http://127.0.0.1:8000//foo//.;//bar +[mid_paths] http://127.0.0.1:8000//foo//.;/bar +[mid_paths] http://127.0.0.1:8000//foo//.bar +[mid_paths] http://127.0.0.1:8000//foo//.randomstringbar +[mid_paths] http://127.0.0.1:8000//foo///../../bar +[mid_paths] http://127.0.0.1:8000//foo///..;bar +[mid_paths] http://127.0.0.1:8000//foo///..bar +[mid_paths] http://127.0.0.1:8000//foo///./bar +[mid_paths] http://127.0.0.1:8000//foo///.;/bar +[mid_paths] http://127.0.0.1:8000//foo///.bar +[mid_paths] http://127.0.0.1:8000//foo////..//bar +[mid_paths] http://127.0.0.1:8000//foo////../bar +[mid_paths] http://127.0.0.1:8000//foo////..;//bar +[mid_paths] http://127.0.0.1:8000//foo////..;/bar +[mid_paths] http://127.0.0.1:8000//foo////..;bar +[mid_paths] http://127.0.0.1:8000//foo////..bar +[mid_paths] http://127.0.0.1:8000//foo/////bar +[mid_paths] http://127.0.0.1:8000//foo///;/bar +[mid_paths] http://127.0.0.1:8000//foo///?anythingbar +[mid_paths] http://127.0.0.1:8000//foo///bar +[mid_paths] http://127.0.0.1:8000//foo//;//bar +[mid_paths] http://127.0.0.1:8000//foo//;/bar +[mid_paths] http://127.0.0.1:8000//foo//;x/bar +[mid_paths] http://127.0.0.1:8000//foo//;xbar +[mid_paths] http://127.0.0.1:8000//foo//bar +[mid_paths] http://127.0.0.1:8000//foo//x/..//bar +[mid_paths] http://127.0.0.1:8000//foo//x/../;/bar +[mid_paths] http://127.0.0.1:8000//foo//x/../bar +[mid_paths] http://127.0.0.1:8000//foo//x/..;//bar +[mid_paths] http://127.0.0.1:8000//foo//x/..;/;/bar +[mid_paths] http://127.0.0.1:8000//foo//x/..;/bar +[mid_paths] http://127.0.0.1:8000//foo//x//../bar +[mid_paths] http://127.0.0.1:8000//foo//x//..;/bar +[mid_paths] http://127.0.0.1:8000//foo//x/;/../bar +[mid_paths] http://127.0.0.1:8000//foo//x/;/..;/bar +[mid_paths] http://127.0.0.1:8000//foo/;%09..;bar +[mid_paths] http://127.0.0.1:8000//foo/;%09..bar +[mid_paths] http://127.0.0.1:8000//foo/;%09;bar +[mid_paths] http://127.0.0.1:8000//foo/;%09bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f%2e%2e%2f%2e%2e%2f%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;%2f%2e%2ebar +[mid_paths] http://127.0.0.1:8000//foo/;%2f%2f/../bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..%2f%2e%2e%2f%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..%2f..%2f%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..%2f/..%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..%2f/../bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..%2f/bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f../%2f..%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;%2f../%2f../bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..//..%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..//../bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..///;bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..///bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..//;/;bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..//;/bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f../;//bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f../;/;/;bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f../;/;/bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..;///bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..;//;/bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..;/;//bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f..bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f/%2f../bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f//..%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;%2f//../bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f//..;/bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f/;/../bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f/;/..;/bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f;//../bar +[mid_paths] http://127.0.0.1:8000//foo/;%2f;/;/..;/bar +[mid_paths] http://127.0.0.1:8000//foo/;/%2e%2e%2f%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;/%2e%2e%2f/bar +[mid_paths] http://127.0.0.1:8000//foo/;/%2e%2e/bar +[mid_paths] http://127.0.0.1:8000//foo/;/%2e%2ebar +[mid_paths] http://127.0.0.1:8000//foo/;/%2e.bar +[mid_paths] http://127.0.0.1:8000//foo/;/%2f%2f../bar +[mid_paths] http://127.0.0.1:8000//foo/;/%2f/..%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;/%2f/../bar +[mid_paths] http://127.0.0.1:8000//foo/;/.%2e/%2e%2e/%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;/.%2ebar +[mid_paths] http://127.0.0.1:8000//foo/;/..%2f%2f../bar +[mid_paths] http://127.0.0.1:8000//foo/;/..%2f..%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;/..%2f//bar +[mid_paths] http://127.0.0.1:8000//foo/;/..%2f/bar +[mid_paths] http://127.0.0.1:8000//foo/;/..%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;/../%2f/bar +[mid_paths] http://127.0.0.1:8000//foo/;/../..//bar +[mid_paths] http://127.0.0.1:8000//foo/;/../../bar +[mid_paths] http://127.0.0.1:8000//foo/;/.././../bar +[mid_paths] http://127.0.0.1:8000//foo/;/../.;/../bar +[mid_paths] http://127.0.0.1:8000//foo/;/..//%2e%2e/bar +[mid_paths] http://127.0.0.1:8000//foo/;/..//%2fbar +[mid_paths] http://127.0.0.1:8000//foo/;/..//../bar +[mid_paths] http://127.0.0.1:8000//foo/;/..///bar +[mid_paths] http://127.0.0.1:8000//foo/;/..//bar +[mid_paths] http://127.0.0.1:8000//foo/;/../;/../bar +[mid_paths] http://127.0.0.1:8000//foo/;/../;/bar +[mid_paths] http://127.0.0.1:8000//foo/;/../bar +[mid_paths] http://127.0.0.1:8000//foo/;/..;bar +[mid_paths] http://127.0.0.1:8000//foo/;/..bar +[mid_paths] http://127.0.0.1:8000//foo/;/.;.bar +[mid_paths] http://127.0.0.1:8000//foo/;//%2f../bar +[mid_paths] http://127.0.0.1:8000//foo/;//../../bar +[mid_paths] http://127.0.0.1:8000//foo/;//..bar +[mid_paths] http://127.0.0.1:8000//foo/;///..//bar +[mid_paths] http://127.0.0.1:8000//foo/;///../bar +[mid_paths] http://127.0.0.1:8000//foo/;///..bar +[mid_paths] http://127.0.0.1:8000//foo/;bar +[mid_paths] http://127.0.0.1:8000//foo/;x/bar +[mid_paths] http://127.0.0.1:8000//foo/;x;bar +[mid_paths] http://127.0.0.1:8000//foo/;xbar +[mid_paths] http://127.0.0.1:8000//foo/???bar +[mid_paths] http://127.0.0.1:8000//foo/??bar +[mid_paths] http://127.0.0.1:8000//foo/?bar +[mid_paths] http://127.0.0.1:8000//foo/\..\.\bar +[mid_paths] http://127.0.0.1:8000//foo/bar +[mid_paths] http://127.0.0.1:8000//x/..//foo/bar +[mid_paths] http://127.0.0.1:8000//x/../;/foo/bar +[mid_paths] http://127.0.0.1:8000//x/../foo/bar +[mid_paths] http://127.0.0.1:8000//x/..;//foo/bar +[mid_paths] http://127.0.0.1:8000//x/..;/;/foo/bar +[mid_paths] http://127.0.0.1:8000//x/..;/foo/bar +[mid_paths] http://127.0.0.1:8000//x//../foo/bar +[mid_paths] http://127.0.0.1:8000//x//..;/foo/bar +[mid_paths] http://127.0.0.1:8000//x/;/../foo/bar +[mid_paths] http://127.0.0.1:8000//x/;/..;/foo/bar +[mid_paths] http://127.0.0.1:8000/;%09..;foo/bar +[mid_paths] http://127.0.0.1:8000/;%09..foo/bar +[mid_paths] http://127.0.0.1:8000/;%09;foo/bar +[mid_paths] http://127.0.0.1:8000/;%09foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f%2e%2e%2f%2e%2e%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;%2f%2e%2efoo/bar +[mid_paths] http://127.0.0.1:8000/;%2f%2f/../foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..%2f%2e%2e%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..%2f..%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..%2f/..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..%2f/../foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..%2f/foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f../%2f..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;%2f../%2f../foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..//..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..//../foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..///;foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..///foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..//;/;foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..//;/foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f../;//foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f../;/;/;foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f../;/;/foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..;///foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..;//;/foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..;/;//foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f..foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f/%2f../foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f//..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;%2f//../foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f//..;/foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f/;/../foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f/;/..;/foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f;//../foo/bar +[mid_paths] http://127.0.0.1:8000/;%2f;/;/..;/foo/bar +[mid_paths] http://127.0.0.1:8000/;/%2e%2e%2f%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;/%2e%2e%2f/foo/bar +[mid_paths] http://127.0.0.1:8000/;/%2e%2e/foo/bar +[mid_paths] http://127.0.0.1:8000/;/%2e%2efoo/bar +[mid_paths] http://127.0.0.1:8000/;/%2e.foo/bar +[mid_paths] http://127.0.0.1:8000/;/%2f%2f../foo/bar +[mid_paths] http://127.0.0.1:8000/;/%2f/..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;/%2f/../foo/bar +[mid_paths] http://127.0.0.1:8000/;/.%2e/%2e%2e/%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;/.%2efoo/bar +[mid_paths] http://127.0.0.1:8000/;/..%2f%2f../foo/bar +[mid_paths] http://127.0.0.1:8000/;/..%2f..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;/..%2f//foo/bar +[mid_paths] http://127.0.0.1:8000/;/..%2f/foo/bar +[mid_paths] http://127.0.0.1:8000/;/..%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;/../%2f/foo/bar +[mid_paths] http://127.0.0.1:8000/;/../..//foo/bar +[mid_paths] http://127.0.0.1:8000/;/../../foo/bar +[mid_paths] http://127.0.0.1:8000/;/.././../foo/bar +[mid_paths] http://127.0.0.1:8000/;/../.;/../foo/bar +[mid_paths] http://127.0.0.1:8000/;/..//%2e%2e/foo/bar +[mid_paths] http://127.0.0.1:8000/;/..//%2ffoo/bar +[mid_paths] http://127.0.0.1:8000/;/..//../foo/bar +[mid_paths] http://127.0.0.1:8000/;/..///foo/bar +[mid_paths] http://127.0.0.1:8000/;/..//foo/bar +[mid_paths] http://127.0.0.1:8000/;/../;/../foo/bar +[mid_paths] http://127.0.0.1:8000/;/../;/foo/bar +[mid_paths] http://127.0.0.1:8000/;/../foo/bar +[mid_paths] http://127.0.0.1:8000/;/..;foo/bar +[mid_paths] http://127.0.0.1:8000/;/..foo/bar +[mid_paths] http://127.0.0.1:8000/;/.;.foo/bar +[mid_paths] http://127.0.0.1:8000/;//%2f../foo/bar +[mid_paths] http://127.0.0.1:8000/;//../../foo/bar +[mid_paths] http://127.0.0.1:8000/;//..foo/bar +[mid_paths] http://127.0.0.1:8000/;///..//foo/bar +[mid_paths] http://127.0.0.1:8000/;///../foo/bar +[mid_paths] http://127.0.0.1:8000/;///..foo/bar +[mid_paths] http://127.0.0.1:8000/;foo/bar +[mid_paths] http://127.0.0.1:8000/;x/foo/bar +[mid_paths] http://127.0.0.1:8000/;x;foo/bar +[mid_paths] http://127.0.0.1:8000/;xfoo/bar +[mid_paths] http://127.0.0.1:8000/???foo/bar +[mid_paths] http://127.0.0.1:8000/??foo/bar +[mid_paths] http://127.0.0.1:8000/?foo/bar +[mid_paths] http://127.0.0.1:8000/\..\.\foo/bar +[mid_paths] http://127.0.0.1:8000/foo/#?bar +[mid_paths] http://127.0.0.1:8000/foo/#bar +[mid_paths] http://127.0.0.1:8000/foo/%09%3bbar +[mid_paths] http://127.0.0.1:8000/foo/%09..bar +[mid_paths] http://127.0.0.1:8000/foo/%09;bar +[mid_paths] http://127.0.0.1:8000/foo/%09bar +[mid_paths] http://127.0.0.1:8000/foo/%20/bar +[mid_paths] http://127.0.0.1:8000/foo/%20bar +[mid_paths] http://127.0.0.1:8000/foo/%23%3fbar +[mid_paths] http://127.0.0.1:8000/foo/%23bar +[mid_paths] http://127.0.0.1:8000/foo/%252f%252fbar +[mid_paths] http://127.0.0.1:8000/foo/%252f/bar +[mid_paths] http://127.0.0.1:8000/foo/%26bar +[mid_paths] http://127.0.0.1:8000/foo/%2e%2e%2fbar +[mid_paths] http://127.0.0.1:8000/foo/%2e%2e/bar +[mid_paths] http://127.0.0.1:8000/foo/%2e%2ebar +[mid_paths] http://127.0.0.1:8000/foo/%2e/bar +[mid_paths] http://127.0.0.1:8000/foo/%2ebar +[mid_paths] http://127.0.0.1:8000/foo/%2f%20%23bar +[mid_paths] http://127.0.0.1:8000/foo/%2f%23bar +[mid_paths] http://127.0.0.1:8000/foo/%2f%2fbar +[mid_paths] http://127.0.0.1:8000/foo/%2f%3b%2f%2fbar +[mid_paths] http://127.0.0.1:8000/foo/%2f%3b%2fbar +[mid_paths] http://127.0.0.1:8000/foo/%2f%3f/bar +[mid_paths] http://127.0.0.1:8000/foo/%2f%3fbar +[mid_paths] http://127.0.0.1:8000/foo/%2f/bar +[mid_paths] http://127.0.0.1:8000/foo/%2fbar +[mid_paths] http://127.0.0.1:8000/foo/%3b%09bar +[mid_paths] http://127.0.0.1:8000/foo/%3b%2f%2e%2e%2f%2e%2e%2f%2fbar +[mid_paths] http://127.0.0.1:8000/foo/%3b%2f%2e%2ebar +[mid_paths] http://127.0.0.1:8000/foo/%3b%2f%2e.bar +[mid_paths] http://127.0.0.1:8000/foo/%3b%2f..bar +[mid_paths] http://127.0.0.1:8000/foo/%3b/%2e%2e/..%2f%2fbar +[mid_paths] http://127.0.0.1:8000/foo/%3b/%2e.bar +[mid_paths] http://127.0.0.1:8000/foo/%3b/%2f%2f../bar +[mid_paths] http://127.0.0.1:8000/foo/%3b/..bar +[mid_paths] http://127.0.0.1:8000/foo/%3b//%2f../bar +[mid_paths] http://127.0.0.1:8000/foo/%3bbar +[mid_paths] http://127.0.0.1:8000/foo/%3f%23bar +[mid_paths] http://127.0.0.1:8000/foo/%3f%3fbar +[mid_paths] http://127.0.0.1:8000/foo/%3fbar +[mid_paths] http://127.0.0.1:8000/foo/%bar +[mid_paths] http://127.0.0.1:8000/foo/&bar +[mid_paths] http://127.0.0.1:8000/foo/.%2e/bar +[mid_paths] http://127.0.0.1:8000/foo/..%00/;bar +[mid_paths] http://127.0.0.1:8000/foo/..%00/bar +[mid_paths] http://127.0.0.1:8000/foo/..%00;/bar +[mid_paths] http://127.0.0.1:8000/foo/..%09bar +[mid_paths] http://127.0.0.1:8000/foo/..%0d/;bar +[mid_paths] http://127.0.0.1:8000/foo/..%0d/bar +[mid_paths] http://127.0.0.1:8000/foo/..%0d;/bar +[mid_paths] http://127.0.0.1:8000/foo/..%2fbar +[mid_paths] http://127.0.0.1:8000/foo/..%3Bbar +[mid_paths] http://127.0.0.1:8000/foo/..%5c/bar +[mid_paths] http://127.0.0.1:8000/foo/..%5cbar +[mid_paths] http://127.0.0.1:8000/foo/..%ff/;bar +[mid_paths] http://127.0.0.1:8000/foo/..%ff;/bar +[mid_paths] http://127.0.0.1:8000/foo/..%ffbar +[mid_paths] http://127.0.0.1:8000/foo/.././bar +[mid_paths] http://127.0.0.1:8000/foo/../bar +[mid_paths] http://127.0.0.1:8000/foo/..;%00/bar +[mid_paths] http://127.0.0.1:8000/foo/..;%0d/bar +[mid_paths] http://127.0.0.1:8000/foo/..;%ff/bar +[mid_paths] http://127.0.0.1:8000/foo/..;/bar +[mid_paths] http://127.0.0.1:8000/foo/..;\;bar +[mid_paths] http://127.0.0.1:8000/foo/..;\\bar +[mid_paths] http://127.0.0.1:8000/foo/..;bar +[mid_paths] http://127.0.0.1:8000/foo/..\;bar +[mid_paths] http://127.0.0.1:8000/foo/..\\bar +[mid_paths] http://127.0.0.1:8000/foo/..bar +[mid_paths] http://127.0.0.1:8000/foo/./.bar +[mid_paths] http://127.0.0.1:8000/foo/.//./bar +[mid_paths] http://127.0.0.1:8000/foo/./bar +[mid_paths] http://127.0.0.1:8000/foo/.;/bar +[mid_paths] http://127.0.0.1:8000/foo/.htmlbar +[mid_paths] http://127.0.0.1:8000/foo/.jsonbar +[mid_paths] http://127.0.0.1:8000/foo//%20#bar +[mid_paths] http://127.0.0.1:8000/foo//%20%20/bar +[mid_paths] http://127.0.0.1:8000/foo//%20%23bar +[mid_paths] http://127.0.0.1:8000/foo//%252e%252e%252f/bar +[mid_paths] http://127.0.0.1:8000/foo//%252e%252e%253b/bar +[mid_paths] http://127.0.0.1:8000/foo//%252e%252f/bar +[mid_paths] http://127.0.0.1:8000/foo//%252e%253b/bar +[mid_paths] http://127.0.0.1:8000/foo//%252e/bar +[mid_paths] http://127.0.0.1:8000/foo//%252fbar +[mid_paths] http://127.0.0.1:8000/foo//%2e%2e%3b/bar +[mid_paths] http://127.0.0.1:8000/foo//%2e%2e/bar +[mid_paths] http://127.0.0.1:8000/foo//%2e%2ebar +[mid_paths] http://127.0.0.1:8000/foo//%2e%2f/bar +[mid_paths] http://127.0.0.1:8000/foo//%2e%3b//bar +[mid_paths] http://127.0.0.1:8000/foo//%2e%3b/bar +[mid_paths] http://127.0.0.1:8000/foo//%2e//bar +[mid_paths] http://127.0.0.1:8000/foo//%2e/bar +[mid_paths] http://127.0.0.1:8000/foo//%2fbar +[mid_paths] http://127.0.0.1:8000/foo//%3b/bar +[mid_paths] http://127.0.0.1:8000/foo//*/bar +[mid_paths] http://127.0.0.1:8000/foo//*bar +[mid_paths] http://127.0.0.1:8000/foo//..%2f..%2f..%2fbar +[mid_paths] http://127.0.0.1:8000/foo//..%2f..%2fbar +[mid_paths] http://127.0.0.1:8000/foo//..%2fbar +[mid_paths] http://127.0.0.1:8000/foo//../../..//bar +[mid_paths] http://127.0.0.1:8000/foo//../../../bar +[mid_paths] http://127.0.0.1:8000/foo//../..//../bar +[mid_paths] http://127.0.0.1:8000/foo//../..//bar +[mid_paths] http://127.0.0.1:8000/foo//../../bar +[mid_paths] http://127.0.0.1:8000/foo//../..;/bar +[mid_paths] http://127.0.0.1:8000/foo//.././../bar +[mid_paths] http://127.0.0.1:8000/foo//../.;/../bar +[mid_paths] http://127.0.0.1:8000/foo//..//../../bar +[mid_paths] http://127.0.0.1:8000/foo//..//../bar +[mid_paths] http://127.0.0.1:8000/foo//..//..;/bar +[mid_paths] http://127.0.0.1:8000/foo//..//bar +[mid_paths] http://127.0.0.1:8000/foo//../;/../bar +[mid_paths] http://127.0.0.1:8000/foo//../;/bar +[mid_paths] http://127.0.0.1:8000/foo//../bar +[mid_paths] http://127.0.0.1:8000/foo//..;%2f..;%2f..;%2fbar +[mid_paths] http://127.0.0.1:8000/foo//..;%2f..;%2fbar +[mid_paths] http://127.0.0.1:8000/foo//..;%2fbar +[mid_paths] http://127.0.0.1:8000/foo//..;/../bar +[mid_paths] http://127.0.0.1:8000/foo//..;/..;/bar +[mid_paths] http://127.0.0.1:8000/foo//..;//../bar +[mid_paths] http://127.0.0.1:8000/foo//..;//..;/bar +[mid_paths] http://127.0.0.1:8000/foo//..;//bar +[mid_paths] http://127.0.0.1:8000/foo//..;/;/..;/bar +[mid_paths] http://127.0.0.1:8000/foo//..;/;/bar +[mid_paths] http://127.0.0.1:8000/foo//..;/bar +[mid_paths] http://127.0.0.1:8000/foo//..bar +[mid_paths] http://127.0.0.1:8000/foo//.//bar +[mid_paths] http://127.0.0.1:8000/foo//./bar +[mid_paths] http://127.0.0.1:8000/foo//.;//bar +[mid_paths] http://127.0.0.1:8000/foo//.;/bar +[mid_paths] http://127.0.0.1:8000/foo//.bar +[mid_paths] http://127.0.0.1:8000/foo//.randomstringbar +[mid_paths] http://127.0.0.1:8000/foo///../../bar +[mid_paths] http://127.0.0.1:8000/foo///..;bar +[mid_paths] http://127.0.0.1:8000/foo///..bar +[mid_paths] http://127.0.0.1:8000/foo///./bar +[mid_paths] http://127.0.0.1:8000/foo///.;/bar +[mid_paths] http://127.0.0.1:8000/foo///.bar +[mid_paths] http://127.0.0.1:8000/foo////..//bar +[mid_paths] http://127.0.0.1:8000/foo////../bar +[mid_paths] http://127.0.0.1:8000/foo////..;//bar +[mid_paths] http://127.0.0.1:8000/foo////..;/bar +[mid_paths] http://127.0.0.1:8000/foo////..;bar +[mid_paths] http://127.0.0.1:8000/foo////..bar +[mid_paths] http://127.0.0.1:8000/foo/////bar +[mid_paths] http://127.0.0.1:8000/foo///;/bar +[mid_paths] http://127.0.0.1:8000/foo///?anythingbar +[mid_paths] http://127.0.0.1:8000/foo///bar +[mid_paths] http://127.0.0.1:8000/foo//;//bar +[mid_paths] http://127.0.0.1:8000/foo//;/bar +[mid_paths] http://127.0.0.1:8000/foo//;x/bar +[mid_paths] http://127.0.0.1:8000/foo//;xbar +[mid_paths] http://127.0.0.1:8000/foo//bar +[mid_paths] http://127.0.0.1:8000/foo//x/..//bar +[mid_paths] http://127.0.0.1:8000/foo//x/../;/bar +[mid_paths] http://127.0.0.1:8000/foo//x/../bar +[mid_paths] http://127.0.0.1:8000/foo//x/..;//bar +[mid_paths] http://127.0.0.1:8000/foo//x/..;/;/bar +[mid_paths] http://127.0.0.1:8000/foo//x/..;/bar +[mid_paths] http://127.0.0.1:8000/foo//x//../bar +[mid_paths] http://127.0.0.1:8000/foo//x//..;/bar +[mid_paths] http://127.0.0.1:8000/foo//x/;/../bar +[mid_paths] http://127.0.0.1:8000/foo//x/;/..;/bar +[mid_paths] http://127.0.0.1:8000/foo/;%09..;bar +[mid_paths] http://127.0.0.1:8000/foo/;%09..bar +[mid_paths] http://127.0.0.1:8000/foo/;%09;bar +[mid_paths] http://127.0.0.1:8000/foo/;%09bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f%2e%2e%2f%2e%2e%2f%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;%2f%2e%2ebar +[mid_paths] http://127.0.0.1:8000/foo/;%2f%2f/../bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..%2f%2e%2e%2f%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..%2f..%2f%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..%2f/..%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..%2f/../bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..%2f/bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f../%2f..%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;%2f../%2f../bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..//..%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..//../bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..///;bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..///bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..//;/;bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..//;/bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f../;//bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f../;/;/;bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f../;/;/bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..;///bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..;//;/bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..;/;//bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f..bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f/%2f../bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f//..%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;%2f//../bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f//..;/bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f/;/../bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f/;/..;/bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f;//../bar +[mid_paths] http://127.0.0.1:8000/foo/;%2f;/;/..;/bar +[mid_paths] http://127.0.0.1:8000/foo/;/%2e%2e%2f%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;/%2e%2e%2f/bar +[mid_paths] http://127.0.0.1:8000/foo/;/%2e%2e/bar +[mid_paths] http://127.0.0.1:8000/foo/;/%2e%2ebar +[mid_paths] http://127.0.0.1:8000/foo/;/%2e.bar +[mid_paths] http://127.0.0.1:8000/foo/;/%2f%2f../bar +[mid_paths] http://127.0.0.1:8000/foo/;/%2f/..%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;/%2f/../bar +[mid_paths] http://127.0.0.1:8000/foo/;/.%2e/%2e%2e/%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;/.%2ebar +[mid_paths] http://127.0.0.1:8000/foo/;/..%2f%2f../bar +[mid_paths] http://127.0.0.1:8000/foo/;/..%2f..%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;/..%2f//bar +[mid_paths] http://127.0.0.1:8000/foo/;/..%2f/bar +[mid_paths] http://127.0.0.1:8000/foo/;/..%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;/../%2f/bar +[mid_paths] http://127.0.0.1:8000/foo/;/../..//bar +[mid_paths] http://127.0.0.1:8000/foo/;/../../bar +[mid_paths] http://127.0.0.1:8000/foo/;/.././../bar +[mid_paths] http://127.0.0.1:8000/foo/;/../.;/../bar +[mid_paths] http://127.0.0.1:8000/foo/;/..//%2e%2e/bar +[mid_paths] http://127.0.0.1:8000/foo/;/..//%2fbar +[mid_paths] http://127.0.0.1:8000/foo/;/..//../bar +[mid_paths] http://127.0.0.1:8000/foo/;/..///bar +[mid_paths] http://127.0.0.1:8000/foo/;/..//bar +[mid_paths] http://127.0.0.1:8000/foo/;/../;/../bar +[mid_paths] http://127.0.0.1:8000/foo/;/../;/bar +[mid_paths] http://127.0.0.1:8000/foo/;/../bar +[mid_paths] http://127.0.0.1:8000/foo/;/..;bar +[mid_paths] http://127.0.0.1:8000/foo/;/..bar +[mid_paths] http://127.0.0.1:8000/foo/;/.;.bar +[mid_paths] http://127.0.0.1:8000/foo/;//%2f../bar +[mid_paths] http://127.0.0.1:8000/foo/;//../../bar +[mid_paths] http://127.0.0.1:8000/foo/;//..bar +[mid_paths] http://127.0.0.1:8000/foo/;///..//bar +[mid_paths] http://127.0.0.1:8000/foo/;///../bar +[mid_paths] http://127.0.0.1:8000/foo/;///..bar +[mid_paths] http://127.0.0.1:8000/foo/;bar +[mid_paths] http://127.0.0.1:8000/foo/;x/bar +[mid_paths] http://127.0.0.1:8000/foo/;x;bar +[mid_paths] http://127.0.0.1:8000/foo/;xbar +[mid_paths] http://127.0.0.1:8000/foo/???bar +[mid_paths] http://127.0.0.1:8000/foo/??bar +[mid_paths] http://127.0.0.1:8000/foo/?bar +[mid_paths] http://127.0.0.1:8000/foo/\..\.\bar +[original_request] http://127.0.0.1:8000/foo/bar