Hon3yhd Proxy 95%

if == ' main ': start_proxy()

def start_proxy(proxy_host='0.0.0.0', proxy_port=8888, target_host='example.com', target_port=80): server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) server.bind((proxy_host, proxy_port)) server.listen(5) print(f"Honey proxy listening on proxy_host:proxy_port") while True: client_socket, addr = server.accept() print(f"Connection from addr") threading.Thread(target=handle_client, args=(client_socket, target_host, target_port)).start() hon3yhd proxy

hon3yhd --help hon3yhd -h Or if it's a binary, inspect it: target_port=80): server = socket.socket(socket.AF_INET

python3 honey_proxy.py Then point your browser or tool to localhost:8888 – all traffic gets logged. Try checking its help or man page: hon3yhd proxy