30 lines
973 B
Python
30 lines
973 B
Python
|
# -*- 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.
|
||
|
"""
|
||
|
from proxy.core.connection import TcpServerConnection
|
||
|
from proxy.common.constants import DEFAULT_BUFFER_SIZE
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
client = TcpServerConnection('::', 12345)
|
||
|
client.connect()
|
||
|
client.wrap('example.com', ca_file='ca-cert.pem')
|
||
|
# wrap() will by default set connection to nonblocking
|
||
|
# flip it back to blocking
|
||
|
client.connection.setblocking(True)
|
||
|
try:
|
||
|
while True:
|
||
|
client.send(b'hello')
|
||
|
data = client.recv(DEFAULT_BUFFER_SIZE)
|
||
|
if data is None:
|
||
|
break
|
||
|
print(data.tobytes())
|
||
|
finally:
|
||
|
client.close()
|