29 lines
871 B
Python
29 lines
871 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.
|
|
"""
|
|
import logging
|
|
|
|
from proxy.common.utils import socket_connection
|
|
from proxy.common.constants import DEFAULT_LOG_FORMAT, DEFAULT_BUFFER_SIZE
|
|
|
|
|
|
logging.basicConfig(level=logging.INFO, format=DEFAULT_LOG_FORMAT)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
if __name__ == '__main__':
|
|
with socket_connection(('127.0.0.1', 12345)) as client:
|
|
while True:
|
|
client.send(b'hello')
|
|
data = client.recv(DEFAULT_BUFFER_SIZE)
|
|
if data is None:
|
|
break
|
|
logger.info(data)
|