Skip to content

Instantly share code, notes, and snippets.

View jsfan's full-sized avatar

Christian jsfan

  • Australia
View GitHub Profile
@jsfan
jsfan / bindify.py
Last active August 31, 2023 18:34 — forked from gmr/bindify.py
Convert tinydns zone files to bind
#!/usr/bin/env python
import argparse
import binascii
import collections
import logging
from os import path
import re
from time import time
logger = logging.getLogger(__name__)