Skip to content

Instantly share code, notes, and snippets.

@obito02
obito02 / udp2tcp_dns.py
Created June 24, 2024 05:09 — forked from 4ft35t/udp2tcp_dns.py
Convert DNS UDP to TCP
#!/usr/bin/python
import socket, os, select, struct
import errno
import logging
from logging import info, warn, error
logging.root.setLevel(logging.INFO)