mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
Merge pull request #4635 from mhils/upstream-auth
[sans-io] add support for upstream_auth
This commit is contained in:
commit
5120c1dbe2
21
CHANGELOG.md
21
CHANGELOG.md
@ -24,17 +24,9 @@ Mitmproxy has a completely new proxy core, fixing many longstanding issues:
|
|||||||
This greatly improves testing capabilities, prevents a wide array of race conditions, and increases
|
This greatly improves testing capabilities, prevents a wide array of race conditions, and increases
|
||||||
proper isolation between layers.
|
proper isolation between layers.
|
||||||
|
|
||||||
We wanted to bring these improvements out, so we have a few regressions:
|
|
||||||
|
|
||||||
* Support for HTTP/2 Push Promises has been dropped.
|
|
||||||
* upstream_auth is currently unsupported.
|
|
||||||
|
|
||||||
If you depend on these features, please raise your voice in
|
|
||||||
[#4348](https://github.com/mitmproxy/mitmproxy/issues/4348)!
|
|
||||||
|
|
||||||
### Full Changelog
|
### Full Changelog
|
||||||
|
|
||||||
* New Proxy Core based on sans-io pattern (@mhils)
|
* New Proxy Core (see section above, @mhils)
|
||||||
* mitmproxy's command line interface now supports Windows (@mhils)
|
* mitmproxy's command line interface now supports Windows (@mhils)
|
||||||
* The `clientconnect`, `clientdisconnect`, `serverconnect`, `serverdisconnect`, and `log`
|
* The `clientconnect`, `clientdisconnect`, `serverconnect`, `serverdisconnect`, and `log`
|
||||||
events have been replaced with new events, see addon documentation for details (@mhils)
|
events have been replaced with new events, see addon documentation for details (@mhils)
|
||||||
@ -54,7 +46,8 @@ If you depend on these features, please raise your voice in
|
|||||||
* Pressing `?` now exits console help view (@abitrolly)
|
* Pressing `?` now exits console help view (@abitrolly)
|
||||||
* `--modify-headers` now works correctly when modifying a header that is also part of the filter expression (@Prinzhorn)
|
* `--modify-headers` now works correctly when modifying a header that is also part of the filter expression (@Prinzhorn)
|
||||||
* Fix SNI-related reproducibility issues when exporting to curl/httpie commands. (@dkasak)
|
* Fix SNI-related reproducibility issues when exporting to curl/httpie commands. (@dkasak)
|
||||||
* Add option `export_preserve_original_ip` to force exported command to connect to IP from original request. Only supports curl at the moment. (@dkasak)
|
* Add option `export_preserve_original_ip` to force exported command to connect to IP from original request.
|
||||||
|
Only supports curl at the moment. (@dkasak)
|
||||||
* Major proxy protocol testing (@r00t-)
|
* Major proxy protocol testing (@r00t-)
|
||||||
* Switch Docker image release to be based on Debian (@PeterDaveHello)
|
* Switch Docker image release to be based on Debian (@PeterDaveHello)
|
||||||
* Multiple Browsers: The `browser.start` command may be executed more than once to start additional
|
* Multiple Browsers: The `browser.start` command may be executed more than once to start additional
|
||||||
@ -64,11 +57,15 @@ If you depend on these features, please raise your voice in
|
|||||||
* Flow control: don't read connection data faster than it can be forwarded. (@hazcod)
|
* Flow control: don't read connection data faster than it can be forwarded. (@hazcod)
|
||||||
* Fix parsing of certificate issuer/subject with escaped special characters (@Prinzhorn)
|
* Fix parsing of certificate issuer/subject with escaped special characters (@Prinzhorn)
|
||||||
* Customize markers with emoji, and filters: The `flow.mark` command may be used to mark a flow with either the default
|
* Customize markers with emoji, and filters: The `flow.mark` command may be used to mark a flow with either the default
|
||||||
"red ball" marker, a single character, or an emoji like `:grapes:`. Use the `~marker` filter to filter on marker characters. (@rbdixon)
|
"red ball" marker, a single character, or an emoji like `:grapes:`. Use the `~marker` filter to filter on marker
|
||||||
* New `flow.comment` command to add a comment to the flow. Add `~comment <regex>` filter syntax to search flow comments. (@rbdixon)
|
characters. (@rbdixon)
|
||||||
|
* New `flow.comment` command to add a comment to the flow. Add `~comment <regex>` filter syntax to search flow comments.
|
||||||
|
(@rbdixon)
|
||||||
* Fix multipart forms losing `boundary` values on edit (@roytu)
|
* Fix multipart forms losing `boundary` values on edit (@roytu)
|
||||||
* `Transfer-Encoding: chunked` HTTP message bodies are now retained if they are below the stream_large_bodies limit.
|
* `Transfer-Encoding: chunked` HTTP message bodies are now retained if they are below the stream_large_bodies limit.
|
||||||
|
(@mhils)
|
||||||
* `json()` method for HTTP Request and Response instances will return decoded JSON body. (@rbdixon)
|
* `json()` method for HTTP Request and Response instances will return decoded JSON body. (@rbdixon)
|
||||||
|
* Support for HTTP/2 Push Promises has been dropped. (@mhils)
|
||||||
* --- TODO: add new PRs above this line ---
|
* --- TODO: add new PRs above this line ---
|
||||||
* ... and various other fixes, documentation improvements, dependency version bumps, etc.
|
* ... and various other fixes, documentation improvements, dependency version bumps, etc.
|
||||||
|
|
||||||
|
@ -102,6 +102,7 @@ with outfile.open("w") as f, contextlib.redirect_stdout(f):
|
|||||||
http.HttpResponseHook,
|
http.HttpResponseHook,
|
||||||
http.HttpErrorHook,
|
http.HttpErrorHook,
|
||||||
http.HttpConnectHook,
|
http.HttpConnectHook,
|
||||||
|
http.HttpConnectUpstreamHook,
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -4,10 +4,11 @@ import base64
|
|||||||
|
|
||||||
from mitmproxy import exceptions
|
from mitmproxy import exceptions
|
||||||
from mitmproxy import ctx
|
from mitmproxy import ctx
|
||||||
|
from mitmproxy import http
|
||||||
from mitmproxy.utils import strutils
|
from mitmproxy.utils import strutils
|
||||||
|
|
||||||
|
|
||||||
def parse_upstream_auth(auth):
|
def parse_upstream_auth(auth: str) -> bytes:
|
||||||
pattern = re.compile(".+:")
|
pattern = re.compile(".+:")
|
||||||
if pattern.search(auth) is None:
|
if pattern.search(auth) is None:
|
||||||
raise exceptions.OptionsError(
|
raise exceptions.OptionsError(
|
||||||
@ -16,7 +17,7 @@ def parse_upstream_auth(auth):
|
|||||||
return b"Basic" + b" " + base64.b64encode(strutils.always_bytes(auth))
|
return b"Basic" + b" " + base64.b64encode(strutils.always_bytes(auth))
|
||||||
|
|
||||||
|
|
||||||
class UpstreamAuth():
|
class UpstreamAuth:
|
||||||
"""
|
"""
|
||||||
This addon handles authentication to systems upstream from us for the
|
This addon handles authentication to systems upstream from us for the
|
||||||
upstream proxy and reverse proxy mode. There are 3 cases:
|
upstream proxy and reverse proxy mode. There are 3 cases:
|
||||||
@ -26,8 +27,7 @@ class UpstreamAuth():
|
|||||||
- Upstream proxy regular requests
|
- Upstream proxy regular requests
|
||||||
- Reverse proxy regular requests (CONNECT is invalid in this mode)
|
- Reverse proxy regular requests (CONNECT is invalid in this mode)
|
||||||
"""
|
"""
|
||||||
def __init__(self):
|
auth: typing.Optional[bytes] = None
|
||||||
self.auth = None
|
|
||||||
|
|
||||||
def load(self, loader):
|
def load(self, loader):
|
||||||
loader.add_option(
|
loader.add_option(
|
||||||
@ -39,26 +39,19 @@ class UpstreamAuth():
|
|||||||
)
|
)
|
||||||
|
|
||||||
def configure(self, updated):
|
def configure(self, updated):
|
||||||
# FIXME: We're doing this because our proxy core is terminally confused
|
|
||||||
# at the moment. Ideally, we should be able to check if we're in
|
|
||||||
# reverse proxy mode at the HTTP layer, so that scripts can put the
|
|
||||||
# proxy in reverse proxy mode for specific requests.
|
|
||||||
if "upstream_auth" in updated:
|
if "upstream_auth" in updated:
|
||||||
if ctx.options.upstream_auth is None:
|
if ctx.options.upstream_auth is None:
|
||||||
self.auth = None
|
self.auth = None
|
||||||
else:
|
else:
|
||||||
if ctx.options.upstream_auth: # pragma: no cover
|
|
||||||
ctx.log.warn("upstream_auth is currently nonfunctioning, "
|
|
||||||
"see https://github.com/mitmproxy/mitmproxy/issues/4348")
|
|
||||||
self.auth = parse_upstream_auth(ctx.options.upstream_auth)
|
self.auth = parse_upstream_auth(ctx.options.upstream_auth)
|
||||||
|
|
||||||
def http_connect(self, f):
|
def http_connect_upstream(self, f: http.HTTPFlow):
|
||||||
if self.auth and f.mode == "upstream":
|
if self.auth:
|
||||||
f.request.headers["Proxy-Authorization"] = self.auth
|
f.request.headers["Proxy-Authorization"] = self.auth
|
||||||
|
|
||||||
def requestheaders(self, f):
|
def requestheaders(self, f: http.HTTPFlow):
|
||||||
if self.auth:
|
if self.auth:
|
||||||
if f.mode == "upstream" and not f.server_conn.via:
|
if f.mode == "upstream" and not f.server_conn.via:
|
||||||
f.request.headers["Proxy-Authorization"] = self.auth
|
f.request.headers["Proxy-Authorization"] = self.auth
|
||||||
elif ctx.options.mode.startswith("reverse"):
|
elif ctx.options.mode.startswith("reverse"):
|
||||||
f.request.headers["Proxy-Authorization"] = self.auth
|
f.request.headers["Authorization"] = self.auth
|
||||||
|
@ -20,7 +20,7 @@ from ._base import HttpCommand, HttpConnection, ReceiveHttp, StreamId
|
|||||||
from ._events import HttpEvent, RequestData, RequestEndOfMessage, RequestHeaders, RequestProtocolError, RequestTrailers, \
|
from ._events import HttpEvent, RequestData, RequestEndOfMessage, RequestHeaders, RequestProtocolError, RequestTrailers, \
|
||||||
ResponseData, ResponseEndOfMessage, ResponseHeaders, ResponseProtocolError, ResponseTrailers
|
ResponseData, ResponseEndOfMessage, ResponseHeaders, ResponseProtocolError, ResponseTrailers
|
||||||
from ._hooks import HttpConnectHook, HttpErrorHook, HttpRequestHeadersHook, HttpRequestHook, HttpResponseHeadersHook, \
|
from ._hooks import HttpConnectHook, HttpErrorHook, HttpRequestHeadersHook, HttpRequestHook, HttpResponseHeadersHook, \
|
||||||
HttpResponseHook
|
HttpResponseHook, HttpConnectUpstreamHook # noqa
|
||||||
from ._http1 import Http1Client, Http1Connection, Http1Server
|
from ._http1 import Http1Client, Http1Connection, Http1Server
|
||||||
from ._http2 import Http2Client, Http2Server
|
from ._http2 import Http2Client, Http2Server
|
||||||
from ...context import Context
|
from ...context import Context
|
||||||
@ -564,17 +564,7 @@ class HttpStream(layer.Layer):
|
|||||||
yield from self.handle_connect_finish()
|
yield from self.handle_connect_finish()
|
||||||
|
|
||||||
def handle_connect_upstream(self):
|
def handle_connect_upstream(self):
|
||||||
assert self.context.server.via.scheme in ("http", "https")
|
self.child_layer = _upstream_proxy.HttpUpstreamProxy.make(self.context, True)[0]
|
||||||
|
|
||||||
http_proxy = Server(self.context.server.via.address)
|
|
||||||
|
|
||||||
stack = tunnel.LayerStack()
|
|
||||||
if self.context.server.via.scheme == "https":
|
|
||||||
http_proxy.sni = self.context.server.via.address[0]
|
|
||||||
stack /= tls.ServerTLSLayer(self.context, http_proxy)
|
|
||||||
stack /= _upstream_proxy.HttpUpstreamProxy(self.context, http_proxy, True)
|
|
||||||
|
|
||||||
self.child_layer = stack[0]
|
|
||||||
yield from self.handle_connect_finish()
|
yield from self.handle_connect_finish()
|
||||||
|
|
||||||
def handle_connect_finish(self):
|
def handle_connect_finish(self):
|
||||||
@ -813,21 +803,15 @@ class HttpLayer(layer.Layer):
|
|||||||
if not can_use_context_connection:
|
if not can_use_context_connection:
|
||||||
|
|
||||||
context.server = Server(event.address)
|
context.server = Server(event.address)
|
||||||
if event.tls:
|
|
||||||
context.server.sni = event.address[0]
|
|
||||||
|
|
||||||
if event.via:
|
if event.via:
|
||||||
|
context.server.via = event.via
|
||||||
assert event.via.scheme in ("http", "https")
|
assert event.via.scheme in ("http", "https")
|
||||||
http_proxy = Server(event.via.address)
|
# We always send a CONNECT request, *except* for plaintext absolute-form HTTP requests in upstream mode.
|
||||||
|
send_connect = event.tls or self.mode != HTTPMode.upstream
|
||||||
if event.via.scheme == "https":
|
stack /= _upstream_proxy.HttpUpstreamProxy.make(context, send_connect)
|
||||||
http_proxy.alpn_offers = tls.HTTP_ALPNS
|
|
||||||
http_proxy.sni = event.via.address[0]
|
|
||||||
stack /= tls.ServerTLSLayer(context, http_proxy)
|
|
||||||
|
|
||||||
send_connect = not (self.mode == HTTPMode.upstream and not event.tls)
|
|
||||||
stack /= _upstream_proxy.HttpUpstreamProxy(context, http_proxy, send_connect)
|
|
||||||
if event.tls:
|
if event.tls:
|
||||||
|
context.server.sni = event.address[0]
|
||||||
stack /= tls.ServerTLSLayer(context)
|
stack /= tls.ServerTLSLayer(context)
|
||||||
|
|
||||||
stack /= HttpClient(context)
|
stack /= HttpClient(context)
|
||||||
@ -850,14 +834,9 @@ class HttpLayer(layer.Layer):
|
|||||||
stream = self.command_sources.pop(cmd)
|
stream = self.command_sources.pop(cmd)
|
||||||
yield from self.event_to_child(stream, GetHttpConnectionCompleted(cmd, reply))
|
yield from self.event_to_child(stream, GetHttpConnectionCompleted(cmd, reply))
|
||||||
|
|
||||||
# Somewhat ugly edge case: If we do HTTP/2 -> HTTP/1 proxying we don't want
|
# Tricky multiplexing edge case: Assume we are doing HTTP/2 -> HTTP/1 proxying and the destination server
|
||||||
# to handle everything over a single connection.
|
# only serves responses with HTTP read-until-EOF semantics. In this case we can't process two flows on the
|
||||||
# Tricky multiplexing edge case: Assume we are doing HTTP/2 -> HTTP/1 proxying,
|
# same connection. The only workaround left is to open a separate connection for each flow.
|
||||||
#
|
|
||||||
# that receives two responses
|
|
||||||
# that neither have a content-length specified nor a chunked transfer encoding.
|
|
||||||
# We can't process these two flows to the same h1 connection as they would both have
|
|
||||||
# "read until eof" semantics. The only workaround left is to open a separate connection for each flow.
|
|
||||||
if not command.err and self.context.client.alpn == b"h2" and command.connection.alpn != b"h2":
|
if not command.err and self.context.client.alpn == b"h2" and command.connection.alpn != b"h2":
|
||||||
for cmd in waiting[1:]:
|
for cmd in waiting[1:]:
|
||||||
yield from self.get_connection(cmd, reuse=False)
|
yield from self.get_connection(cmd, reuse=False)
|
||||||
|
@ -75,3 +75,17 @@ class HttpConnectHook(commands.StartHook):
|
|||||||
but all requests going over the newly opened connection will.
|
but all requests going over the newly opened connection will.
|
||||||
"""
|
"""
|
||||||
flow: http.HTTPFlow
|
flow: http.HTTPFlow
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class HttpConnectUpstreamHook(commands.StartHook):
|
||||||
|
"""
|
||||||
|
An HTTP CONNECT request is about to be sent to an upstream proxy.
|
||||||
|
This event can be ignored for most practical purposes.
|
||||||
|
|
||||||
|
This event can be used to set custom authentication headers for upstream proxies.
|
||||||
|
|
||||||
|
CONNECT requests do not generate the usual HTTP handler events,
|
||||||
|
but all requests going over the newly opened connection will.
|
||||||
|
"""
|
||||||
|
flow: http.HTTPFlow
|
||||||
|
@ -65,6 +65,8 @@ class Http2Connection(HttpConnection):
|
|||||||
stream is not None
|
stream is not None
|
||||||
and
|
and
|
||||||
stream.state_machine.state is not h2.stream.StreamState.CLOSED
|
stream.state_machine.state is not h2.stream.StreamState.CLOSED
|
||||||
|
and
|
||||||
|
self.h2_conn.state_machine.state is not h2.connection.ConnectionState.CLOSED
|
||||||
):
|
):
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
@ -79,6 +81,8 @@ class Http2Connection(HttpConnection):
|
|||||||
stream.state_machine.state is not h2.stream.StreamState.HALF_CLOSED_LOCAL
|
stream.state_machine.state is not h2.stream.StreamState.HALF_CLOSED_LOCAL
|
||||||
and
|
and
|
||||||
stream.state_machine.state is not h2.stream.StreamState.CLOSED
|
stream.state_machine.state is not h2.stream.StreamState.CLOSED
|
||||||
|
and
|
||||||
|
self.h2_conn.state_machine.state is not h2.connection.ConnectionState.CLOSED
|
||||||
):
|
):
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
|
@ -4,9 +4,10 @@ from typing import Optional, Tuple
|
|||||||
from h11._receivebuffer import ReceiveBuffer
|
from h11._receivebuffer import ReceiveBuffer
|
||||||
|
|
||||||
from mitmproxy import http, connection
|
from mitmproxy import http, connection
|
||||||
from mitmproxy.net import server_spec
|
|
||||||
from mitmproxy.net.http import http1
|
from mitmproxy.net.http import http1
|
||||||
from mitmproxy.proxy import commands, context, layer, tunnel
|
from mitmproxy.proxy import commands, context, layer, tunnel
|
||||||
|
from mitmproxy.proxy.layers.http._hooks import HttpConnectUpstreamHook
|
||||||
|
from mitmproxy.proxy.layers import tls
|
||||||
from mitmproxy.utils import human
|
from mitmproxy.utils import human
|
||||||
|
|
||||||
|
|
||||||
@ -27,25 +28,32 @@ class HttpUpstreamProxy(tunnel.TunnelLayer):
|
|||||||
tunnel_connection=tunnel_conn,
|
tunnel_connection=tunnel_conn,
|
||||||
conn=ctx.server
|
conn=ctx.server
|
||||||
)
|
)
|
||||||
|
|
||||||
assert self.tunnel_connection.address
|
|
||||||
self.conn.via = server_spec.ServerSpec(
|
|
||||||
"https" if self.tunnel_connection.tls else "http",
|
|
||||||
self.tunnel_connection.address
|
|
||||||
)
|
|
||||||
self.buf = ReceiveBuffer()
|
self.buf = ReceiveBuffer()
|
||||||
self.send_connect = send_connect
|
self.send_connect = send_connect
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def make(cls, ctx: context.Context, send_connect: bool) -> tunnel.LayerStack:
|
||||||
|
spec = ctx.server.via
|
||||||
|
assert spec
|
||||||
|
assert spec.scheme in ("http", "https")
|
||||||
|
|
||||||
|
http_proxy = connection.Server(spec.address)
|
||||||
|
|
||||||
|
stack = tunnel.LayerStack()
|
||||||
|
if spec.scheme == "https":
|
||||||
|
http_proxy.alpn_offers = tls.HTTP1_ALPNS
|
||||||
|
http_proxy.sni = spec.address[0]
|
||||||
|
stack /= tls.ServerTLSLayer(ctx, http_proxy)
|
||||||
|
stack /= cls(ctx, http_proxy, send_connect)
|
||||||
|
|
||||||
|
return stack
|
||||||
|
|
||||||
def start_handshake(self) -> layer.CommandGenerator[None]:
|
def start_handshake(self) -> layer.CommandGenerator[None]:
|
||||||
if self.tunnel_connection.tls:
|
|
||||||
# "Secure Web Proxy": We may have negotiated an ALPN when connecting to the upstream proxy.
|
|
||||||
# The semantics are not really clear here, but we make sure that if we negotiated h2,
|
|
||||||
# we act as an h2 client.
|
|
||||||
self.conn.alpn = self.tunnel_connection.alpn
|
|
||||||
if not self.send_connect:
|
if not self.send_connect:
|
||||||
return (yield from super().start_handshake())
|
return (yield from super().start_handshake())
|
||||||
assert self.conn.address
|
assert self.conn.address
|
||||||
req = http.Request(
|
flow = http.HTTPFlow(self.context.client, self.tunnel_connection)
|
||||||
|
flow.request = http.Request(
|
||||||
host=self.conn.address[0],
|
host=self.conn.address[0],
|
||||||
port=self.conn.address[1],
|
port=self.conn.address[1],
|
||||||
method=b"CONNECT",
|
method=b"CONNECT",
|
||||||
@ -59,7 +67,8 @@ class HttpUpstreamProxy(tunnel.TunnelLayer):
|
|||||||
timestamp_start=time.time(),
|
timestamp_start=time.time(),
|
||||||
timestamp_end=time.time(),
|
timestamp_end=time.time(),
|
||||||
)
|
)
|
||||||
raw = http1.assemble_request(req)
|
yield HttpConnectUpstreamHook(flow)
|
||||||
|
raw = http1.assemble_request(flow.request)
|
||||||
yield commands.SendData(self.tunnel_connection, raw)
|
yield commands.SendData(self.tunnel_connection, raw)
|
||||||
|
|
||||||
def receive_handshake_data(self, data: bytes) -> layer.CommandGenerator[Tuple[bool, Optional[str]]]:
|
def receive_handshake_data(self, data: bytes) -> layer.CommandGenerator[Tuple[bool, Optional[str]]]:
|
||||||
@ -72,17 +81,19 @@ class HttpUpstreamProxy(tunnel.TunnelLayer):
|
|||||||
try:
|
try:
|
||||||
response = http1.read_response_head(response_head)
|
response = http1.read_response_head(response_head)
|
||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
yield commands.Log(f"{human.format_address(self.tunnel_connection.address)}: {e}")
|
proxyaddr = human.format_address(self.tunnel_connection.address)
|
||||||
return False, str(e)
|
yield commands.Log(f"{proxyaddr}: {e}")
|
||||||
|
return False, f"Error connecting to {proxyaddr}: {e}"
|
||||||
if 200 <= response.status_code < 300:
|
if 200 <= response.status_code < 300:
|
||||||
if self.buf:
|
if self.buf:
|
||||||
yield from self.receive_data(bytes(self.buf))
|
yield from self.receive_data(bytes(self.buf))
|
||||||
del self.buf
|
del self.buf
|
||||||
return True, None
|
return True, None
|
||||||
else:
|
else:
|
||||||
|
proxyaddr = human.format_address(self.tunnel_connection.address)
|
||||||
raw_resp = b"\n".join(response_head)
|
raw_resp = b"\n".join(response_head)
|
||||||
yield commands.Log(f"{human.format_address(self.tunnel_connection.address)}: {raw_resp!r}",
|
yield commands.Log(f"{proxyaddr}: {raw_resp!r}",
|
||||||
level="debug")
|
level="debug")
|
||||||
return False, f"{response.status_code} {response.reason}"
|
return False, f"Upstream proxy {proxyaddr} refused HTTP CONNECT request: {response.status_code} {response.reason}"
|
||||||
else:
|
else:
|
||||||
return False, None
|
return False, None
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from enum import Enum, auto
|
from enum import Enum, auto
|
||||||
from typing import List, Optional, Tuple
|
from typing import List, Optional, Tuple, Union
|
||||||
|
|
||||||
from mitmproxy import connection
|
from mitmproxy import connection
|
||||||
from mitmproxy.proxy import commands, context, events, layer
|
from mitmproxy.proxy import commands, context, events, layer
|
||||||
@ -163,8 +163,13 @@ class LayerStack:
|
|||||||
def __getitem__(self, item: int) -> Layer:
|
def __getitem__(self, item: int) -> Layer:
|
||||||
return self._stack.__getitem__(item)
|
return self._stack.__getitem__(item)
|
||||||
|
|
||||||
def __truediv__(self, other: Layer) -> "LayerStack":
|
def __truediv__(self, other: Union[Layer, "LayerStack"]) -> "LayerStack":
|
||||||
if self._stack:
|
if isinstance(other, Layer):
|
||||||
self._stack[-1].child_layer = other # type: ignore
|
if self._stack:
|
||||||
self._stack.append(other)
|
self._stack[-1].child_layer = other # type: ignore
|
||||||
|
self._stack.append(other)
|
||||||
|
else:
|
||||||
|
if self._stack:
|
||||||
|
self._stack[-1].child_layer = other[0] # type: ignore
|
||||||
|
self._stack.extend(other._stack)
|
||||||
return self
|
return self
|
||||||
|
@ -45,9 +45,8 @@ def test_simple():
|
|||||||
f = tflow.tflow()
|
f = tflow.tflow()
|
||||||
f.mode = "transparent"
|
f.mode = "transparent"
|
||||||
up.requestheaders(f)
|
up.requestheaders(f)
|
||||||
assert "proxy-authorization" in f.request.headers
|
assert "authorization" in f.request.headers
|
||||||
|
|
||||||
f = tflow.tflow()
|
f = tflow.tflow()
|
||||||
f.mode = "upstream"
|
up.http_connect_upstream(f)
|
||||||
up.http_connect(f)
|
|
||||||
assert "proxy-authorization" in f.request.headers
|
assert "proxy-authorization" in f.request.headers
|
||||||
|
@ -236,6 +236,7 @@ def _h2_request(chunks):
|
|||||||
@example([
|
@example([
|
||||||
b'\x00\x00%\x01\x04\x00\x00\x00\x01A\x8b/\x91\xd3]\x05\\\x87\xa6\xe3M3\x84\x86\x82`\x85\x94\xe7\x8c~\xfff\x88/\x91'
|
b'\x00\x00%\x01\x04\x00\x00\x00\x01A\x8b/\x91\xd3]\x05\\\x87\xa6\xe3M3\x84\x86\x82`\x85\x94\xe7\x8c~\xfff\x88/\x91'
|
||||||
b'\xd3]\x05\\\x87\xa7\\\x82h_\x00\x00\x07\x01\x05\x00\x00\x00\x01\xc1\x84\x86\x82\xc0\xbf\xbe'])
|
b'\xd3]\x05\\\x87\xa7\\\x82h_\x00\x00\x07\x01\x05\x00\x00\x00\x01\xc1\x84\x86\x82\xc0\xbf\xbe'])
|
||||||
|
@example([b'\x00\x00\x03\x01\x04\x00\x00\x00\x01\x84\x86\x82\x00\x00\x08\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'])
|
||||||
def test_fuzz_h2_request_chunks(chunks):
|
def test_fuzz_h2_request_chunks(chunks):
|
||||||
_h2_request(chunks)
|
_h2_request(chunks)
|
||||||
|
|
||||||
|
@ -55,9 +55,7 @@ def test_upstream_https(tctx):
|
|||||||
serverhello = Placeholder(bytes)
|
serverhello = Placeholder(bytes)
|
||||||
request = Placeholder(bytes)
|
request = Placeholder(bytes)
|
||||||
tls_finished = Placeholder(bytes)
|
tls_finished = Placeholder(bytes)
|
||||||
h2_client_settings_ack = Placeholder(bytes)
|
|
||||||
response = Placeholder(bytes)
|
response = Placeholder(bytes)
|
||||||
h2_server_settings_ack = Placeholder(bytes)
|
|
||||||
|
|
||||||
assert (
|
assert (
|
||||||
proxy1
|
proxy1
|
||||||
@ -67,7 +65,7 @@ def test_upstream_https(tctx):
|
|||||||
<< OpenConnection(upstream)
|
<< OpenConnection(upstream)
|
||||||
>> reply(None)
|
>> reply(None)
|
||||||
<< TlsStartHook(Placeholder())
|
<< TlsStartHook(Placeholder())
|
||||||
>> reply_tls_start(alpn=b"h2")
|
>> reply_tls_start(alpn=b"http/1.1")
|
||||||
<< SendData(upstream, clienthello)
|
<< SendData(upstream, clienthello)
|
||||||
)
|
)
|
||||||
assert upstream().address == ("example.mitmproxy.org", 8081)
|
assert upstream().address == ("example.mitmproxy.org", 8081)
|
||||||
@ -77,7 +75,7 @@ def test_upstream_https(tctx):
|
|||||||
<< NextLayerHook(Placeholder(NextLayer))
|
<< NextLayerHook(Placeholder(NextLayer))
|
||||||
>> reply_next_layer(ClientTLSLayer)
|
>> reply_next_layer(ClientTLSLayer)
|
||||||
<< TlsStartHook(Placeholder())
|
<< TlsStartHook(Placeholder())
|
||||||
>> reply_tls_start(alpn=b"h2")
|
>> reply_tls_start(alpn=b"http/1.1")
|
||||||
<< SendData(tctx2.client, serverhello)
|
<< SendData(tctx2.client, serverhello)
|
||||||
)
|
)
|
||||||
assert (
|
assert (
|
||||||
@ -91,21 +89,18 @@ def test_upstream_https(tctx):
|
|||||||
<< SendData(tctx2.client, tls_finished)
|
<< SendData(tctx2.client, tls_finished)
|
||||||
<< NextLayerHook(Placeholder(NextLayer))
|
<< NextLayerHook(Placeholder(NextLayer))
|
||||||
>> reply_next_layer(lambda ctx: http.HttpLayer(ctx, HTTPMode.regular))
|
>> reply_next_layer(lambda ctx: http.HttpLayer(ctx, HTTPMode.regular))
|
||||||
<< SendData(tctx2.client, h2_client_settings_ack)
|
|
||||||
<< OpenConnection(server)
|
<< OpenConnection(server)
|
||||||
>> reply(None)
|
>> reply(None)
|
||||||
<< SendData(server, b'GET / HTTP/1.1\r\nhost: example.com\r\n\r\n')
|
<< SendData(server, b'GET / HTTP/1.1\r\nHost: example.com\r\n\r\n')
|
||||||
>> DataReceived(server, b"HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n")
|
>> DataReceived(server, b"HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n")
|
||||||
<< CloseConnection(server)
|
|
||||||
<< SendData(tctx2.client, response)
|
<< SendData(tctx2.client, response)
|
||||||
)
|
)
|
||||||
assert server().address == ("example.com", 80)
|
assert server().address == ("example.com", 80)
|
||||||
|
|
||||||
assert (
|
assert (
|
||||||
proxy1
|
proxy1
|
||||||
>> DataReceived(upstream, tls_finished() + h2_client_settings_ack() + response())
|
>> DataReceived(upstream, tls_finished() + response())
|
||||||
<< SendData(upstream, h2_server_settings_ack)
|
<< SendData(tctx1.client, b"HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n")
|
||||||
<< SendData(tctx1.client, b"HTTP/1.1 200 OK\r\ncontent-length: 0\r\n\r\n")
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -266,3 +266,8 @@ def test_layer_stack(tctx):
|
|||||||
stack /= b
|
stack /= b
|
||||||
assert stack[0] == a
|
assert stack[0] == a
|
||||||
assert a.child_layer is b
|
assert a.child_layer is b
|
||||||
|
|
||||||
|
stack2 = tunnel.LayerStack()
|
||||||
|
stack2 /= TChildLayer(tctx)
|
||||||
|
stack2 /= stack
|
||||||
|
assert stack2[0].child_layer is a # type: ignore
|
||||||
|
@ -11,7 +11,7 @@ def test_mitmweb(event_loop, tdata):
|
|||||||
main.mitmweb([
|
main.mitmweb([
|
||||||
"--no-web-open-browser",
|
"--no-web-open-browser",
|
||||||
"-s", tdata.path(shutdown_script),
|
"-s", tdata.path(shutdown_script),
|
||||||
"-q", "-p", "0",
|
"-q", "-p", "0", "--web-port", "0",
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user