mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-05 08:08:03 +08:00
81 lines
2.0 KiB
Python
Executable File
81 lines
2.0 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from urllib import request, parse
|
|
import logging
|
|
import sys
|
|
import json
|
|
from datetime import datetime
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
logger = logging.getLogger(__name__)
|
|
|
|
GFW_TRANSLATED_URL = "https://raw.githubusercontent.com/NateScarlet/gfwlist.acl/master/gfwlist.acl.json"
|
|
CHINA_IP_LIST_URL = "https://raw.githubusercontent.com/17mon/china_ip_list/master/china_ip_list.txt"
|
|
CUSTOM_BYPASS = [
|
|
"127.0.0.1",
|
|
"10.0.0.0/8",
|
|
"172.16.0.0/12",
|
|
"192.168.0.0/16",
|
|
"fd00::/8",
|
|
]
|
|
CUSTOM_PROXY = [
|
|
|
|
]
|
|
|
|
|
|
def fetch_url_content(url):
|
|
logger.info("FETCHING {}".format(url))
|
|
r = request.urlopen(url)
|
|
return r.read()
|
|
|
|
|
|
def write_gfw_list(fp):
|
|
gfw_json = fetch_url_content(GFW_TRANSLATED_URL)
|
|
gfw_obj = json.loads(gfw_json)
|
|
for line in gfw_obj["blacklist"]:
|
|
fp.write(line.encode("utf-8"))
|
|
fp.write(b"\n")
|
|
|
|
|
|
def write_china_ip(fp):
|
|
china_ip_list = fetch_url_content(CHINA_IP_LIST_URL)
|
|
fp.write(china_ip_list)
|
|
fp.write(b"\n")
|
|
|
|
|
|
try:
|
|
output_file_path = sys.argv[1]
|
|
except:
|
|
output_file_path = "shadowsocks.acl"
|
|
|
|
logger.info("WRITING {}".format(output_file_path))
|
|
|
|
with open(output_file_path, 'wb') as fp:
|
|
now = datetime.now()
|
|
|
|
fp.write(b"# Generated by genacl.py\n")
|
|
fp.write("# Time: {}\n".format(now.isoformat()).encode("utf-8"))
|
|
fp.write(b"\n")
|
|
|
|
fp.write(b"[proxy_all]\n")
|
|
fp.write(b"\n[proxy_list]\n")
|
|
write_gfw_list(fp)
|
|
fp.write(b"\n[bypass_list]\n")
|
|
write_china_ip(fp)
|
|
|
|
if len(CUSTOM_BYPASS) > 0:
|
|
logger.info("CUSTOM_BYPASS {} lines".format(len(CUSTOM_BYPASS)))
|
|
fp.write(b"\n[bypass_list]\n")
|
|
for a in CUSTOM_BYPASS:
|
|
fp.write(a.encode("utf-8"))
|
|
fp.write(b"\n")
|
|
|
|
if len(CUSTOM_PROXY) > 0:
|
|
logger.info("CUSTOM_PROXY {} lines".format(len(CUSTOM_PROXY)))
|
|
fp.write(b"\n[proxy_list]\n")
|
|
for a in CUSTOM_PROXY:
|
|
fp.write(a.encode("utf-8"))
|
|
fp.write(b"\n")
|
|
|
|
logger.info("DONE")
|