2020-07-08 11:08:58 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
proxy.py
|
|
|
|
~~~~~~~~
|
|
|
|
⚡⚡⚡ Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on
|
|
|
|
Network monitoring, controls & Application development, testing, debugging.
|
|
|
|
|
|
|
|
:copyright: (c) 2013-present by Abhinav Singh and contributors.
|
|
|
|
:license: BSD, see LICENSE for more details.
|
|
|
|
"""
|
|
|
|
import time
|
|
|
|
|
2020-07-09 16:01:29 +00:00
|
|
|
from proxy.core.acceptor import AcceptorPool
|
2020-07-08 11:08:58 +00:00
|
|
|
from proxy.core.connection import TcpClientConnection
|
|
|
|
from proxy.common.flags import Flags
|
|
|
|
from proxy.common.utils import wrap_socket
|
|
|
|
|
2020-07-09 16:01:29 +00:00
|
|
|
from examples.base_echo_server import BaseEchoServerHandler
|
2020-07-08 11:08:58 +00:00
|
|
|
|
|
|
|
|
2020-07-09 16:01:29 +00:00
|
|
|
class EchoSSLServerHandler(BaseEchoServerHandler): # type: ignore
|
|
|
|
"""Wraps client socket during initialization."""
|
2020-07-08 11:08:58 +00:00
|
|
|
|
|
|
|
def initialize(self) -> None:
|
|
|
|
# Acceptors don't perform TLS handshake. Perform the same
|
|
|
|
# here using wrap_socket() utility.
|
|
|
|
assert self.flags.keyfile is not None and self.flags.certfile is not None
|
2020-07-09 16:01:29 +00:00
|
|
|
conn = wrap_socket(
|
|
|
|
self.client.connection, # type: ignore
|
|
|
|
self.flags.keyfile,
|
|
|
|
self.flags.certfile)
|
2020-07-08 11:08:58 +00:00
|
|
|
conn.setblocking(False)
|
|
|
|
# Upgrade plain TcpClientConnection to SSL connection object
|
2020-07-09 16:01:29 +00:00
|
|
|
self.client = TcpClientConnection(
|
|
|
|
conn=conn, addr=self.client.addr) # type: ignore
|
2020-07-08 11:08:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
def main() -> None:
|
|
|
|
# This example requires `threadless=True`
|
|
|
|
pool = AcceptorPool(
|
|
|
|
flags=Flags(
|
|
|
|
port=12345,
|
|
|
|
num_workers=1,
|
|
|
|
threadless=True,
|
|
|
|
keyfile='https-key.pem',
|
|
|
|
certfile='https-signed-cert.pem'),
|
|
|
|
work_klass=EchoSSLServerHandler)
|
|
|
|
try:
|
|
|
|
pool.setup()
|
|
|
|
while True:
|
|
|
|
time.sleep(1)
|
|
|
|
finally:
|
|
|
|
pool.shutdown()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|