Skip to content

Instantly share code, notes, and snippets.

@infamalex
infamalex / ddnsserver.py
Created May 14, 2022 13:39 — forked from pklaus/ddnsserver.py
Simple DNS server (UDP and TCP) in Python using dnslib.py
#!/usr/bin/env python
"""
LICENSE http://www.apache.org/licenses/LICENSE-2.0
"""
import argparse
import datetime
import sys
import time
import threading