Skip to content

Instantly share code, notes, and snippets.

View HenryShan's full-sized avatar

Henry Shan HenryShan

View GitHub Profile
@HenryShan
HenryShan / ddnsserver.py
Created March 29, 2023 04:38 — 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