Python 大法好, AnyDesk 强制国内节点加速脚本

2022-11-01 12:01:00 +08:00
 cnit
# anydesk cn relay scan https://github.com/bestK/anydesk-cn-relay-scan
from bs4 import BeautifulSoup
import httpx

url = 'https://domain.glass/net.anydesk.com.cn'
# anydesk 配置文件路径
anydesk_conf = 'C:\\Users\\WIN10\\AppData\\Roaming\\AnyDesk\\system.conf'
 
client = httpx.Client( http2=True, verify=False)
headers = {
    'authority': 'domain.glass',
    'method': 'GET',
    'path': '/net.anydesk.com.cn',
    'scheme': 'https',
    'upgrade-insecure-requests': '1',
    'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36',
    'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
    'sec-fetch-site': 'none',
    'sec-fetch-mode': 'navigate',
    'sec-fetch-dest': 'document',
    'accept-language': 'zh-CN,zh;q=0.9'
}

resp = client.get(url, headers=headers)
soup = BeautifulSoup(resp,"html.parser")

with open(anydesk_conf, mode='a') as conf:
    for a in soup.find_all('a'):
        if a.string != None and a.string.startswith('relay'):
           print(a.string)
           conf.write('\n')
           conf.write("ad.anynet.last_relay={}:80:443:6568".format(a.string))  

conf.close()           

灵感来源 https://www.v2ex.com/t/869623#reply5 @basncy

1392 次点击
所在节点    分享发现
0 条回复

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/891722

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX