steam永久关闭令牌python脚本3秒1000个

朋友让我给写个小脚本,关闭1w个steam的账号,就去研究了一下steam,整体还是比较简单的,主要是解密一个参数就行了,最后测试了一下 差不多3秒可以关闭900多个,不过啊,耽误时间的就是接收邮件。

话不多说直接上代码,为保证滥用,放了一部分,另外一部分进群找我拿:        

def open_email_yanzheng(cookies):

    headers = {
        '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',
        'Accept-Language': 'zh-CN,zh;q=0.9',
        'Cache-Control': 'max-age=0',
        'Connection': 'keep-alive',
       
        'Origin': 'https://store.steampowered.com',
        'Referer': 'https://store.steampowered.com/twofactor/manage',
        'Sec-Fetch-Dest': 'document',
        'Sec-Fetch-Mode': 'navigate',
        'Sec-Fetch-Site': 'same-origin',
        'Sec-Fetch-User': '?1',
        'Upgrade-Insecure-Requests': '1',
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36',
        'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
        'sec-ch-ua-mobile': '?0',
        'sec-ch-ua-platform': '"Windows"',
    }

    response = requests.post('https://store.steampowered.com/twofactor/manage_action', cookies=cookies, headers=headers,allow_redirects=False
                            )

进群sososo:

猜你喜欢

转载自blog.csdn.net/m0_38124502/article/details/125034663