aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2015-09-26 01:23:59 +0200
committerMaximilian Hils <git@maximilianhils.com>2015-09-26 01:23:59 +0200
commitb13acd7956f2e09bf5f9001f8f55d018a381f6c2 (patch)
tree0cb1a99bcd453c435886a0bfd516520e1cd13612 /examples
parenta978c6b9cee134d01f84216f3fbcf1ae9303d965 (diff)
downloadmitmproxy-b13acd7956f2e09bf5f9001f8f55d018a381f6c2.tar.gz
mitmproxy-b13acd7956f2e09bf5f9001f8f55d018a381f6c2.tar.bz2
mitmproxy-b13acd7956f2e09bf5f9001f8f55d018a381f6c2.zip
adjust to netlib request changes + docs
Diffstat (limited to 'examples')
-rw-r--r--examples/dns_spoofing.py2
-rw-r--r--examples/redirect_requests.py9
2 files changed, 5 insertions, 6 deletions
diff --git a/examples/dns_spoofing.py b/examples/dns_spoofing.py
index 98495d45..7eb79695 100644
--- a/examples/dns_spoofing.py
+++ b/examples/dns_spoofing.py
@@ -39,7 +39,7 @@ def request(context, flow):
sni = None
port = 80
- host_header = flow.request.pretty_host(hostheader=True)
+ host_header = flow.request.pretty_host
m = parse_host_header.match(host_header)
if m:
host_header = m.group("host").strip("[]")
diff --git a/examples/redirect_requests.py b/examples/redirect_requests.py
index ca24c42a..5cc81633 100644
--- a/examples/redirect_requests.py
+++ b/examples/redirect_requests.py
@@ -5,12 +5,12 @@ from libmproxy.models import HTTPResponse
from netlib.http import Headers
def request(context, flow):
- # pretty_host(hostheader=True) takes the Host: header of the request into account,
+ # pretty_host takes the "Host" header of the request into account,
# which is useful in transparent mode where we usually only have the IP
# otherwise.
# Method 1: Answer with a locally generated response
- if flow.request.pretty_host(hostheader=True).endswith("example.com"):
+ if flow.request.pretty_host.endswith("example.com"):
resp = HTTPResponse(
[1, 1], 200, "OK",
Headers(Content_Type="text/html"),
@@ -18,6 +18,5 @@ def request(context, flow):
flow.reply(resp)
# Method 2: Redirect the request to a different server
- if flow.request.pretty_host(hostheader=True).endswith("example.org"):
- flow.request.host = "mitmproxy.org"
- flow.request.update_host_header()
+ if flow.request.pretty_host.endswith("example.org"):
+ flow.request.host = "mitmproxy.org" \ No newline at end of file