伪造 X-Forwarded-For

来源:互联网 发布:辣条网络用语 编辑:程序博客网 时间:2024/06/06 09:39

简单粗暴上代码!

import randomimport requestsip_address = ['125.92.32.81', '125.92.32.82', '125.92.32.83']headers = {"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",           "Accept-Encoding": "gzip, deflate",           "Accept-Language": "zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3",           "Connection": "keep-alive",           "X-Forwarded-For": ip_address[random.randint(0, len(ip_address) - 1)],           "Content-Length": "31",           "Content-Type": "application/x-www-form-urlencoded",           "User-Agent": "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko/20100101 Firefox/11.0"}url = 'http://...'html = requests.get(url, headers).content
原创粉丝点击