mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-25 18:03:50 +00:00
tests++
This commit is contained in:
parent
98a3e33477
commit
9f39e2f387
@ -124,6 +124,7 @@ with outfile.open("w") as f, contextlib.redirect_stdout(f):
|
|||||||
tls.TlsClienthelloHook,
|
tls.TlsClienthelloHook,
|
||||||
tls.TlsStartClientHook,
|
tls.TlsStartClientHook,
|
||||||
tls.TlsStartServerHook,
|
tls.TlsStartServerHook,
|
||||||
|
tls.TlsHandshakeHook,
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -97,7 +97,7 @@ class MaybeTls:
|
|||||||
|
|
||||||
def tls_handshake(self, data: tls.TlsHookData):
|
def tls_handshake(self, data: tls.TlsHookData):
|
||||||
if isinstance(data.conn, connection.Server):
|
if isinstance(data.conn, connection.Server):
|
||||||
return
|
return # we are only interested in failing client connections here.
|
||||||
server_address = data.context.server.peername
|
server_address = data.context.server.peername
|
||||||
if data.conn.error is None:
|
if data.conn.error is None:
|
||||||
ctx.log(f"TLS handshake successful: {human.format_address(server_address)}")
|
ctx.log(f"TLS handshake successful: {human.format_address(server_address)}")
|
||||||
|
@ -424,7 +424,7 @@ class ClientTLSLayer(_TLSLayer):
|
|||||||
# we've figured out that we don't want to intercept this connection, so we assign fake connection objects
|
# we've figured out that we don't want to intercept this connection, so we assign fake connection objects
|
||||||
# to all TLS layers. This makes the real connection contents just go through.
|
# to all TLS layers. This makes the real connection contents just go through.
|
||||||
self.conn = self.tunnel_connection = connection.Client(("ignore-conn", 0), ("ignore-conn", 0), time.time())
|
self.conn = self.tunnel_connection = connection.Client(("ignore-conn", 0), ("ignore-conn", 0), time.time())
|
||||||
parent_layer = self.context.layers[-2]
|
parent_layer = self.context.layers[self.context.layers.index(self) - 1]
|
||||||
if isinstance(parent_layer, ServerTLSLayer):
|
if isinstance(parent_layer, ServerTLSLayer):
|
||||||
parent_layer.conn = parent_layer.tunnel_connection = connection.Server(None)
|
parent_layer.conn = parent_layer.tunnel_connection = connection.Server(None)
|
||||||
self.child_layer = tcp.TCPLayer(self.context, ignore=True)
|
self.child_layer = tcp.TCPLayer(self.context, ignore=True)
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import ssl
|
import ssl
|
||||||
|
import time
|
||||||
import typing
|
import typing
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
@ -459,13 +460,13 @@ class TestClientTLS:
|
|||||||
<< commands.SendData(other_server, b"plaintext")
|
<< commands.SendData(other_server, b"plaintext")
|
||||||
)
|
)
|
||||||
|
|
||||||
@pytest.mark.parametrize("eager", ["eager", ""])
|
@pytest.mark.parametrize("server_state", ["open", "closed"])
|
||||||
def test_server_required(self, tctx, eager):
|
def test_server_required(self, tctx, server_state):
|
||||||
"""
|
"""
|
||||||
Test the scenario where a server connection is required (for example, because of an unknown ALPN)
|
Test the scenario where a server connection is required (for example, because of an unknown ALPN)
|
||||||
to establish TLS with the client.
|
to establish TLS with the client.
|
||||||
"""
|
"""
|
||||||
if eager:
|
if server_state == "open":
|
||||||
tctx.server.state = ConnectionState.OPEN
|
tctx.server.state = ConnectionState.OPEN
|
||||||
tssl_server = SSLTest(server_side=True, alpn=["quux"])
|
tssl_server = SSLTest(server_side=True, alpn=["quux"])
|
||||||
playbook, client_layer, tssl_client = make_client_tls_layer(tctx, alpn=["quux"])
|
playbook, client_layer, tssl_client = make_client_tls_layer(tctx, alpn=["quux"])
|
||||||
@ -482,7 +483,7 @@ class TestClientTLS:
|
|||||||
<< tls.TlsClienthelloHook(tutils.Placeholder())
|
<< tls.TlsClienthelloHook(tutils.Placeholder())
|
||||||
>> tutils.reply(side_effect=require_server_conn)
|
>> tutils.reply(side_effect=require_server_conn)
|
||||||
)
|
)
|
||||||
if not eager:
|
if server_state == "closed":
|
||||||
(
|
(
|
||||||
playbook
|
playbook
|
||||||
<< commands.OpenConnection(tctx.server)
|
<< commands.OpenConnection(tctx.server)
|
||||||
@ -532,6 +533,40 @@ class TestClientTLS:
|
|||||||
_test_echo(playbook, tssl_server, tctx.server)
|
_test_echo(playbook, tssl_server, tctx.server)
|
||||||
_test_echo(playbook, tssl_client, tctx.client)
|
_test_echo(playbook, tssl_client, tctx.client)
|
||||||
|
|
||||||
|
@pytest.mark.parametrize("server_state", ["open", "closed"])
|
||||||
|
def test_passthrough_from_clienthello(self, tctx, server_state):
|
||||||
|
"""
|
||||||
|
Test the scenario where the connection is moved to passthrough mode in the tls_clienthello hook.
|
||||||
|
"""
|
||||||
|
if server_state == "open":
|
||||||
|
tctx.server.timestamp_start = time.time()
|
||||||
|
tctx.server.state = ConnectionState.OPEN
|
||||||
|
|
||||||
|
playbook, client_layer, tssl_client = make_client_tls_layer(tctx, alpn=["quux"])
|
||||||
|
|
||||||
|
def make_passthrough(client_hello: tls.ClientHelloData) -> None:
|
||||||
|
client_hello.ignore_connection = True
|
||||||
|
|
||||||
|
client_hello = tssl_client.bio_read()
|
||||||
|
(
|
||||||
|
playbook
|
||||||
|
>> events.DataReceived(tctx.client, client_hello)
|
||||||
|
<< tls.TlsClienthelloHook(tutils.Placeholder())
|
||||||
|
>> tutils.reply(side_effect=make_passthrough)
|
||||||
|
)
|
||||||
|
if server_state == "closed":
|
||||||
|
(
|
||||||
|
playbook
|
||||||
|
<< commands.OpenConnection(tctx.server)
|
||||||
|
>> tutils.reply(None)
|
||||||
|
)
|
||||||
|
assert (
|
||||||
|
playbook
|
||||||
|
<< commands.SendData(tctx.server, client_hello) # passed through unmodified
|
||||||
|
>> events.DataReceived(tctx.server, b"ServerHello") # and the same for the serverhello.
|
||||||
|
<< commands.SendData(tctx.client, b"ServerHello")
|
||||||
|
)
|
||||||
|
|
||||||
def test_cannot_parse_clienthello(self, tctx: context.Context):
|
def test_cannot_parse_clienthello(self, tctx: context.Context):
|
||||||
"""Test the scenario where we cannot parse the ClientHello"""
|
"""Test the scenario where we cannot parse the ClientHello"""
|
||||||
playbook, client_layer, tssl_client = make_client_tls_layer(tctx)
|
playbook, client_layer, tssl_client = make_client_tls_layer(tctx)
|
||||||
|
Loading…
Reference in New Issue
Block a user