V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
cnit

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

  •  
  •   cnit · Nov 1, 2022 · 2465 views
    This topic created in 1274 days ago, the information mentioned may be changed or developed.
    # 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

    No Comments Yet
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3532 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 776ms · UTC 11:58 · PVG 19:58 · LAX 04:58 · JFK 07:58
    ♥ Do have faith in what you're doing.