mirror of
https://github.com/3proxy/3proxy.git
synced 2026-09-03 05:15:48 +08:00
tcppm and udppm forward a port each, so test both directions of each: a request through the TCP mapper reaching its target, a datagram through the UDP one coming back answered, and a mapper whose rules deny the client answering nothing. tlspr takes its destination from the name in the handshake, so point that name at 127.0.0.1 with nsrecord and give the certificate the same name: the name then both chooses where the request goes and is what the client checks. dnspr answers from its cache, including the documented 0.0.0.0 record, which is handed out as an address rather than withheld. auto is asked to serve an HTTP proxy request, SOCKS4, SOCKS5 and a TLS handshake on one port, and to make nothing of a request that is none of them. Its protocols reach different places, so there are two origins. The SOCKS UDP association was only checked for the port it binds. Send datagrams through it as well, large and small, and check a second association gets its own port - and that one bound inside an intport range still relays. A UDP service has no socket to connect to, so readiness is found by asking until it answers rather than racing it.
75 lines
2.5 KiB
Python
75 lines
2.5 KiB
Python
"""auto: one port that works out which protocol the client is speaking.
|
|
|
|
Two origins, because the protocols reach different places: an HTTP or SOCKS
|
|
client names its own destination, while a TLS client names a host in the
|
|
handshake and the service supplies the port.
|
|
"""
|
|
|
|
|
|
def run(t):
|
|
certs = t.certs()
|
|
plain = t.free_port()
|
|
port = t.free_port()
|
|
secure = t.free_port() if certs else None
|
|
|
|
tls_origin = ""
|
|
if certs:
|
|
tls_origin = f"""
|
|
flush
|
|
ssl_server_cert {certs.server}
|
|
ssl_server_key {certs.server_key}
|
|
ssl_serv
|
|
auth iponly
|
|
allow *
|
|
http * /echo* echo
|
|
httpsrv -p{secure}
|
|
ssl_noserv"""
|
|
|
|
ports = [plain, port] + ([secure] if certs else [])
|
|
server = t.start("auto", f"""
|
|
log
|
|
auth iponly
|
|
allow *
|
|
http * /echo* echo
|
|
httpsrv -p{plain}
|
|
{tls_origin}
|
|
|
|
flush
|
|
nserver 127.0.0.1
|
|
nscache 1024
|
|
nsrecord sni.test 127.0.0.1
|
|
auth iponly
|
|
allow *
|
|
auto -p{port}{f' -P{secure}' if certs else ''}
|
|
""", ports=ports)
|
|
|
|
url = f"http://127.0.0.1:{plain}/echo"
|
|
at = f"127.0.0.1:{port}"
|
|
|
|
# --- as an HTTP proxy -------------------------------------------------
|
|
r = t.http(url, proxy=at)
|
|
t.eq(200, r.status, "the same port serves an HTTP proxy request")
|
|
t.contains(r, "path=/echo", "the origin sees it")
|
|
t.contains(t.http(url, proxy=at, method="POST", body="x=1"), "method=POST",
|
|
"a POST is recognised as HTTP too")
|
|
|
|
# --- as a SOCKS proxy --------------------------------------------------
|
|
r = t.socks_http(at, url)
|
|
t.eq(200, r.status, "the same port serves SOCKS5")
|
|
t.contains(r, "path=/echo", "the origin sees the SOCKS request")
|
|
t.eq(200, t.socks_http(at, url, socks4=True).status,
|
|
"and SOCKS4 on the same port")
|
|
|
|
# --- as a name-directed TLS proxy --------------------------------------
|
|
if certs and "Unknown command" not in server.output():
|
|
r = t.https(f"https://sni.test:{port}/echo", ca=certs.ca, strict=False,
|
|
connect_to=("127.0.0.1", port))
|
|
t.eq(200, r.status, "and a TLS handshake, routed by the name it carries")
|
|
t.contains(r, "path=/echo", "which reaches the TLS origin")
|
|
else:
|
|
t.skip("auto over TLS (no SSL support, or no openssl to make certificates)")
|
|
|
|
# --- what it is not ----------------------------------------------------
|
|
t.not_contains(t.raw(port, "GIBBERISH\r\n\r\n"), "200 OK",
|
|
"nonsense is not served as anything")
|