为前女友智商捉急, iphone 被人抢了,联系我时我赶紧开启了丢失模式,并留下了我的联系方式,就是为了等这个钓鱼网站,现在钓鱼网站发过来了,有闲心的就和我一起发无效内容吧 恶心恶心这些骗子也好 我使用了 py 加 xx-net 切换 ip 不停的提交几万次了
http://www.apple-chinaid.com.cn/ 代码如下
import urllib.request import time from retrying import retry proxy_support = urllib.request.ProxyHandler({'http': 'localhost:8087'}) opener = urllib.request.build_opener(proxy_support) urllib.request.install_opener(opener) i = 0 @retry def post(i): url = 'http://www.apple-chinaid.com.cn/ht/savei.asp' headers = {'Cookie': 'ASPSESSIOnIDCQDBBRQQ=KLOLFGKBKEPJCHLPLOEGBIGC', 'Origin': 'http://www.apple-chinaid.com.cn', 'Referer':'http://www.apple-chinaid.com.cn/cn/wap2.asp', } while 1: i += 1 print("第%d 次" % i) data = dict(u="丢你老母 @大傻逼"+str(i[0]), p='哈哈惊喜吗没有密码') req = urllib.request.Request(url, data=urllib.parse.urlencode(data).encode(), headers=headers) urllib.request.urlopen(req).read().decode('gbk') print("提交成功") # if(i%10==0): # time.sleep(60) if __name__ == '__main__': post(i) 