http://lomteqnxehqjdemqgzse7xchjlusgnpoxq2fpmz3yuukyfzc22t5gwyd.onion/gils_projects/commits/jira-projects/ADBLK/8920a833010005ba406aa4c137b7efe40530c1c2.html
. # +''' # + # +import hashlib # +import os # +import requests # +import subprocess # +import sqlite3 # +import sys # + # + # +restart_cmd = ["pihole", "restartdns", "reload-lists"] # + # +def fetchList(url): # + ''' Fetch a text file and return a list of lines # + ''' # + r = requests.get(url) # + return r.text.split("\n") # + # + # +def writeEntries(domain_list,comment): # + ''' Write exact whitelist entries into the gravity database # + ''' # + conn =...