mirror of
https://github.com/smallfawn/QLScriptPublic.git
synced 2026-01-15 15:01:14 +08:00
Compare commits
40 Commits
c93ea270ff
...
d84cadac3c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d84cadac3c | ||
|
|
36dcb1938a | ||
|
|
04e253c316 | ||
|
|
6e2478b54d | ||
|
|
8845351e73 | ||
|
|
9be2a5d2aa | ||
|
|
014bd292b4 | ||
|
|
86731f4ab6 | ||
|
|
1e6a61ca19 | ||
|
|
553d192966 | ||
|
|
721de82ee3 | ||
|
|
18fdd81e04 | ||
|
|
addc791b15 | ||
|
|
9f16b1000f | ||
|
|
faadf7cbd6 | ||
|
|
915535ea01 | ||
|
|
0b96058b28 | ||
|
|
323f8a0491 | ||
|
|
312d59d102 | ||
|
|
72a3d946cc | ||
|
|
92ea35c36e | ||
|
|
5563b23bbc | ||
|
|
e78b88fcb1 | ||
|
|
d3503bc301 | ||
|
|
24874bd617 | ||
|
|
765211c9cf | ||
|
|
8984855cbd | ||
|
|
967984cf3a | ||
|
|
dde335324d | ||
|
|
2c5182d97a | ||
|
|
76fc7a7362 | ||
|
|
bd6077fd32 | ||
|
|
2515a72923 | ||
|
|
a78649c37d | ||
|
|
73b60f33f8 | ||
|
|
86c5e030fc | ||
|
|
9f7cd0e7d5 | ||
|
|
605e1f81cf | ||
|
|
b4c312eef3 | ||
|
|
0538c007cf |
@ -1,80 +1,80 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
# @Time : 18:57
|
||||
# @Author : yuxian
|
||||
# @Email : 1503889663@qq.com
|
||||
# @File : Coca.py
|
||||
# @SoftWare : PyCharm
|
||||
# 可口可乐吧小程序,抓包authorization(全部内容 copy即可),填入环境变量Coca中,多账号换行或@隔开
|
||||
import json, os, hashlib, random, time, requests as r
|
||||
|
||||
|
||||
def UF(): return f"Mozilla/5.0 (iPhone; CPU iPhone OS {f'{random.randint(12, 15)}.{random.randint(0, 6)}.{random.randint(0, 9)}'} like Mac OS X) AppleWebKit/{f'{random.randint(600, 700)}.{random.randint(1, 4)}.{random.randint(1, 5)}'} (KHTML, like Gecko) Mobile/15E148 MicroMessenger/7.0.20(0x16001422) NetType/WIFI Language/zh_CN"
|
||||
|
||||
|
||||
def generate_random_string_and_timestamp():
|
||||
T = ''.join(random.choices('0123456789abcdefghijklmnopqrstuvwxyz', k=8))
|
||||
d = str(int(time.time() * 1000))
|
||||
return T, d
|
||||
|
||||
|
||||
def sha256_encrypt(data):
|
||||
hash_object = hashlib.sha256()
|
||||
hash_object.update(data.encode('utf-8'))
|
||||
hex_dig = hash_object.hexdigest()
|
||||
return hex_dig
|
||||
|
||||
|
||||
def get_header(url1):
|
||||
T, d = generate_random_string_and_timestamp()
|
||||
message = url1.replace("https://koplus.icoke.cn/cre-bff", "")
|
||||
encrypted_data = sha256_encrypt(message + T + d + "apyuc3#7%m4*")
|
||||
headers = {"x-sg-id": T, "x-sg-timestamp": d, "x-sg-signature": encrypted_data}
|
||||
return headers
|
||||
|
||||
|
||||
U = "https://koplus.icoke.cn/cre-bff/wechat/"
|
||||
P = os.environ.get("Coca")
|
||||
if P and P != "":
|
||||
C = P.split("\n") if "\n" in P else P.split("@")
|
||||
A = 1
|
||||
for B in C:
|
||||
try:
|
||||
H = {
|
||||
"Host": "koplus.icoke.cn",
|
||||
"Connection": "keep-alive",
|
||||
"xweb_xhr": "1",
|
||||
"Authorization": B,
|
||||
"User-Agent": UF(),
|
||||
"Content-Type": "application/json",
|
||||
"Accept": "*/*",
|
||||
"Accept-Language": "*",
|
||||
"Sec-Fetch-Site": "cross-site",
|
||||
"Sec-Fetch-Mode": "cors",
|
||||
"Sec-Fetch-Dest": "empty",
|
||||
"Referer": "https://servicewechat.com/wxa5811e0426a94686/364/page-frame.html",
|
||||
"Accept-Encoding": "gzip, deflate, br"
|
||||
}
|
||||
url = f"{U}checkin"
|
||||
H.update(get_header(url))
|
||||
signReq = r.post(url=url, headers=H)
|
||||
signResp = json.loads(signReq.text)
|
||||
print(f"🎉开始签到账号:{A}🎉")
|
||||
A += 1
|
||||
if signResp["meta"]["transactionPoint"]:
|
||||
print(f"⭕签到成功,获得{str(int(signResp['meta']['transactionPoint']) / 10)}个快乐瓶⭕")
|
||||
elif signResp["meta"]["transactionPoint"] is None:
|
||||
print("❗今日已签到,请勿重复签到❗")
|
||||
else:
|
||||
print("❌出现未知错误,签到失败❌")
|
||||
time.sleep(3)
|
||||
url = f"{U}profile"
|
||||
H.update(get_header(url))
|
||||
qReq = r.get(url=url, headers=H)
|
||||
qResp = json.loads(qReq.text)
|
||||
print(f"🎉开始查询账号积分🎉")
|
||||
if qResp["data"]:
|
||||
print(f"🎆账号快乐瓶总额:{str(int(qResp['data']['point']) / 10)}🎆")
|
||||
else:
|
||||
print("❌出现未知错误,查询失败❌")
|
||||
except:
|
||||
print("⚠️⚠️⚠️脚本报错执行下一个账号⚠️⚠️⚠️")
|
||||
# -*- encoding: utf-8 -*-
|
||||
# @Time : 18:57
|
||||
# @Author : yuxian
|
||||
# @Email : 1503889663@qq.com
|
||||
# @File : Coca.py
|
||||
# @SoftWare : PyCharm
|
||||
# 可口可乐吧小程序,抓包authorization(全部内容 copy即可),填入环境变量Coca中,多账号换行或@隔开
|
||||
import json, os, hashlib, random, time, requests as r
|
||||
|
||||
|
||||
def UF(): return f"Mozilla/5.0 (iPhone; CPU iPhone OS {f'{random.randint(12, 15)}.{random.randint(0, 6)}.{random.randint(0, 9)}'} like Mac OS X) AppleWebKit/{f'{random.randint(600, 700)}.{random.randint(1, 4)}.{random.randint(1, 5)}'} (KHTML, like Gecko) Mobile/15E148 MicroMessenger/7.0.20(0x16001422) NetType/WIFI Language/zh_CN"
|
||||
|
||||
|
||||
def generate_random_string_and_timestamp():
|
||||
T = ''.join(random.choices('0123456789abcdefghijklmnopqrstuvwxyz', k=8))
|
||||
d = str(int(time.time() * 1000))
|
||||
return T, d
|
||||
|
||||
|
||||
def sha256_encrypt(data):
|
||||
hash_object = hashlib.sha256()
|
||||
hash_object.update(data.encode('utf-8'))
|
||||
hex_dig = hash_object.hexdigest()
|
||||
return hex_dig
|
||||
|
||||
|
||||
def get_header(url1):
|
||||
T, d = generate_random_string_and_timestamp()
|
||||
message = url1.replace("https://koplus.icoke.cn/cre-bff", "")
|
||||
encrypted_data = sha256_encrypt(message + T + d + "apyuc3#7%m4*")
|
||||
headers = {"x-sg-id": T, "x-sg-timestamp": d, "x-sg-signature": encrypted_data}
|
||||
return headers
|
||||
|
||||
|
||||
U = "https://koplus.icoke.cn/cre-bff/wechat/"
|
||||
P = os.environ.get("Coca")
|
||||
if P and P != "":
|
||||
C = P.split("\n") if "\n" in P else P.split("@")
|
||||
A = 1
|
||||
for B in C:
|
||||
try:
|
||||
H = {
|
||||
"Host": "koplus.icoke.cn",
|
||||
"Connection": "keep-alive",
|
||||
"xweb_xhr": "1",
|
||||
"Authorization": B,
|
||||
"User-Agent": UF(),
|
||||
"Content-Type": "application/json",
|
||||
"Accept": "*/*",
|
||||
"Accept-Language": "*",
|
||||
"Sec-Fetch-Site": "cross-site",
|
||||
"Sec-Fetch-Mode": "cors",
|
||||
"Sec-Fetch-Dest": "empty",
|
||||
"Referer": "https://servicewechat.com/wxa5811e0426a94686/364/page-frame.html",
|
||||
"Accept-Encoding": "gzip, deflate, br"
|
||||
}
|
||||
url = f"{U}checkin"
|
||||
H.update(get_header(url))
|
||||
signReq = r.post(url=url, headers=H)
|
||||
signResp = json.loads(signReq.text)
|
||||
print(f"🎉开始签到账号:{A}🎉")
|
||||
A += 1
|
||||
if signResp["meta"]["transactionPoint"]:
|
||||
print(f"⭕签到成功,获得{str(int(signResp['meta']['transactionPoint']) / 10)}个快乐瓶⭕")
|
||||
elif signResp["meta"]["transactionPoint"] is None:
|
||||
print("❗今日已签到,请勿重复签到❗")
|
||||
else:
|
||||
print("❌出现未知错误,签到失败❌")
|
||||
time.sleep(3)
|
||||
url = f"{U}profile"
|
||||
H.update(get_header(url))
|
||||
qReq = r.get(url=url, headers=H)
|
||||
qResp = json.loads(qReq.text)
|
||||
print(f"🎉开始查询账号积分🎉")
|
||||
if qResp["data"]:
|
||||
print(f"🎆账号快乐瓶总额:{str(int(qResp['data']['point']) / 10)}🎆")
|
||||
else:
|
||||
print("❌出现未知错误,查询失败❌")
|
||||
except:
|
||||
print("⚠️⚠️⚠️脚本报错执行下一个账号⚠️⚠️⚠️")
|
||||
@ -3,8 +3,9 @@
|
||||
购买地址
|
||||
http://shop.smallfawn.top/
|
||||
|
||||
|
||||
|
||||
# 定制脚本 20起步 看难度定价 支持一些滑块 设备指纹之类的
|
||||
# 联系QQ 860562056 一天只接3单
|
||||
# 排单网站目前还没做出来
|
||||
|
||||
|
||||
本仓库魔改通知 smallfawnPushWhite白名单 smallfawnPushBlack黑名单 二选一
|
||||
@ -14,7 +15,7 @@ export smallfawnPushWhite="脚本名字@脚本名字2"
|
||||
# 组织基地:QQ群1021185005
|
||||
# 青龙面板拉库命令
|
||||
``````
|
||||
ql repo https://mirror.ghproxy.com/https://github.com/smallfawn/QLScriptPublic.git backup main
|
||||
ql repo https://ghproxy.net/https://github.com/smallfawn/QLScriptPublic.git backup main
|
||||
``````
|
||||
自用青龙docker搭建命令
|
||||
``````
|
||||
|
||||
295
anmuxi.py
295
anmuxi.py
@ -1,295 +0,0 @@
|
||||
|
||||
# !/usr/bin/python3
|
||||
# -- coding: utf-8 --
|
||||
# cron "30 9 * * *" script-path=xxx.py,tag=匹配cron用
|
||||
# const $ = new Env('安慕希小程序')
|
||||
import json
|
||||
import os
|
||||
import random
|
||||
import time
|
||||
from datetime import datetime, time as times
|
||||
import requests
|
||||
from requests.packages.urllib3.exceptions import InsecureRequestWarning
|
||||
# 禁用安全请求警告
|
||||
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
|
||||
|
||||
IS_DEV = False
|
||||
if os.path.isfile('DEV_ENV.py'):
|
||||
import DEV_ENV
|
||||
|
||||
IS_DEV = True
|
||||
if os.path.isfile('notify.py'):
|
||||
from notify import send
|
||||
|
||||
print("加载通知服务成功!")
|
||||
else:
|
||||
print("加载通知服务失败!")
|
||||
send_msg = ''
|
||||
one_msg = ''
|
||||
|
||||
|
||||
def Log(cont=''):
|
||||
global send_msg, one_msg
|
||||
print(cont)
|
||||
if cont:
|
||||
one_msg += f'{cont}\n'
|
||||
send_msg += f'{cont}\n'
|
||||
|
||||
|
||||
class RUN:
|
||||
def __init__(self, info, index):
|
||||
global one_msg
|
||||
one_msg = ''
|
||||
split_info = info.split('@')
|
||||
self.access_token = split_info[0]
|
||||
len_split_info = len(split_info)
|
||||
last_info = split_info[len_split_info - 1]
|
||||
self.send_UID = None
|
||||
if len_split_info > 0 and "UID_" in last_info:
|
||||
print('检测到设置了UID')
|
||||
print(last_info)
|
||||
self.send_UID = last_info
|
||||
self.index = index + 1
|
||||
# print(self.access_token)
|
||||
self.UA = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 MicroMessenger/7.0.20.1781(0x6700143B) NetType/WIFI MiniProgramEnv/Windows WindowsWechat/WMPF WindowsWechat(0x6309080f) XWEB/8555'
|
||||
# if ENV_NAME == 'YL_ZXBQL':
|
||||
# appid = "wx06af0ef532292cd3"
|
||||
# scene = "1037"
|
||||
# scene = "1037"
|
||||
self.headers = {
|
||||
'Host': 'amxshop.yili.com',
|
||||
'accesstoken': self.access_token,
|
||||
'scene': '1302',
|
||||
'xweb_xhr': '1',
|
||||
'user-agent': self.UA,
|
||||
'content-type': 'application/x-www-form-urlencoded',
|
||||
'accept': '*/*',
|
||||
'sec-fetch-site': 'cross-site',
|
||||
'sec-fetch-mode': 'cors',
|
||||
'sec-fetch-dest': 'empty',
|
||||
'referer': 'https://servicewechat.com/wxf2a6206f7e2fd712/664/page-frame.html',
|
||||
'accept-language': 'zh-CN,zh;q=0.9',
|
||||
}
|
||||
self.s = requests.session()
|
||||
self.s.verify = False
|
||||
self.baseUrl = 'https://amxshop.yili.com/api/'
|
||||
|
||||
|
||||
def make_request(self, url, method='post', headers={}, data={}, params=None):
|
||||
if headers == {}:
|
||||
headers = self.headers
|
||||
try:
|
||||
if method.lower() == 'get':
|
||||
response = self.s.get(url, headers=headers, verify=False, params=params)
|
||||
elif method.lower() == 'post':
|
||||
response = self.s.post(url, headers=headers, json=data, params=params, verify=False)
|
||||
else:
|
||||
raise ValueError("不支持的请求方法❌: " + method)
|
||||
return response.json()
|
||||
except requests.exceptions.RequestException as e:
|
||||
print("请求异常❌:", e)
|
||||
except ValueError as e:
|
||||
print("值错误或不支持的请求方法❌:", e)
|
||||
except Exception as e:
|
||||
print("发生了未知错误❌:", e)
|
||||
|
||||
def get_user_info(self):
|
||||
act_name = '获取用户信息'
|
||||
Log(f'\n====== {act_name} ======')
|
||||
url = f"{self.baseUrl}user/getUser"
|
||||
response = self.make_request(url,method='get')
|
||||
if response.get('code', -1) == 200:
|
||||
print(f'{act_name}成功!✅')
|
||||
data = response.get('data',{})
|
||||
user = data.get('user',{})
|
||||
user_id = user.get('id')
|
||||
user_name = user.get('name')
|
||||
mobilePhone = user.get('mobilePhone')
|
||||
myCode = user.get('myCode')
|
||||
|
||||
mobile = mobilePhone[:3] + "*" * 4 + mobilePhone[7:]
|
||||
Log(f">用户名:{user_name}\n>手机号:{mobile}")
|
||||
|
||||
return True
|
||||
elif not response:
|
||||
print(f">账号 {self.index}: ck过期 请重新抓取 access-token")
|
||||
return False
|
||||
else:
|
||||
print(response)
|
||||
return False
|
||||
|
||||
def get_Point(self,END=False):
|
||||
act_name = '获取积分信息'
|
||||
if not END:Log(f'\n====== {act_name} ======')
|
||||
url = f"{self.baseUrl}user/score"
|
||||
response = self.make_request(url,method='get')
|
||||
if response.get('code', -1) == 200:
|
||||
data = response.get('data', '')
|
||||
print(f'{act_name}成功!✅')
|
||||
if END:
|
||||
Log(f'执行后积分:【{data}】')
|
||||
else:
|
||||
Log(f'当前积分:【{data}】')
|
||||
return True
|
||||
else:
|
||||
print(response)
|
||||
return False
|
||||
|
||||
def daily_sign(self):
|
||||
act_name = '签到'
|
||||
Log(f'\n====== {act_name} ======')
|
||||
url = f"{self.baseUrl}user/daily/sign?exParams=false"
|
||||
response = self.make_request(url,method='get')
|
||||
if response.get('code', -1) == 200:
|
||||
data = response.get('data',{})
|
||||
point = data.get('dailySign', {}).get('bonusPoint', '')
|
||||
print(f'{act_name}成功!✅')
|
||||
Log(f'获得积分:【{point}】')
|
||||
return True
|
||||
else:
|
||||
print(response)
|
||||
return False
|
||||
|
||||
def get_sign_status(self):
|
||||
act_name = '获取签到信息'
|
||||
Log(f'\n====== {act_name} ======')
|
||||
url = f"{self.baseUrl}user/sign/status"
|
||||
response = self.make_request(url,method='get')
|
||||
if response.get('code', -1) == 200:
|
||||
data = response.get('data',{})
|
||||
signed = data.get('signed','')
|
||||
signDays = data.get('signDays','')
|
||||
print(f'{act_name}成功!✅')
|
||||
Log(f'今日:【{"已签到" if signed else "未签到"}】')
|
||||
print(f'累计签到:【{signDays}】天')
|
||||
if not signed:
|
||||
self.daily_sign()
|
||||
return True
|
||||
else:
|
||||
print(response)
|
||||
return False
|
||||
|
||||
|
||||
def main(self):
|
||||
Log(f"\n开始执行第{self.index}个账号--------------->>>>>")
|
||||
if self.get_user_info():
|
||||
# random_delay()
|
||||
self.get_Point()
|
||||
random_delay()
|
||||
self.get_sign_status()
|
||||
random_delay()
|
||||
self.get_Point(True)
|
||||
# self.daily_sign()
|
||||
|
||||
self.sendMsg()
|
||||
return True
|
||||
else:
|
||||
self.sendMsg()
|
||||
return False
|
||||
|
||||
def sendMsg(self):
|
||||
if self.send_UID:
|
||||
push_res = CHERWIN_TOOLS.wxpusher(self.send_UID, one_msg, APP_NAME)
|
||||
print(push_res)
|
||||
|
||||
|
||||
def random_delay(min_delay=1, max_delay=5):
|
||||
"""
|
||||
在min_delay和max_delay之间产生一个随机的延时时间,然后暂停执行。
|
||||
参数:
|
||||
min_delay (int/float): 最小延时时间(秒)
|
||||
max_delay (int/float): 最大延时时间(秒)
|
||||
"""
|
||||
delay = random.uniform(min_delay, max_delay)
|
||||
print(f">本次随机延迟:【{delay:.2f}】 秒.....")
|
||||
time.sleep(delay)
|
||||
|
||||
|
||||
def down_file(filename, file_url):
|
||||
print(f'开始下载:{filename},下载地址:{file_url}')
|
||||
try:
|
||||
response = requests.get(file_url, verify=False, timeout=10)
|
||||
response.raise_for_status()
|
||||
with open(filename + '.tmp', 'wb') as f:
|
||||
f.write(response.content)
|
||||
print(f'【{filename}】下载完成!')
|
||||
|
||||
# 检查临时文件是否存在
|
||||
temp_filename = filename + '.tmp'
|
||||
if os.path.exists(temp_filename):
|
||||
# 删除原有文件
|
||||
if os.path.exists(filename):
|
||||
os.remove(filename)
|
||||
# 重命名临时文件
|
||||
os.rename(temp_filename, filename)
|
||||
print(f'【{filename}】重命名成功!')
|
||||
return True
|
||||
else:
|
||||
print(f'【{filename}】临时文件不存在!')
|
||||
return False
|
||||
except Exception as e:
|
||||
print(f'【{filename}】下载失败:{str(e)}')
|
||||
return False
|
||||
|
||||
|
||||
def import_Tools():
|
||||
global CHERWIN_TOOLS, ENV, APP_INFO, TIPS, TIPS_HTML, amxCode
|
||||
import CHERWIN_TOOLS
|
||||
ENV, APP_INFO, TIPS, TIPS_HTML, amxCode = CHERWIN_TOOLS.main(APP_NAME, local_script_name, ENV_NAME,local_version)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
APP_NAME = '安慕希小程序'
|
||||
ENV_NAME = 'AMX'
|
||||
CK_URL = 'amxshop.yili.com请求头'
|
||||
CK_NAME = 'accesstoken'
|
||||
CK_EX = 'wTUhu5IlL9uQDRelKgMRbao2bxii+O8+4FffOnxxxxxxx'
|
||||
print(f'''
|
||||
✨✨✨ {APP_NAME}脚本✨✨✨
|
||||
✨ 功能:
|
||||
积分签到
|
||||
✨ 抓包步骤:
|
||||
打开{APP_NAME}
|
||||
授权登陆
|
||||
打开抓包工具
|
||||
找{CK_URL}{CK_NAME}
|
||||
参数示例:{CK_EX}
|
||||
✨ ✨✨wxpusher一对一推送功能,
|
||||
✨需要定义变量export WXPUSHER=wxpusher的app_token,不设置则不启用wxpusher一对一推送
|
||||
✨需要在{ENV_NAME}变量最后添加@wxpusher的UID
|
||||
✨ 设置青龙变量:
|
||||
export {ENV_NAME}='{CK_NAME}参数值'多账号#或&分割
|
||||
export SCRIPT_UPDATE = 'False' 关闭脚本自动更新,默认开启
|
||||
✨ ✨ 注意:抓完CK没事儿别打开小程序,重新打开小程序请重新抓包
|
||||
✨ 推荐cron:5 7,11,15,20 * * *
|
||||
''')
|
||||
local_script_name = os.path.basename(__file__)
|
||||
local_version = '2024.05.23'
|
||||
if IS_DEV:
|
||||
import_Tools()
|
||||
else:
|
||||
if os.path.isfile('amx.py'):
|
||||
import_Tools()
|
||||
else:
|
||||
if down_file('amx.py', 'amx.py'):
|
||||
print('脚本检测完成')
|
||||
import_Tools()
|
||||
else:
|
||||
print(
|
||||
'脚本检测失败')
|
||||
exit()
|
||||
print(TIPS)
|
||||
token = ''
|
||||
token = ENV if ENV else token
|
||||
if not token:
|
||||
print(f"未填写{ENV_NAME}变量\n青龙可在环境变量设置 {ENV_NAME} 或者在本脚本文件上方将{CK_NAME}填入token =''")
|
||||
exit()
|
||||
tokens = CHERWIN_TOOLS.ENV_SPLIT(token)
|
||||
# print(tokens)
|
||||
if len(tokens) > 0:
|
||||
print(f"\n>>>>>>>>>>共获取到{len(tokens)}个账号<<<<<<<<<<")
|
||||
access_token = []
|
||||
for index, infos in enumerate(tokens):
|
||||
run_result = RUN(infos, index).main()
|
||||
if not run_result: continue
|
||||
if send: send(f'{APP_NAME}挂机通知', send_msg + TIPS_HTML)
|
||||
@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
const $ = new Env("北京汽车");
|
||||
const notify = $.isNode() ? require('./sendNotify') : '';
|
||||
const notify = $.isNode() ? require('../sendNotify') : '';
|
||||
let ckName = "bjevAuth";
|
||||
let envSplitor = ["@", "\n"]; //多账号分隔符
|
||||
let strSplitor = "&"; //多变量分隔符
|
||||
@ -280,7 +280,7 @@ async function SendMsg(message) {
|
||||
if (!message) return;
|
||||
if (Notify > 0) {
|
||||
if ($.isNode()) {
|
||||
var notify = require("./sendNotify");
|
||||
var notify = require("../sendNotify");
|
||||
await notify.sendNotify($.name, message)
|
||||
} else {
|
||||
$.msg($.name, '', message)
|
||||
@ -187,7 +187,7 @@ async function start() {
|
||||
log(`todoList:此次版本更新为过渡版本,以后将增加米游币的任务`)
|
||||
log(`tips:更新双变量模式,两个网址获取的两个cookie用&分割`)
|
||||
log(`\n====== 当前版本:${scriptVersionNow} 📌 最新版本:${scriptVersionLatest} ======`);
|
||||
await getNotice();
|
||||
//await getNotice();
|
||||
let taskall;
|
||||
log("\n==========> 获取当月奖励详情 <==========\n");
|
||||
taskall = [];
|
||||
|
||||
242
fsdlb.js
242
fsdlb.js
@ -4,64 +4,26 @@
|
||||
* Fsdlb
|
||||
* Date: 2024-07-31
|
||||
* cron "58 59 1 * * *" fsdlb.js
|
||||
* export fsdlb= Authorization 多账号换行或者#分隔
|
||||
* export fsdlb= Authorization 多账号&分开 去掉Bearer
|
||||
|
||||
|
||||
*/
|
||||
// ============================================================================================================
|
||||
const $ = new Env('逢三得利吧')
|
||||
const $ = new Env('逢三得利吧')
|
||||
const axios = require('axios')
|
||||
const env_name = 'fsdlb' //环境变量名字
|
||||
const env = process.env[env_name] || ''
|
||||
const env = process.env[env_name] || ''
|
||||
const Notify = 1
|
||||
const debug = 0
|
||||
let scriptVersionNow = "1.0.0";
|
||||
let msg = "";
|
||||
// ==================================异步顺序==============================================================================
|
||||
!(async () => {
|
||||
//await getNotice();
|
||||
//await getVersion("yang7758258/ohhh154@main/fsdlb.js");
|
||||
await main();
|
||||
await SendMsg(msg);
|
||||
|
||||
})()
|
||||
.catch((e) => $.logErr(e))
|
||||
.finally(() => $.done());
|
||||
//==================================脚本入口函数main()==============================================================
|
||||
|
||||
async function main() {
|
||||
if (env == '') {
|
||||
//没有设置变量,直接退出
|
||||
console.log(`没有填写变量,请查看脚本说明: ${env_name}`)
|
||||
return
|
||||
}
|
||||
let user_ck = env.split('\n')
|
||||
DoubleLog(`\n========= 共找到 ${user_ck.length} 个账号 =========`);
|
||||
let index = 1 //用来给账号标记序号, 从1开始
|
||||
for (let ck of user_ck) {
|
||||
if (!ck) continue //跳过空行
|
||||
let ck_info = ck.split('&')
|
||||
let Authorization = ck_info[0]
|
||||
//let ticket = ck_info[1]
|
||||
//let deviceCode = ck_info[2]
|
||||
let user = {
|
||||
index: index,
|
||||
Authorization,
|
||||
//ticket,
|
||||
//deviceCode,
|
||||
}
|
||||
index = index + 1 //每次用完序号+1
|
||||
//开始账号任务
|
||||
let Run = new run(user);
|
||||
await Run.userTask(user)
|
||||
//每个账号之间等1~5秒随机时间
|
||||
let rnd_time = Math.floor(Math.random() * 4000) + 1000
|
||||
console.log(`随机等待${rnd_time / 1000}秒...`)
|
||||
await $.wait(rnd_time)
|
||||
}
|
||||
}
|
||||
|
||||
// ======================================开始任务=========================================
|
||||
class run {
|
||||
class AAA {
|
||||
constructor(user) {
|
||||
let timestamp = Date.now()
|
||||
this.headers = {
|
||||
@ -74,18 +36,18 @@ class run {
|
||||
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",
|
||||
}
|
||||
}
|
||||
async userTask(user) {
|
||||
console.log(`\n========= 账号[${user.index}]开始任务 =========`)
|
||||
await this.sign(user)
|
||||
await this.account(user)
|
||||
|
||||
}
|
||||
// =============================================================================================================================
|
||||
//
|
||||
async sign(user) {
|
||||
async userTask(user) {
|
||||
console.log(`\n========= 账号[${user.index}]开始任务 =========`)
|
||||
await this.sign(user)
|
||||
await this.account(user)
|
||||
|
||||
}
|
||||
// =============================================================================================================================
|
||||
//
|
||||
async sign(user) {
|
||||
try {
|
||||
DoubleLog(`🕊账号[${user.index}] 开始签到...`);
|
||||
|
||||
|
||||
//console.log(formattedDate);
|
||||
let urlObject = {
|
||||
method: 'post',
|
||||
@ -93,48 +55,86 @@ async userTask(user) {
|
||||
headers: this.headers,
|
||||
data: {
|
||||
"miniappId": 159
|
||||
}
|
||||
}
|
||||
}
|
||||
//console.log(urlObject);
|
||||
let { data: result} = await axios.request(urlObject)
|
||||
let { data: result } = await axios.request(urlObject)
|
||||
//console.log(result);
|
||||
if (result?.code == 200) {
|
||||
//打印签到结果
|
||||
DoubleLog(`🕊账号[${user.index}] 签到成功:[${result.data.integralToastText}]🎉`);
|
||||
}else{
|
||||
} else {
|
||||
DoubleLog(`🕊账号[${user.index}] 签到失败:${result.msg}🚫`)
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
console.log(e);
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
async account(user) {
|
||||
try {
|
||||
DoubleLog(`🕊账号[${user.index}] 开始查询...`);
|
||||
let urlObject = {
|
||||
method: 'get',
|
||||
url: `https://xiaodian.miyatech.com/api/user/auth/member/integral/union/flow/list?pageNo=1&pageSize=10&dataType=SCORE`,
|
||||
headers: this.headers,
|
||||
|
||||
}
|
||||
//console.log(urlObject);
|
||||
let { data: result} = await axios.request(urlObject)
|
||||
//console.log(result);
|
||||
if (result?.code == 200) {
|
||||
//打印签到结果
|
||||
DoubleLog(`🕊账号[${user.index}] 查询成功:总积分[${result.data.totalScore}]🎉`);
|
||||
|
||||
}else {
|
||||
DoubleLog(`🕊账号[${user.index}] 查询失败:${result.msg}🚫`)
|
||||
}
|
||||
//
|
||||
async account(user) {
|
||||
try {
|
||||
DoubleLog(`🕊账号[${user.index}] 开始查询...`);
|
||||
let urlObject = {
|
||||
method: 'get',
|
||||
url: `https://xiaodian.miyatech.com/api/user/auth/member/integral/union/flow/list?pageNo=1&pageSize=10&dataType=SCORE`,
|
||||
headers: this.headers,
|
||||
|
||||
}
|
||||
//console.log(urlObject);
|
||||
let { data: result } = await axios.request(urlObject)
|
||||
//console.log(result);
|
||||
if (result?.code == 200) {
|
||||
//打印签到结果
|
||||
DoubleLog(`🕊账号[${user.index}] 查询成功:总积分[${result.data.totalScore}]🎉`);
|
||||
|
||||
} else {
|
||||
DoubleLog(`🕊账号[${user.index}] 查询失败:${result.msg}🚫`)
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
console.log(e);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
async function main() {
|
||||
if (env == '') {
|
||||
//没有设置变量,直接退出
|
||||
console.log(`没有填写变量,请查看脚本说明: ${env_name}`)
|
||||
return
|
||||
}
|
||||
let user_ck = env.split('&')
|
||||
DoubleLog(`\n========= 共找到 ${user_ck.length} 个账号 =========`);
|
||||
let index = 1 //用来给账号标记序号, 从1开始
|
||||
for (let ck of user_ck) {
|
||||
if (!ck) continue //跳过空行
|
||||
let ck_info = ck.split('#')
|
||||
let Authorization = 'Bearer ' + ck_info[0]
|
||||
//let ticket = ck_info[1]
|
||||
//let deviceCode = ck_info[2]
|
||||
let user = {
|
||||
index: index,
|
||||
Authorization,
|
||||
//ticket,
|
||||
//deviceCode,
|
||||
}
|
||||
index = index + 1 //每次用完序号+1
|
||||
//开始账号任务
|
||||
let Run = new AAA(user);
|
||||
await Run.userTask(user)
|
||||
//每个账号之间等1~5秒随机时间
|
||||
let rnd_time = Math.floor(Math.random() * 4000) + 1000
|
||||
console.log(`随机等待${rnd_time / 1000}秒...`)
|
||||
await $.wait(rnd_time)
|
||||
}
|
||||
}
|
||||
!(async () => {
|
||||
await main();
|
||||
await SendMsg(msg);
|
||||
|
||||
})()
|
||||
.catch((e) => $.logErr(e))
|
||||
.finally(() => $.done());
|
||||
/**
|
||||
* =========================================================发送消息=============================================
|
||||
*/
|
||||
@ -170,91 +170,17 @@ function DoubleLog(data) {
|
||||
/**
|
||||
* ======================================================等待 X 秒============================================
|
||||
*/
|
||||
function wait(n) {
|
||||
return new Promise(function (resolve) {
|
||||
setTimeout(resolve, n * 1000);
|
||||
});
|
||||
}
|
||||
/**
|
||||
* ======================================================随机等待 1-5 秒============================================
|
||||
*/
|
||||
function sjwait() {
|
||||
return new Promise(function (resolve) {
|
||||
let waitTime = Math.floor(Math.random() * 4000 + 1000);
|
||||
setTimeout(resolve, waitTime);
|
||||
});
|
||||
}
|
||||
|
||||
// ==========================================================13位时间戳=====================================================
|
||||
function getTimestamp() {
|
||||
return new Date().getTime();
|
||||
}
|
||||
|
||||
//===============================================网络请求httpRequest=========================================
|
||||
function httpRequest(options, timeout = 1 * 1000) {
|
||||
method = options.method ? options.method.toLowerCase() : options.body ? "post" : "get";
|
||||
return new Promise(resolve => {
|
||||
setTimeout(() => {
|
||||
$[method](options, (err, resp, data) => {
|
||||
try {
|
||||
if (err) {
|
||||
console.log(JSON.stringify(err));
|
||||
$.logErr(err);
|
||||
} else {
|
||||
try { data = JSON.parse(data); } catch (error) { }
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
$.logErr(e, resp);
|
||||
} finally {
|
||||
resolve(data);
|
||||
}
|
||||
})
|
||||
}, timeout)
|
||||
})
|
||||
}
|
||||
|
||||
//==============================================Debug模式===============================================
|
||||
function debugLog(...args) {
|
||||
if (debug) {
|
||||
console.log(...args);
|
||||
}
|
||||
}
|
||||
|
||||
//===============================================获取远程通知========================================
|
||||
async function getNotice() {
|
||||
try {
|
||||
const urls = [
|
||||
"https:tl.json",
|
||||
|
||||
];
|
||||
let notice = null;
|
||||
for (const url of urls) {
|
||||
const options = { url, headers: { "User-Agent": "" }, };
|
||||
const result = await httpRequest(options);
|
||||
if (result && "notice" in result) {
|
||||
notice = result.notice.replace(/\\n/g, "\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (notice) { $.DoubleLog(notice); }
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
}
|
||||
|
||||
//==============================================获取远程版本=================================================
|
||||
function getVersion(scriptUrl, timeout = 3 * 1000) {
|
||||
return new Promise((resolve) => {
|
||||
const options = { url: `https://fastly.jsdelivr.net/gh/${scriptUrl}` };
|
||||
$.get(options, (err, resp, data) => {
|
||||
try {
|
||||
const regex = /scriptVersionNow\s*=\s*(["'`])([\d.]+)\1/;
|
||||
const match = data.match(regex);
|
||||
const scriptVersionLatest = match ? match[2] : "";
|
||||
DoubleLog(`\n当前版本:[${scriptVersionNow}]>>>云端☁️版本:[${scriptVersionLatest}]`);
|
||||
} catch (e) {
|
||||
$.logErr(e, resp);
|
||||
}
|
||||
resolve();
|
||||
}, timeout);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
//===============================================================================================================================================
|
||||
//================================================固定API===============================================================================================
|
||||
|
||||
8
hfzj.js
8
hfzj.js
@ -206,13 +206,13 @@ class UserInfo {
|
||||
if ('posts' in result.data.list[i]) {
|
||||
artId = result.data.list[i].posts[0].threadBasic.id
|
||||
value = result.data.list[i].posts[0].threadBasic.author.beanId
|
||||
await $.wait(5000)
|
||||
await this.task_like(artId, value)
|
||||
//await $.wait(5000)
|
||||
//await this.task_like(artId, value)
|
||||
} else {
|
||||
artId = result.data.list[i].threadBasic.id
|
||||
value = result.data.list[i].threadBasic.author.userBasic.beanId
|
||||
await $.wait(5000)
|
||||
await this.task_like(artId, value)
|
||||
//await $.wait(5000)
|
||||
//await this.task_like(artId, value)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
94
hyjk.js
94
hyjk.js
@ -152,10 +152,98 @@ class Task {
|
||||
}
|
||||
|
||||
encrypt(body) {
|
||||
|
||||
global['window'] = {}
|
||||
global['navigator'] = {}
|
||||
const JSEncrypt = require("encryptlong")
|
||||
const JsRsaSign = require("jsrsasign")
|
||||
|
||||
const PUBLIC_KEY = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCiBksv2xaOJdSWblaTQl93HI393gYHqKFs89EIFBWYSmYSV+z8XXzMO/Xyo8EeWRpAjT5TuBf0wN467aBx3nsDfJd7e3+txBS7nf+S7Nyjnxx2J5AKPWx1gVmr/OF3aWqxg+DPCB7avakhj+p0QjoJ7eMqgJl/HSX2Kfb6/O3J9wIDAQAB";
|
||||
const PRIVATE_KEY = "MIICeAIBADANBgkqhkiG9w0BAQEFAASCAmIwggJeAgEAAoGBAKIGSy/bFo4l1JZuVpNCX3ccjf3eBgeooWzz0QgUFZhKZhJX7PxdfMw79fKjwR5ZGkCNPlO4F/TA3jrtoHHeewN8l3t7f63EFLud/5Ls3KOfHHYnkAo9bHWBWav84XdparGD4M8IHtq9qSGP6nRCOgnt4yqAmX8dJfYp9vr87cn3AgMBAAECgYEAlwzbB5Bu5LKsEFppZ/wW2ArM7YIRiQ5TACoGFEv1HfcuVaeXDmdxs02rKzwzDEHxUYDcPFyCKPGtvK5QSBgsAUUBHb6uu0fNGUccGX31NRAfLuQ8fj3W0uvkoYlpDARuokDHhWNqWzI6f8bFHkewJwpjXCO8w1WkogTLiX9Gu3ECQQDd5J4jEDS5+7KaohYRoryyX939mzsZ4RC6ufsfzTJwSlnLyYHEbm0Cs+7gbBxRrioqApBMQPIIoa5ujm1C88MNAkEAuu3htlbpR1ZL9b3wUuf3el/D3i/k9XvSChfHQ1q46Y/eck2yEDH9Kv/ZUxEl4fR8mB2MONm9oc2l+chPd9uQEwJBALcWuNU9vgPoB0tIiuUqXoDgUY+80ltcNi2c3/Uxn3jAIK/iKU0nwJMGXQiYrBVJnEjlrKL+w7cTkZZvtwATmtECQC2JV4vQvkFHj3eMzqeTpKDmBVPx/OekQzV8N2l8B0G2b20O6kqxssevzeRDcCQMJ/HyeL88o8pvy3f+yQUcsosCQQDZXV8K7Ek0R/V3dAdUzoetFSlfjCGy9QKPruz7m+iXBASxiA0R7YGfJzc8jWpuv0pxujtB/awy22K/ggLAhkZU";
|
||||
|
||||
|
||||
const JAVA_PUBLIC_KEY = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDNQpS4ZeHRiIPFIdZgupShTHFlGOqFkT6XEqByvWqt2BvLo3a+YfzyJHOXyfX41OvbIkuIaycuxU9w7RHI1e7F3O7Io+XxncjyU3GR+ae2DEtLaG3o/rtpONF5q1jTN/Spu4GKXsjhHrP9xxMThLF6134NKAyQZfvOms0gS0zmxwIDAQAB"
|
||||
const JAVA_PRIVATE_KEY = "MIICdwIBADANBgkqhkiG9w0BAQEFAASCAmEwggJdAgEAAoGBAM1ClLhl4dGIg8Uh1mC6lKFMcWUY6oWRPpcSoHK9aq3YG8ujdr5h/PIkc5fJ9fjU69siS4hrJy7FT3DtEcjV7sXc7sij5fGdyPJTcZH5p7YMS0tobej+u2k40XmrWNM39Km7gYpeyOEes/3HExOEsXrXfg0oDJBl+86azSBLTObHAgMBAAECgYA08JI5CRX4G/SYeIS5SAYjn/qzL3z1XCO/hS9ayJ3mHpH0sMFkkxNRRLOHl7BYMFpwl2TR14kwl/VIU+y9VugRK6Se/gdJ/jwGiMdVkO6tGD7s8TwLcgNjAVbwpZCq40h8dQazzyIsPxyww4AP9fQlo5x3eY9v8icw+U58fj4FcQJBAPk4PPCy54ZHMqSTl4E1z+QzZ51z07PFIbGsT/oAg9GOwFjrPjOTQDEPp3cBeAlKmWdUVAjdGYExwuCw4EkG/XkCQQDS2Cx09pwNwMWIN+u3CVneECXS3iUiRPGJkbliFczwjByk3DnBMW15wGNVtJfsM7YFOIir+hW+QfbCKSBjxTY/AkEArPam9LZ1kO/g6e+0+mwKeGpkwxYcG2v5UoIwj2XEFrBoNk4twUW1C1e99g4C7Q/lH52bJPuuM8gBZEfdoVFEoQJBALZ4CPlsVx973jeGFcPBHvoURXeZcs+WlOY2rBYbwdHHoB54zK7KZPECM7V/Zh8vnW4lP/p9owWVtsTPrM1LZicCQDhgvSmpBy0QoUI+wPS9l+YYuLc2loGoWU97RiFbgKqXBexnSg4UHfU8Ot6N4VbIWEhOZV27P0ktsI3UfjGNS6s="
|
||||
|
||||
// 生成随机串
|
||||
function generateRandomString(length) {
|
||||
var chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; // 包含所有字母和数字的字符集合
|
||||
var result = '';
|
||||
|
||||
for (var i = 0; i < length; i++) {
|
||||
var randomIndex = Math.floor(Math.random() * chars.length); // 获取随机索引值
|
||||
var charAtIndex = chars[randomIndex]; // 根据索引值从字符集合中选择对应的字符
|
||||
|
||||
result += charAtIndex; // 将字符添加到最终结果中
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
// 参数字典表排序
|
||||
function sortedKeys(obj) {
|
||||
let keys = Object.keys(obj).sort();
|
||||
let res = {}
|
||||
keys.forEach(key => {
|
||||
res[key] = obj[key]
|
||||
})
|
||||
return res
|
||||
}
|
||||
function generateRsaKeyWithPKCS8() {
|
||||
const keyPair = JsRsaSign.KEYUTIL.generateKeypair("RSA", 1024);
|
||||
const privateKey = JsRsaSign.KEYUTIL.getPEM(keyPair.prvKeyObj, "PKCS8PRV");
|
||||
const publicKey = JsRsaSign.KEYUTIL.getPEM(keyPair.pubKeyObj);
|
||||
return { privateKey, publicKey };
|
||||
}
|
||||
const { privateKey, publicKey } = generateRsaKeyWithPKCS8()
|
||||
|
||||
function objToStr(data) {
|
||||
let str = ""
|
||||
for (let i in data) {
|
||||
str += `${i}=${data[i]}&`
|
||||
}
|
||||
str = str.slice(0, str.length - 1)
|
||||
return str
|
||||
}
|
||||
// 生成签名
|
||||
function getSign(data) {
|
||||
const signature = new JsRsaSign.KJUR.crypto.Signature({
|
||||
alg: "SHA1withRSA",
|
||||
});
|
||||
signature.init("-----BEGIN PRIVATE KEY-----" + PRIVATE_KEY + "-----END PRIVATE KEY-----");
|
||||
let sortData = sortedKeys(data)
|
||||
let str = objToStr(sortData)
|
||||
signature.updateString(str);
|
||||
return JsRsaSign.hextob64(signature.sign());
|
||||
}
|
||||
function getKey() {
|
||||
const encryptor = new JSEncrypt()
|
||||
encryptor.setPublicKey("-----BEGIN PUBLIC KEY-----" + JAVA_PUBLIC_KEY + "-----END PUBLIC KEY-----") // 设置公钥
|
||||
return encryptor
|
||||
}
|
||||
|
||||
// 生成加密
|
||||
function entryData(data) {
|
||||
let encryptor = getKey();
|
||||
let str = objToStr(data)
|
||||
return encryptor.encryptLong(str); // 调用封装的方法
|
||||
}
|
||||
|
||||
// 解密
|
||||
function decrypt(data) {
|
||||
const encryptor = new JSEncrypt()
|
||||
encryptor.setPrivateKey(PRIVATE_KEY)
|
||||
return encryptor.decryptLong(data)
|
||||
}
|
||||
let sign = getSign(body)
|
||||
let timestamp = new Date().getTime()
|
||||
return entryData({
|
||||
sign: sign,
|
||||
timestamp: timestamp
|
||||
})
|
||||
//通过抓包得到加密JS网址https://www.heyejk.com/game/js/app.87d7f243.js 代码很多 慢慢补环境即可
|
||||
//不理解为什么弄两个加密 烦死了
|
||||
//smallfawn 2024 / 3 / 23 22.11
|
||||
const t = body
|
||||
/*const t = body
|
||||
const { KJUR, hextob64 } = require("jsrsasign")
|
||||
global['window'] = {}
|
||||
global['navigator'] = {}
|
||||
@ -169,7 +257,7 @@ class Task {
|
||||
function de() { const e = new JSEncrypt(); return e.setPublicKey("-----BEGIN PUBLIC KEY-----" + ne + "-----END PUBLIC KEY-----"), e }
|
||||
function ce(e) { let t = ""; for (let n in e) t += `${n}=${e[n]}&`; return t = t.slice(0, t.length - 1), t }
|
||||
function he(e) { let t = de(), n = ce(e); return t.encryptLong(n) }
|
||||
function le(e) { const t = new KJUR.crypto.Signature({ alg: "SHA1withRSA" }); t.init("-----BEGIN PRIVATE KEY-----" + te + "-----END PRIVATE KEY-----"); let n = ae(e), o = ce(n); return t.updateString(o), hextob64(t.sign()) }
|
||||
function le(e) { const t = new KJUR.crypto.Signature({ alg: "SHA1withRSA" }); t.init("-----BEGIN PRIVATE KEY-----" + te + "-----END PRIVATE KEY-----"); let n = ae(e), o = ce(n); return t.updateString(o), hextob64(t.sign()) }*/
|
||||
}
|
||||
async doWater() {
|
||||
try {
|
||||
@ -228,6 +316,8 @@ class Task {
|
||||
$.log(`✅账号[${this.index}] 领取水滴成功 当前水滴[${result.result.kettleWater}]💧🎉`)
|
||||
} else {
|
||||
$.log(`❌账号[${this.index}] 领取水滴失败`);
|
||||
console.log(result);
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
|
||||
2
qtx.js
2
qtx.js
@ -29,7 +29,7 @@ let userCount = 0;
|
||||
//---------------------------------------------------------
|
||||
|
||||
async function start() {
|
||||
await getNotice()
|
||||
//await getNotice()
|
||||
console.log('\n============= 用户CK有效性验证 =============\n');
|
||||
taskall = [];
|
||||
for (let user of userList) {
|
||||
|
||||
327
wxapp/anmuxi.js
Normal file
327
wxapp/anmuxi.js
Normal file
@ -0,0 +1,327 @@
|
||||
/*
|
||||
------------------------------------------
|
||||
@Author: sm
|
||||
@Date: 2024.06.07 19:15
|
||||
@Description: 测试
|
||||
------------------------------------------
|
||||
#Notice:
|
||||
安慕希小程序 变量名anmuxi
|
||||
抓wx-amxshop.msxapi.digitalyili.com/api headers中accessToken值 多账户&分隔
|
||||
⚠️【免责声明】
|
||||
------------------------------------------
|
||||
1、此脚本仅用于学习研究,不保证其合法性、准确性、有效性,请根据情况自行判断,本人对此不承担任何保证责任。
|
||||
2、由于此脚本仅用于学习研究,您必须在下载后 24 小时内将所有内容从您的计算机或手机或任何存储设备中完全删除,若违反规定引起任何事件本人对此均不负责。
|
||||
3、请勿将此脚本用于任何商业或非法目的,若违反规定请自行对此负责。
|
||||
4、此脚本涉及应用与本人无关,本人对因此引起的任何隐私泄漏或其他后果不承担任何责任。
|
||||
5、本人对任何脚本引发的问题概不负责,包括但不限于由脚本错误引起的任何损失和损害。
|
||||
6、如果任何单位或个人认为此脚本可能涉嫌侵犯其权利,应及时通知并提供身份证明,所有权证明,我们将在收到认证文件确认后删除此脚本。
|
||||
7、所有直接或间接使用、查看此脚本的人均应该仔细阅读此声明。本人保留随时更改或补充此声明的权利。一旦您使用或复制了此脚本,即视为您已接受此免责声明。
|
||||
*/
|
||||
|
||||
const $ = new Env("安慕希小程序");
|
||||
let ckName = `anmuxi`;
|
||||
const strSplitor = "#";
|
||||
const envSplitor = ["&", "\n"];
|
||||
const notify = $.isNode() ? require("./sendNotify") : "";
|
||||
const axios = require("axios");
|
||||
const defaultUserAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.31(0x18001e31) NetType/WIFI Language/zh_CN miniProgram"
|
||||
|
||||
class Public {
|
||||
async request(options) {
|
||||
return await axios.request(options);
|
||||
}
|
||||
}
|
||||
class Task extends Public {
|
||||
constructor(env) {
|
||||
|
||||
super();
|
||||
this.index = $.userIdx++
|
||||
let user = env.split("#");
|
||||
this.token = user[0];
|
||||
this.signed = true
|
||||
|
||||
}
|
||||
|
||||
async daily_sign() {
|
||||
let options = {
|
||||
method: "GET",
|
||||
|
||||
url: `https://wx-amxshop.msxapi.digitalyili.com/api/user/daily/sign?exParams=false`,
|
||||
headers: {
|
||||
"accept": "*/*",
|
||||
"accept-language": "zh-CN,zh;q=0.9",
|
||||
"accesstoken": "" + this.token,
|
||||
"content-type": "application/x-www-form-urlencoded",
|
||||
"scene": "1256",
|
||||
"sec-fetch-dest": "empty",
|
||||
"sec-fetch-mode": "cors",
|
||||
"sec-fetch-site": "cross-site",
|
||||
"xweb_xhr": "1"
|
||||
}
|
||||
}
|
||||
try {
|
||||
let { data: res } = await this.request(options);
|
||||
if (res.code == 200) {
|
||||
$.log(`签到成功 获得【${res.data.dailySign.bonusPoints}】分`)
|
||||
} else {
|
||||
$.log(`签到失败`)
|
||||
console.log(res);
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(`签到失败`)
|
||||
}
|
||||
}
|
||||
async daily_sign_status() {
|
||||
let options = {
|
||||
method: "GET",
|
||||
|
||||
url: `https://wx-amxshop.msxapi.digitalyili.com/api/user/sign/status`,
|
||||
headers: {
|
||||
"accept": "*/*",
|
||||
"accept-language": "zh-CN,zh;q=0.9",
|
||||
"accesstoken": "" + this.token,
|
||||
"content-type": "application/x-www-form-urlencoded",
|
||||
"scene": "1256",
|
||||
"sec-fetch-dest": "empty",
|
||||
"sec-fetch-mode": "cors",
|
||||
"sec-fetch-site": "cross-site",
|
||||
"xweb_xhr": "1"
|
||||
}
|
||||
}
|
||||
try {
|
||||
let { data: res } = await this.request(options);
|
||||
if (res.code == 200) {
|
||||
if (res.data.signed == false) {
|
||||
this.signed = false
|
||||
$.log(`已签到 【${res.data.signDays}】天 检测到今日未签到`)
|
||||
} else {
|
||||
$.log(`已签到 【${res.data.signDays}】天 检测到今日已签到`)
|
||||
this.signed = true
|
||||
}
|
||||
|
||||
} else {
|
||||
$.log(`获取签到状态失败`)
|
||||
console.log(res);
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(`签到失败`)
|
||||
}
|
||||
}
|
||||
async user_score() {
|
||||
let options = {
|
||||
method: "GET",
|
||||
|
||||
url: `https://wx-amxshop.msxapi.digitalyili.com/api/user/score`,
|
||||
headers: {
|
||||
"accept": "*/*",
|
||||
"accept-language": "zh-CN,zh;q=0.9",
|
||||
"accesstoken": "" + this.token,
|
||||
"content-type": "application/x-www-form-urlencoded",
|
||||
"scene": "1256",
|
||||
"sec-fetch-dest": "empty",
|
||||
"sec-fetch-mode": "cors",
|
||||
"sec-fetch-site": "cross-site",
|
||||
"xweb_xhr": "1"
|
||||
}
|
||||
}
|
||||
try {
|
||||
let { data: res } = await this.request(options);
|
||||
if (res.code == 200) {
|
||||
$.log(`当前积分【${res.data}】天`)
|
||||
} else {
|
||||
$.log(`获取积分失败`)
|
||||
console.log(res);
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(`签到失败`)
|
||||
}
|
||||
}
|
||||
|
||||
async run() {
|
||||
await this.user_score();
|
||||
|
||||
await this.daily_sign_status();
|
||||
if (this.signed == false) {
|
||||
await this.daily_sign();
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
!(async () => {
|
||||
await getNotice()
|
||||
$.checkEnv(ckName);
|
||||
|
||||
for (let user of $.userList) {
|
||||
//
|
||||
|
||||
await new Task(user).run();
|
||||
|
||||
}
|
||||
|
||||
|
||||
})()
|
||||
.catch((e) => console.log(e))
|
||||
.finally(() => $.done());
|
||||
|
||||
async function getNotice() {
|
||||
let options = {
|
||||
url: `https://gitee.com/smallfawn/Note/raw/main/Notice.json`,
|
||||
headers: {
|
||||
"User-Agent": defaultUserAgent,
|
||||
}
|
||||
}
|
||||
let { data: res } = await new Public().request(options);
|
||||
$.log(res)
|
||||
return res
|
||||
}
|
||||
|
||||
|
||||
// prettier-ignore
|
||||
function Env(t, s) {
|
||||
return new (class {
|
||||
constructor(t, s) {
|
||||
this.userIdx = 1;
|
||||
this.userList = [];
|
||||
this.userCount = 0;
|
||||
this.name = t;
|
||||
this.notifyStr = [];
|
||||
this.logSeparator = "\n";
|
||||
this.startTime = new Date().getTime();
|
||||
Object.assign(this, s);
|
||||
this.log(`\ud83d\udd14${this.name},\u5f00\u59cb!`);
|
||||
}
|
||||
checkEnv(ckName) {
|
||||
let userCookie = (this.isNode() ? process.env[ckName] : "") || "";
|
||||
this.userList = userCookie.split(envSplitor.find((o) => userCookie.includes(o)) || "&").filter((n) => n);
|
||||
this.userCount = this.userList.length;
|
||||
this.log(`共找到${this.userCount}个账号`);
|
||||
}
|
||||
async sendMsg() {
|
||||
this.log("==============📣Center 通知📣==============")
|
||||
let message = this.notifyStr.join(this.logSeparator);
|
||||
if (this.isNode()) {
|
||||
|
||||
await notify.sendNotify(this.name, message);
|
||||
} else {
|
||||
|
||||
}
|
||||
}
|
||||
isNode() {
|
||||
return "undefined" != typeof module && !!module.exports;
|
||||
}
|
||||
|
||||
queryStr(options) {
|
||||
return Object.entries(options)
|
||||
.map(
|
||||
([key, value]) =>
|
||||
`${key}=${typeof value === "object" ? JSON.stringify(value) : value
|
||||
}`
|
||||
)
|
||||
.join("&");
|
||||
}
|
||||
getURLParams(url) {
|
||||
const params = {};
|
||||
const queryString = url.split("?")[1];
|
||||
if (queryString) {
|
||||
const paramPairs = queryString.split("&");
|
||||
paramPairs.forEach((pair) => {
|
||||
const [key, value] = pair.split("=");
|
||||
params[key] = value;
|
||||
});
|
||||
}
|
||||
return params;
|
||||
}
|
||||
isJSONString(str) {
|
||||
try {
|
||||
return JSON.parse(str) && typeof JSON.parse(str) === "object";
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
isJson(obj) {
|
||||
var isjson =
|
||||
typeof obj == "object" &&
|
||||
Object.prototype.toString.call(obj).toLowerCase() ==
|
||||
"[object object]" &&
|
||||
!obj.length;
|
||||
return isjson;
|
||||
}
|
||||
|
||||
randomNumber(length) {
|
||||
const characters = "0123456789";
|
||||
return Array.from(
|
||||
{ length },
|
||||
() => characters[Math.floor(Math.random() * characters.length)]
|
||||
).join("");
|
||||
}
|
||||
randomString(length) {
|
||||
const characters = "abcdefghijklmnopqrstuvwxyz0123456789";
|
||||
return Array.from(
|
||||
{ length },
|
||||
() => characters[Math.floor(Math.random() * characters.length)]
|
||||
).join("");
|
||||
}
|
||||
uuid() {
|
||||
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(
|
||||
/[xy]/g,
|
||||
function (c) {
|
||||
var r = (Math.random() * 16) | 0,
|
||||
v = c == "x" ? r : (r & 0x3) | 0x8;
|
||||
return v.toString(16);
|
||||
}
|
||||
);
|
||||
}
|
||||
time(t) {
|
||||
let s = {
|
||||
"M+": new Date().getMonth() + 1,
|
||||
"d+": new Date().getDate(),
|
||||
"H+": new Date().getHours(),
|
||||
"m+": new Date().getMinutes(),
|
||||
"s+": new Date().getSeconds(),
|
||||
"q+": Math.floor((new Date().getMonth() + 3) / 3),
|
||||
S: new Date().getMilliseconds(),
|
||||
};
|
||||
/(y+)/.test(t) &&
|
||||
(t = t.replace(
|
||||
RegExp.$1,
|
||||
(new Date().getFullYear() + "").substr(4 - RegExp.$1.length)
|
||||
));
|
||||
for (let e in s) {
|
||||
new RegExp("(" + e + ")").test(t) &&
|
||||
(t = t.replace(
|
||||
RegExp.$1,
|
||||
1 == RegExp.$1.length
|
||||
? s[e]
|
||||
: ("00" + s[e]).substr(("" + s[e]).length)
|
||||
));
|
||||
}
|
||||
return t;
|
||||
}
|
||||
|
||||
log(content) {
|
||||
this.notifyStr.push(content)
|
||||
console.log(content)
|
||||
}
|
||||
wait(t) {
|
||||
return new Promise((s) => setTimeout(s, t));
|
||||
}
|
||||
done(t = {}) {
|
||||
this.sendMsg();
|
||||
const s = new Date().getTime(),
|
||||
e = (s - this.startTime) / 1e3;
|
||||
this.log(
|
||||
`\ud83d\udd14${this.name},\u7ed3\u675f!\ud83d\udd5b ${e}\u79d2`
|
||||
);
|
||||
if (this.isNode()) {
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
})(t, s);
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@ -3,14 +3,15 @@
|
||||
* Show:重写请求函数 在got环境或axios环境都可以请求
|
||||
* 微信小程序_骁龙骁友会 每日签到 点赞分享文章 免费抽奖一次 阅读和看视频以后更新
|
||||
* 变量名:wx_xlxyh
|
||||
* 变量值:https://qualcomm.growthideadata.com/qualcomm-app/
|
||||
* 变量值:https://qualcomm.boysup.cn/qualcomm-app/
|
||||
* headers请求头中 sessionkey的值和userid的值 用#拼接 用#拼接 用#拼接
|
||||
* 多账号&拼接
|
||||
* 需要手动进一次抽奖界面 进行抽奖后再来运行脚本
|
||||
* scriptVersionNow = "0.0.1";
|
||||
* scriptVersionNow = "0.0.2";
|
||||
*/
|
||||
|
||||
const $ = new Env("微信小程序_骁龙骁友会");
|
||||
const notify = $.isNode() ? require('../sendNotify') : '';
|
||||
const notify = $.isNode() ? require('./sendNotify') : '';
|
||||
let ckName = "wx_xlxyh";
|
||||
let envSplitor = ["&", "\n"]; //多账号分隔符
|
||||
let strSplitor = "#"; //多变量分隔符
|
||||
@ -48,12 +49,15 @@ class Task {
|
||||
|
||||
}
|
||||
async taskRequest(method, url, body = "") {
|
||||
|
||||
|
||||
let headers = {
|
||||
//"requestId": "88bd9fdf29c845be8e41a1e122337d6b",
|
||||
//timestamp: 1711330339720,
|
||||
//xweb_xhr: 1,
|
||||
"Host": "qualcomm.growthideadata.com",
|
||||
//"openid": "o2jYV5ZUH59H9uGcY04vSdV0Rbso",
|
||||
//"sign": "34bd7bc53e90128e6aba9d96dba5e40f",
|
||||
//"timestamp": "1739706208412",
|
||||
"Host": "qualcomm.boysup.cn",
|
||||
//sign: "478d557229cdd6ac89128648a2a61e63",
|
||||
Accept: "*/*",
|
||||
"User-Agent": this.UA,
|
||||
@ -62,6 +66,7 @@ class Task {
|
||||
"sessionKey": this.ck,
|
||||
"userId": Number(this.userId),
|
||||
}
|
||||
|
||||
this.openId !== "" ? Object.assign(headers, { "openId": this.openId }) : ""
|
||||
const reqeuestOptions = {
|
||||
url: url,
|
||||
@ -75,11 +80,13 @@ class Task {
|
||||
}
|
||||
async LuckDrawApi() {
|
||||
try {
|
||||
let LuckDrawNumResult = await this.taskRequest("get", `https://qualcomm.growthideadata.com/qualcomm-app/api/luckDraw/list?userId=${this.userId}&activityId=7`)
|
||||
let LuckDrawNumResult = await this.taskRequest("get", `https://qualcomm.boysup.cn/qualcomm-app/api/luckDraw/list?userId=297212&activityId=7`)
|
||||
if (LuckDrawNumResult.code == 200) {
|
||||
//当前剩余签到次数 == 总数 //可以免费抽奖一次
|
||||
if (LuckDrawNumResult.data.luckDrawCount == LuckDrawNumResult.data.luckDrawSumCount) {
|
||||
let LuckDrawTaskResult = await this.taskRequest("get", `https://qualcomm.growthideadata.com/qualcomm-app/api/luckDraw/getLuck?userId=${this.userId}&activityId=7`)
|
||||
let LuckDrawTaskResult = await this.taskRequest("post", `https://qualcomm.boysup.cn/qualcomm-app/api/luckDraw/getLuck`,
|
||||
'userId=297212&activityId=7'
|
||||
)
|
||||
if (LuckDrawTaskResult.code == 200) {
|
||||
$.log(`账号[${this.userId}] 抽奖成功 获得[${LuckDrawTaskResult.data.name}]🎉`)
|
||||
} else {
|
||||
@ -95,8 +102,8 @@ class Task {
|
||||
}
|
||||
}
|
||||
async updateClick(body) {
|
||||
try {
|
||||
let Result = await this.taskRequest("post", `https://qualcomm.growthideadata.com/qualcomm-app/api/buryPointApp/save`, body)
|
||||
/*try {
|
||||
let Result = await this.taskRequest("post", `https://qualcomm.boysup.cn/qualcomm-app/api/messageSubscribeApp/save`, body)
|
||||
if (Result.code == 200) {
|
||||
$.log(`账号[${this.userId}] 上传点击成功`);
|
||||
} else {
|
||||
@ -104,11 +111,11 @@ class Task {
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
}*/
|
||||
}
|
||||
async UserInfoApi() {
|
||||
try {
|
||||
let UserInfoResult = await this.taskRequest("get", `https://qualcomm.growthideadata.com/qualcomm-app/api/user/info?userId=${this.userId}`)
|
||||
let UserInfoResult = await this.taskRequest("get", `https://qualcomm.boysup.cn/qualcomm-app/api/user/info?userId=${this.userId}`)
|
||||
if (UserInfoResult.code == 200) {
|
||||
$.log(`✅账号[${this.userId}] 【昵称】[${UserInfoResult.data.nick}] 【等级】[${UserInfoResult.data.level}] 【现有积分】${UserInfoResult.data.coreCoin} 【累计获得】${UserInfoResult.data.cumulativeCoreCoin}🎉`);
|
||||
this.openId = UserInfoResult.data.openId
|
||||
@ -123,7 +130,7 @@ class Task {
|
||||
}
|
||||
async ReadStartApi(articleId) {
|
||||
try {
|
||||
let ReadStartApi = await this.taskRequest("post", `https://qualcomm.growthideadata.com/qualcomm-app/api/article/enterReadDaily`, `articleId=${articleId}&userId=${this.userId}`)
|
||||
let ReadStartApi = await this.taskRequest("post", `https://qualcomm.boysup.cn/qualcomm-app/api/article/enterReadDaily`, `articleId=${articleId}&userId=${this.userId}`)
|
||||
if (ReadStartApi.code == 200) {
|
||||
$.log(`✅账号[${this.userId}] 阅读文章开始上传成功🎉`);
|
||||
|
||||
@ -137,7 +144,7 @@ class Task {
|
||||
}
|
||||
async ReadEndApi(articleId) {
|
||||
try {
|
||||
let ReadEndApi = await this.taskRequest("post", `https://qualcomm.growthideadata.com/qualcomm-app/api/article/exitReadDaily`, `articleId=${articleId}&userId=${this.userId}`)
|
||||
let ReadEndApi = await this.taskRequest("post", `https://qualcomm.boysup.cn/qualcomm-app/api/article/exitReadDaily`, `articleId=${articleId}&userId=${this.userId}`)
|
||||
if (ReadEndApi.code == 200) {
|
||||
$.log(`✅账号[${this.userId}] 阅读文章结束上传成功🎉`);
|
||||
|
||||
@ -150,7 +157,7 @@ class Task {
|
||||
}
|
||||
async ShareApi(articleId) {
|
||||
try {
|
||||
let ShareResult = await this.taskRequest("post", `https://qualcomm.growthideadata.com/qualcomm-app/api/article/shareDaily`, `articleId=${articleId}&userId=${this.userId}`)
|
||||
let ShareResult = await this.taskRequest("post", `https://qualcomm.boysup.cn/qualcomm-app/api/article/shareDaily`, `articleId=${articleId}&userId=${this.userId}`)
|
||||
if (ShareResult.code == 200) {
|
||||
$.log(`✅账号[${this.userId}] 分享文章成功`)
|
||||
} else {
|
||||
@ -162,7 +169,7 @@ class Task {
|
||||
}
|
||||
async LikeApi(articleId) {
|
||||
try {
|
||||
let LikeResult = await this.taskRequest("get", `https://qualcomm.growthideadata.com/qualcomm-app/api/article/like?articleId=${articleId}&userId=${this.userId}`)
|
||||
let LikeResult = await this.taskRequest("get", `https://qualcomm.boysup.cn/qualcomm-app/api/article/like?articleId=${articleId}&userId=${this.userId}`)
|
||||
if (LikeResult.code == 200) {
|
||||
$.log(`✅账号[${this.userId}] 点赞文章成功`)
|
||||
} else {
|
||||
@ -174,7 +181,7 @@ class Task {
|
||||
}
|
||||
async ArticleListApi() {
|
||||
try {
|
||||
let ArticleListResult = await this.taskRequest("get", `https://qualcomm.growthideadata.com/qualcomm-app/api/home/articles?page=1&size=20&userId=${this.userId}&type=0&searchDate=&articleShowPlace=%E9%AA%81%E5%8F%8B%E8%B5%84%E8%AE%AF%E5%88%97%E8%A1%A8%E9%A1%B5`)
|
||||
let ArticleListResult = await this.taskRequest("get", `https://qualcomm.boysup.cn/qualcomm-app/api/home/articles?page=1&size=20&userId=${this.userId}&type=0&searchDate=&articleShowPlace=%E9%AA%81%E5%8F%8B%E8%B5%84%E8%AE%AF%E5%88%97%E8%A1%A8%E9%A1%B5`)
|
||||
if (ArticleListResult.code == 200) {
|
||||
$.log(`✅账号[${this.userId}] 获取文章${ArticleListResult.message} 准备阅读/点赞/分享🎉`);
|
||||
|
||||
@ -188,12 +195,12 @@ class Task {
|
||||
}
|
||||
async SignInApi() {
|
||||
try {
|
||||
let SignInListResult = await this.taskRequest("get", `https://qualcomm.growthideadata.com/qualcomm-app/api/user/signList?userId=${this.userId}`)
|
||||
let SignInListResult = await this.taskRequest("get", `https://qualcomm.boysup.cn/qualcomm-app/api/user/signList?userId=${this.userId}`)
|
||||
if (SignInListResult.code == 200) {
|
||||
if (SignInListResult.data.isSignToday == 1) {
|
||||
$.log(`✅账号[${this.userId}] 今天已经签到过了`);
|
||||
} else {
|
||||
let SignInResult = await this.taskRequest("get", `https://qualcomm.growthideadata.com/qualcomm-app/api/user/signIn?userId=${this.userId}`)
|
||||
let SignInResult = await this.taskRequest("get", `https://qualcomm.boysup.cn/qualcomm-app/api/user/signIn?userId=${this.userId}`)
|
||||
if (SignInResult.code == 200) {
|
||||
$.log(`✅账号[${this.userId}] 签到成功[${SignInResult.data.coreCoin}]🎉`);
|
||||
} else {
|
||||
|
||||
289
wxapp/可口可乐吧.js
Normal file
289
wxapp/可口可乐吧.js
Normal file
@ -0,0 +1,289 @@
|
||||
/*
|
||||
------------------------------------------
|
||||
@Author: sm
|
||||
@Date: 2024.06.07 19:15
|
||||
@Description: 测试
|
||||
------------------------------------------
|
||||
#Notice:
|
||||
变量名kekoukeleba 抓小程序可口可乐吧 member-api.icoke.cn/api Headers中 authorization 去掉Bearer 多账号&连接
|
||||
⚠️【免责声明】
|
||||
------------------------------------------
|
||||
1、此脚本仅用于学习研究,不保证其合法性、准确性、有效性,请根据情况自行判断,本人对此不承担任何保证责任。
|
||||
2、由于此脚本仅用于学习研究,您必须在下载后 24 小时内将所有内容从您的计算机或手机或任何存储设备中完全删除,若违反规定引起任何事件本人对此均不负责。
|
||||
3、请勿将此脚本用于任何商业或非法目的,若违反规定请自行对此负责。
|
||||
4、此脚本涉及应用与本人无关,本人对因此引起的任何隐私泄漏或其他后果不承担任何责任。
|
||||
5、本人对任何脚本引发的问题概不负责,包括但不限于由脚本错误引起的任何损失和损害。
|
||||
6、如果任何单位或个人认为此脚本可能涉嫌侵犯其权利,应及时通知并提供身份证明,所有权证明,我们将在收到认证文件确认后删除此脚本。
|
||||
7、所有直接或间接使用、查看此脚本的人均应该仔细阅读此声明。本人保留随时更改或补充此声明的权利。一旦您使用或复制了此脚本,即视为您已接受此免责声明。
|
||||
*/
|
||||
|
||||
const $ = new Env("可口可乐吧");
|
||||
let ckName = `kekoukeleba`;
|
||||
const strSplitor = "#";
|
||||
const envSplitor = ["&", "\n"];
|
||||
const notify = $.isNode() ? require("./sendNotify") : "";
|
||||
const axios = require("axios");
|
||||
const defaultUserAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.31(0x18001e31) NetType/WIFI Language/zh_CN miniProgram"
|
||||
|
||||
class Public {
|
||||
async request(options) {
|
||||
return await axios.request(options);
|
||||
}
|
||||
}
|
||||
class Task extends Public {
|
||||
constructor(env) {
|
||||
|
||||
super();
|
||||
this.index = $.userIdx++
|
||||
let user = env.split("#");
|
||||
this.token = user[0];
|
||||
this.isSign = false;
|
||||
}
|
||||
async addSign() {
|
||||
let options = {
|
||||
method: "GET",
|
||||
url: "https://member-api.icoke.cn/api/icoke-sign/icoke/mini/sign/main/sign",
|
||||
headers: {
|
||||
"accept": "application/json, text/plain, */*",
|
||||
"accept-language": "zh-CN,zh;q=0.9",
|
||||
"authorization": "Bearer " + this.token,
|
||||
"content-type": "application/json",
|
||||
"sec-fetch-dest": "empty",
|
||||
"sec-fetch-mode": "cors",
|
||||
"sec-fetch-site": "cross-site",
|
||||
"xweb_xhr": "1",
|
||||
"Referer": "https://servicewechat.com/wxa5811e0426a94686/421/page-frame.html",
|
||||
"Referrer-Policy": "unsafe-url"
|
||||
},
|
||||
|
||||
}
|
||||
try {
|
||||
let { data: res } = await this.request(options);
|
||||
if (res.success == true) {
|
||||
$.log(`签到成功 获得【${res.point}】快乐瓶`)
|
||||
} else {
|
||||
$.log(`签到失败`)
|
||||
console.log(res);
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
|
||||
}
|
||||
}
|
||||
async userInfo() {
|
||||
let options = {
|
||||
method: "GET",
|
||||
url: "https://member-api.icoke.cn/api/icoke-customer/icoke/mini/customer/main/points",
|
||||
headers: {
|
||||
"accept": "application/json, text/plain, */*",
|
||||
"accept-language": "zh-CN,zh;q=0.9",
|
||||
"authorization": "Bearer " + this.token,
|
||||
"content-type": "application/json",
|
||||
"sec-fetch-dest": "empty",
|
||||
"sec-fetch-mode": "cors",
|
||||
"sec-fetch-site": "cross-site",
|
||||
"xweb_xhr": "1",
|
||||
"Referer": "https://servicewechat.com/wxa5811e0426a94686/421/page-frame.html",
|
||||
"Referrer-Policy": "unsafe-url"
|
||||
},
|
||||
|
||||
}
|
||||
try {
|
||||
let { data: res } = await this.request(options);
|
||||
$.log(`目前还剩【${res.point}】瓶 `)
|
||||
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
|
||||
}
|
||||
}
|
||||
async run() {
|
||||
|
||||
await this.userInfo();
|
||||
|
||||
await this.addSign();
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
!(async () => {
|
||||
await getNotice()
|
||||
$.checkEnv(ckName);
|
||||
|
||||
for (let user of $.userList) {
|
||||
//
|
||||
|
||||
await new Task(user).run();
|
||||
|
||||
}
|
||||
|
||||
|
||||
})()
|
||||
.catch((e) => console.log(e))
|
||||
.finally(() => $.done());
|
||||
|
||||
async function getNotice() {
|
||||
let options = {
|
||||
url: `https://gitee.com/smallfawn/Note/raw/main/Notice.json`,
|
||||
headers: {
|
||||
"User-Agent": defaultUserAgent,
|
||||
}
|
||||
}
|
||||
let { data: res } = await new Public().request(options);
|
||||
$.log(res)
|
||||
return res
|
||||
}
|
||||
|
||||
|
||||
// prettier-ignore
|
||||
function Env(t, s) {
|
||||
return new (class {
|
||||
constructor(t, s) {
|
||||
this.userIdx = 1;
|
||||
this.userList = [];
|
||||
this.userCount = 0;
|
||||
this.name = t;
|
||||
this.notifyStr = [];
|
||||
this.logSeparator = "\n";
|
||||
this.startTime = new Date().getTime();
|
||||
Object.assign(this, s);
|
||||
this.log(`\ud83d\udd14${this.name},\u5f00\u59cb!`);
|
||||
}
|
||||
checkEnv(ckName) {
|
||||
let userCookie = (this.isNode() ? process.env[ckName] : "") || "";
|
||||
this.userList = userCookie.split(envSplitor.find((o) => userCookie.includes(o)) || "&").filter((n) => n);
|
||||
this.userCount = this.userList.length;
|
||||
this.log(`共找到${this.userCount}个账号`);
|
||||
}
|
||||
async sendMsg() {
|
||||
this.log("==============📣Center 通知📣==============")
|
||||
let message = this.notifyStr.join(this.logSeparator);
|
||||
if (this.isNode()) {
|
||||
|
||||
await notify.sendNotify(this.name, message);
|
||||
} else {
|
||||
|
||||
}
|
||||
}
|
||||
isNode() {
|
||||
return "undefined" != typeof module && !!module.exports;
|
||||
}
|
||||
|
||||
queryStr(options) {
|
||||
return Object.entries(options)
|
||||
.map(
|
||||
([key, value]) =>
|
||||
`${key}=${typeof value === "object" ? JSON.stringify(value) : value
|
||||
}`
|
||||
)
|
||||
.join("&");
|
||||
}
|
||||
getURLParams(url) {
|
||||
const params = {};
|
||||
const queryString = url.split("?")[1];
|
||||
if (queryString) {
|
||||
const paramPairs = queryString.split("&");
|
||||
paramPairs.forEach((pair) => {
|
||||
const [key, value] = pair.split("=");
|
||||
params[key] = value;
|
||||
});
|
||||
}
|
||||
return params;
|
||||
}
|
||||
isJSONString(str) {
|
||||
try {
|
||||
return JSON.parse(str) && typeof JSON.parse(str) === "object";
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
isJson(obj) {
|
||||
var isjson =
|
||||
typeof obj == "object" &&
|
||||
Object.prototype.toString.call(obj).toLowerCase() ==
|
||||
"[object object]" &&
|
||||
!obj.length;
|
||||
return isjson;
|
||||
}
|
||||
|
||||
randomNumber(length) {
|
||||
const characters = "0123456789";
|
||||
return Array.from(
|
||||
{ length },
|
||||
() => characters[Math.floor(Math.random() * characters.length)]
|
||||
).join("");
|
||||
}
|
||||
randomString(length) {
|
||||
const characters = "abcdefghijklmnopqrstuvwxyz0123456789";
|
||||
return Array.from(
|
||||
{ length },
|
||||
() => characters[Math.floor(Math.random() * characters.length)]
|
||||
).join("");
|
||||
}
|
||||
uuid() {
|
||||
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(
|
||||
/[xy]/g,
|
||||
function (c) {
|
||||
var r = (Math.random() * 16) | 0,
|
||||
v = c == "x" ? r : (r & 0x3) | 0x8;
|
||||
return v.toString(16);
|
||||
}
|
||||
);
|
||||
}
|
||||
time(t) {
|
||||
let s = {
|
||||
"M+": new Date().getMonth() + 1,
|
||||
"d+": new Date().getDate(),
|
||||
"H+": new Date().getHours(),
|
||||
"m+": new Date().getMinutes(),
|
||||
"s+": new Date().getSeconds(),
|
||||
"q+": Math.floor((new Date().getMonth() + 3) / 3),
|
||||
S: new Date().getMilliseconds(),
|
||||
};
|
||||
/(y+)/.test(t) &&
|
||||
(t = t.replace(
|
||||
RegExp.$1,
|
||||
(new Date().getFullYear() + "").substr(4 - RegExp.$1.length)
|
||||
));
|
||||
for (let e in s) {
|
||||
new RegExp("(" + e + ")").test(t) &&
|
||||
(t = t.replace(
|
||||
RegExp.$1,
|
||||
1 == RegExp.$1.length
|
||||
? s[e]
|
||||
: ("00" + s[e]).substr(("" + s[e]).length)
|
||||
));
|
||||
}
|
||||
return t;
|
||||
}
|
||||
|
||||
log(content) {
|
||||
this.notifyStr.push(content)
|
||||
console.log(content)
|
||||
}
|
||||
wait(t) {
|
||||
return new Promise((s) => setTimeout(s, t));
|
||||
}
|
||||
done(t = {}) {
|
||||
this.sendMsg();
|
||||
const s = new Date().getTime(),
|
||||
e = (s - this.startTime) / 1e3;
|
||||
this.log(
|
||||
`\ud83d\udd14${this.name},\u7ed3\u675f!\ud83d\udd5b ${e}\u79d2`
|
||||
);
|
||||
if (this.isNode()) {
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
})(t, s);
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@ -16,7 +16,7 @@ let scriptVersionNow = "1.0.0";//脚本版本号
|
||||
let msg = "";
|
||||
// ==================================异步顺序==============================================================================
|
||||
!(async () => {
|
||||
await getNotice(); //远程通知
|
||||
//await getNotice(); //远程通知
|
||||
await main();//主函数
|
||||
await SendMsg(msg); //发送通知
|
||||
|
||||
|
||||
264
快手极速版开宝箱.js
Normal file
264
快手极速版开宝箱.js
Normal file
@ -0,0 +1,264 @@
|
||||
/*
|
||||
------------------------------------------
|
||||
@ cron: 5 * * * *
|
||||
@Author: smallfawn
|
||||
|
||||
------------------------------------------
|
||||
#Notice: 每小时运行一次 ⚠️
|
||||
CK 名字 kuaishou_speed_openbox
|
||||
值: COOKIE#开宝箱sig3 多账号&连接
|
||||
⚠️【免责声明】
|
||||
------------------------------------------
|
||||
1、此脚本仅用于学习研究,不保证其合法性、准确性、有效性,请根据情况自行判断,本人对此不承担任何保证责任。
|
||||
2、由于此脚本仅用于学习研究,您必须在下载后 24 小时内将所有内容从您的计算机或手机或任何存储设备中完全删除,若违反规定引起任何事件本人对此均不负责。
|
||||
3、请勿将此脚本用于任何商业或非法目的,若违反规定请自行对此负责。
|
||||
4、此脚本涉及应用与本人无关,本人对因此引起的任何隐私泄漏或其他后果不承担任何责任。
|
||||
5、本人对任何脚本引发的问题概不负责,包括但不限于由脚本错误引起的任何损失和损害。
|
||||
6、如果任何单位或个人认为此脚本可能涉嫌侵犯其权利,应及时通知并提供身份证明,所有权证明,我们将在收到认证文件确认后删除此脚本。
|
||||
7、所有直接或间接使用、查看此脚本的人均应该仔细阅读此声明。本人保留随时更改或补充此声明的权利。一旦您使用或复制了此脚本,即视为您已接受此免责声明。
|
||||
*/
|
||||
|
||||
const $ = new Env("快手极速版开宝箱");
|
||||
let ckName = `kuaishou_speed_openbox`;
|
||||
|
||||
const strSplitor = "#";
|
||||
const envSplitor = ["&", "\n"];
|
||||
const notify = $.isNode() ? require("./sendNotify") : "";
|
||||
const axios = require("axios");
|
||||
const defaultUserAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.31(0x18001e31) NetType/WIFI Language/zh_CN miniProgram"
|
||||
|
||||
class Public {
|
||||
async request(options) {
|
||||
return await axios.request(options);
|
||||
}
|
||||
}
|
||||
class Task extends Public {
|
||||
constructor(env) {
|
||||
|
||||
super();
|
||||
this.index = $.userIdx++
|
||||
let user = env.split("#");
|
||||
this.cookkie = user[0];
|
||||
this.sig3_openbox = user[1]
|
||||
console.log()
|
||||
}
|
||||
|
||||
async openbox() {
|
||||
let data = JSON.stringify({});
|
||||
|
||||
|
||||
|
||||
$.log(`快手开宝箱 每小时运行一次`)
|
||||
|
||||
|
||||
let options = {
|
||||
method: 'POST',
|
||||
url: `https://nebula.kuaishou.com/rest/wd/encourage/unionTask/treasureBox/report?__NS_sig3=${this.sig3_openbox}&sigCatVer=1`,
|
||||
headers: {
|
||||
'User-Agent': 'Mozilla/5.0 (Linux; Android 10; MI 8 Lite Build/QKQ1.190910.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/90.0.4430.226 KsWebView/1.8.90.770 (rel;r) Mobile Safari/537.36 Yoda/3.2.9-rc6 ksNebula/12.11.40.9331 OS_PRO_BIT/64 MAX_PHY_MEM/5724 KDT/PHONE AZPREFIX/az3 ICFO/0 StatusHT/29 TitleHT/44 NetType/WIFI ISLP/0 ISDM/0 ISLB/0 locale/zh-cn DPS/4.036 DPP/13 SHP/2068 SWP/1080 SD/2.75 CT/0 ISLM/0',
|
||||
'Accept-Encoding': 'gzip, deflate',
|
||||
'Content-Type': 'application/json',
|
||||
'Origin': 'https://nebula.kuaishou.com',
|
||||
'X-Requested-With': 'com.kuaishou.nebula',
|
||||
'Sec-Fetch-Site': 'same-origin',
|
||||
'Sec-Fetch-Mode': 'cors',
|
||||
'Sec-Fetch-Dest': 'empty',
|
||||
'Referer': 'https://nebula.kuaishou.com/nebula/task/earning?layoutType=4&hyId=nebula_earning_ug_cdn&source=bottom_guide_second',
|
||||
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
|
||||
'Cookie': '' + this.cookkie
|
||||
},
|
||||
data: data
|
||||
};
|
||||
|
||||
|
||||
try {
|
||||
let { data: res } = await this.request(options);
|
||||
$.log(res);
|
||||
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
async run() {
|
||||
|
||||
|
||||
await this.openbox()
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
!(async () => {
|
||||
await getNotice()
|
||||
$.checkEnv(ckName);
|
||||
|
||||
for (let user of $.userList) {
|
||||
//
|
||||
|
||||
await new Task(user).run();
|
||||
|
||||
}
|
||||
|
||||
|
||||
})()
|
||||
.catch((e) => console.log(e))
|
||||
.finally(() => $.done());
|
||||
|
||||
async function getNotice() {
|
||||
let options = {
|
||||
url: `https://gitee.com/smallfawn/Note/raw/main/Notice.json`,
|
||||
headers: {
|
||||
"User-Agent": defaultUserAgent,
|
||||
}
|
||||
}
|
||||
let { data: res } = await new Public().request(options);
|
||||
$.log(res)
|
||||
return res
|
||||
}
|
||||
|
||||
|
||||
// prettier-ignore
|
||||
function Env(t, s) {
|
||||
return new (class {
|
||||
constructor(t, s) {
|
||||
this.userIdx = 1;
|
||||
this.userList = [];
|
||||
this.userCount = 0;
|
||||
this.name = t;
|
||||
this.notifyStr = [];
|
||||
this.logSeparator = "\n";
|
||||
this.startTime = new Date().getTime();
|
||||
Object.assign(this, s);
|
||||
this.log(`\ud83d\udd14${this.name},\u5f00\u59cb!`);
|
||||
}
|
||||
checkEnv(ckName) {
|
||||
let userCookie = (this.isNode() ? process.env[ckName] : "") || "";
|
||||
this.userList = userCookie.split(envSplitor.find((o) => userCookie.includes(o)) || "&").filter((n) => n);
|
||||
this.userCount = this.userList.length;
|
||||
this.log(`共找到${this.userCount}个账号`);
|
||||
}
|
||||
async sendMsg() {
|
||||
this.log("==============📣Center 通知📣==============")
|
||||
let message = this.notifyStr.join(this.logSeparator);
|
||||
if (this.isNode()) {
|
||||
|
||||
await notify.sendNotify(this.name, message);
|
||||
} else {
|
||||
|
||||
}
|
||||
}
|
||||
isNode() {
|
||||
return "undefined" != typeof module && !!module.exports;
|
||||
}
|
||||
|
||||
queryStr(options) {
|
||||
return Object.entries(options)
|
||||
.map(
|
||||
([key, value]) =>
|
||||
`${key}=${typeof value === "object" ? JSON.stringify(value) : value
|
||||
}`
|
||||
)
|
||||
.join("&");
|
||||
}
|
||||
getURLParams(url) {
|
||||
const params = {};
|
||||
const queryString = url.split("?")[1];
|
||||
if (queryString) {
|
||||
const paramPairs = queryString.split("&");
|
||||
paramPairs.forEach((pair) => {
|
||||
const [key, value] = pair.split("=");
|
||||
params[key] = value;
|
||||
});
|
||||
}
|
||||
return params;
|
||||
}
|
||||
isJSONString(str) {
|
||||
try {
|
||||
return JSON.parse(str) && typeof JSON.parse(str) === "object";
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
isJson(obj) {
|
||||
var isjson =
|
||||
typeof obj == "object" &&
|
||||
Object.prototype.toString.call(obj).toLowerCase() ==
|
||||
"[object object]" &&
|
||||
!obj.length;
|
||||
return isjson;
|
||||
}
|
||||
|
||||
randomNumber(length) {
|
||||
const characters = "0123456789";
|
||||
return Array.from(
|
||||
{ length },
|
||||
() => characters[Math.floor(Math.random() * characters.length)]
|
||||
).join("");
|
||||
}
|
||||
randomString(length) {
|
||||
const characters = "abcdefghijklmnopqrstuvwxyz0123456789";
|
||||
return Array.from(
|
||||
{ length },
|
||||
() => characters[Math.floor(Math.random() * characters.length)]
|
||||
).join("");
|
||||
}
|
||||
uuid() {
|
||||
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(
|
||||
/[xy]/g,
|
||||
function (c) {
|
||||
var r = (Math.random() * 16) | 0,
|
||||
v = c == "x" ? r : (r & 0x3) | 0x8;
|
||||
return v.toString(16);
|
||||
}
|
||||
);
|
||||
}
|
||||
time(t) {
|
||||
let s = {
|
||||
"M+": new Date().getMonth() + 1,
|
||||
"d+": new Date().getDate(),
|
||||
"H+": new Date().getHours(),
|
||||
"m+": new Date().getMinutes(),
|
||||
"s+": new Date().getSeconds(),
|
||||
"q+": Math.floor((new Date().getMonth() + 3) / 3),
|
||||
S: new Date().getMilliseconds(),
|
||||
};
|
||||
/(y+)/.test(t) &&
|
||||
(t = t.replace(
|
||||
RegExp.$1,
|
||||
(new Date().getFullYear() + "").substr(4 - RegExp.$1.length)
|
||||
));
|
||||
for (let e in s) {
|
||||
new RegExp("(" + e + ")").test(t) &&
|
||||
(t = t.replace(
|
||||
RegExp.$1,
|
||||
1 == RegExp.$1.length
|
||||
? s[e]
|
||||
: ("00" + s[e]).substr(("" + s[e]).length)
|
||||
));
|
||||
}
|
||||
return t;
|
||||
}
|
||||
|
||||
log(content) {
|
||||
this.notifyStr.push(content)
|
||||
console.log(content)
|
||||
}
|
||||
wait(t) {
|
||||
return new Promise((s) => setTimeout(s, t));
|
||||
}
|
||||
done(t = {}) {
|
||||
this.sendMsg();
|
||||
const s = new Date().getTime(),
|
||||
e = (s - this.startTime) / 1e3;
|
||||
this.log(
|
||||
`\ud83d\udd14${this.name},\u7ed3\u675f!\ud83d\udd5b ${e}\u79d2`
|
||||
);
|
||||
if (this.isNode()) {
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
})(t, s);
|
||||
}
|
||||
290
快手极速版签到.js
Normal file
290
快手极速版签到.js
Normal file
@ -0,0 +1,290 @@
|
||||
/*
|
||||
------------------------------------------
|
||||
@Author: sm
|
||||
@Date: 2024.06.07 19:15
|
||||
@Description: 测试
|
||||
------------------------------------------
|
||||
#Notice:
|
||||
CK 名字 kuaishou_speed
|
||||
值: COOKIE#签到sig3#打卡sig3 多账号&连接
|
||||
⚠️【免责声明】
|
||||
------------------------------------------
|
||||
1、此脚本仅用于学习研究,不保证其合法性、准确性、有效性,请根据情况自行判断,本人对此不承担任何保证责任。
|
||||
2、由于此脚本仅用于学习研究,您必须在下载后 24 小时内将所有内容从您的计算机或手机或任何存储设备中完全删除,若违反规定引起任何事件本人对此均不负责。
|
||||
3、请勿将此脚本用于任何商业或非法目的,若违反规定请自行对此负责。
|
||||
4、此脚本涉及应用与本人无关,本人对因此引起的任何隐私泄漏或其他后果不承担任何责任。
|
||||
5、本人对任何脚本引发的问题概不负责,包括但不限于由脚本错误引起的任何损失和损害。
|
||||
6、如果任何单位或个人认为此脚本可能涉嫌侵犯其权利,应及时通知并提供身份证明,所有权证明,我们将在收到认证文件确认后删除此脚本。
|
||||
7、所有直接或间接使用、查看此脚本的人均应该仔细阅读此声明。本人保留随时更改或补充此声明的权利。一旦您使用或复制了此脚本,即视为您已接受此免责声明。
|
||||
*/
|
||||
|
||||
const $ = new Env("快手极速版签到打卡");
|
||||
let ckName = `kuaishou_speed`;
|
||||
|
||||
const strSplitor = "#";
|
||||
const envSplitor = ["&", "\n"];
|
||||
const notify = $.isNode() ? require("./sendNotify") : "";
|
||||
const axios = require("axios");
|
||||
const defaultUserAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.31(0x18001e31) NetType/WIFI Language/zh_CN miniProgram"
|
||||
|
||||
class Public {
|
||||
async request(options) {
|
||||
return await axios.request(options);
|
||||
}
|
||||
}
|
||||
class Task extends Public {
|
||||
constructor(env) {
|
||||
|
||||
super();
|
||||
this.index = $.userIdx++
|
||||
let user = env.split("#");
|
||||
this.cookkie = user[0];
|
||||
this.sig3_signIn = user[1]
|
||||
this.sig3_signInMoney = user[2]
|
||||
}
|
||||
|
||||
async signInMoney() {
|
||||
$.log(`快手打卡`)
|
||||
let options = {
|
||||
method: 'GET',
|
||||
url: `https://nebula.kuaishou.com/rest/wd/encourage/unionTask/signIn/report?__NS_sig3=${this.sig3_signInMoney}&sigCatVer=1`,
|
||||
headers: {
|
||||
'User-Agent': 'Mozilla/5.0 (Linux; Android 10; MI 8 Lite Build/QKQ1.190910.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/90.0.4430.226 KsWebView/1.8.90.770 (rel;r) Mobile Safari/537.36 Yoda/3.2.9-rc6 ksNebula/12.11.40.9331 OS_PRO_BIT/64 MAX_PHY_MEM/5724 KDT/PHONE AZPREFIX/az3 ICFO/0 StatusHT/29 TitleHT/44 NetType/WIFI ISLP/0 ISDM/0 ISLB/0 locale/zh-cn DPS/4.036 DPP/13 SHP/2068 SWP/1080 SD/2.75 CT/0 ISLM/0',
|
||||
'Accept-Encoding': 'gzip, deflate',
|
||||
'content-type': 'application/x-www-form-urlencoded;charset=UTF-8',
|
||||
'X-Requested-With': 'com.kuaishou.nebula',
|
||||
'Sec-Fetch-Site': 'same-origin',
|
||||
'Sec-Fetch-Mode': 'cors',
|
||||
'Sec-Fetch-Dest': 'empty',
|
||||
'Referer': 'https://nebula.kuaishou.com/nebula/task/earning?layoutType=4&hyId=nebula_earning_ug_cdn&source=bottom_guide_second',
|
||||
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
|
||||
'Cookie': '' + this.cookkie
|
||||
}
|
||||
};
|
||||
try {
|
||||
let { data: res } = await this.request(options);
|
||||
$.log(res);
|
||||
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
|
||||
}
|
||||
async signIn() {
|
||||
$.log(`外部签到`)
|
||||
let data = JSON.stringify({
|
||||
"reportCount": 1,
|
||||
"subBizId": 6426,
|
||||
"taskId": 26021
|
||||
});
|
||||
|
||||
let options = {
|
||||
method: 'POST',
|
||||
url: 'https://encourage.kuaishou.com/rest/wd/zt/task/report?__NS_sig3=' + this.sig3_signIn,
|
||||
headers: {
|
||||
'User-Agent': 'Mozilla/5.0 (Linux; Android 10; MI 8 Lite Build/QKQ1.190910.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/90.0.4430.226 KsWebView/1.8.90.770 (rel;r) Mobile Safari/537.36 Yoda/3.2.9-rc6 ksNebula/12.11.40.9331 OS_PRO_BIT/64 MAX_PHY_MEM/5724 KDT/PHONE AZPREFIX/az3 ICFO/0 StatusHT/29 TitleHT/44 NetType/WIFI ISLP/0 ISDM/0 ISLB/0 locale/zh-cn DPS/4.036 DPP/13 SHP/2068 SWP/1080 SD/2.75 CT/0 ISLM/1',
|
||||
'Accept-Encoding': 'gzip, deflate',
|
||||
'Content-Type': 'application/json',
|
||||
'ktrace-str': '3|My40NTgzNzM3MTc4NDU3Mzc4LjM5NTMzODY2LjE3Mzk4NTY2Mjk2MzkuMTAwNQ==|My40NTgzNzM3MTc4NDU3Mzc4LjY2MjczNDcxLjE3Mzk4NTY2Mjk2MzkuMTAwNA==|0|usergrowth-activity-huge-sign-in|webservice|true|src:Js,seqn:950,rsi:c0c8c381-56b7-40b5-a47a-acd7ec6242dc,path:/huge-sign-in/home,rpi:c198403627',
|
||||
'Origin': 'https://encourage.kuaishou.com',
|
||||
'X-Requested-With': 'com.kuaishou.nebula',
|
||||
'Sec-Fetch-Site': 'same-origin',
|
||||
'Sec-Fetch-Mode': 'cors',
|
||||
'Sec-Fetch-Dest': 'empty',
|
||||
'Referer': 'https://encourage.kuaishou.com/huge-sign-in/home?layoutType=4&source=task&encourageTaskValidityTrack=eyJhY3Rpdml0eV9pZCI6MjAyNDMsInJlc291cmNlX2lkIjoiZWFyblBhZ2VfdGFza0xpc3RfMyIsImV4dF9wYXJhbXMiOnsiaXNTZXJ2ZXJSZWNvcmRDbGlja0FjdGlvbiI6dHJ1ZX19&encourageEventTracking=W3siZW5jb3VyYWdlX3Rhc2tfaWQiOjIwMjQzLCJlbmNvdXJhZ2VfcmVzb3VyY2VfaWQiOiJlYXJuUGFnZV90YXNrTGlzdF8zIiwiZXZlbnRUcmFja2luZ0xvZ0luZm8iOlt7ImRlbGl2ZXJPcmRlcklkIjoiNzEwIiwibWF0ZXJpYWxLZXkiOiJUQVNLX0xJU1RfMjAyNDNfSFVHRV9TSUdOX0lOIiwiZXZlbnRUcmFja2luZ1Rhc2tJZCI6MjAyNDMsInJlc291cmNlSWQiOiJlYXJuUGFnZV90YXNrTGlzdF8zIiwiZXh0UGFyYW1zIjp7ImlzU2VydmVyUmVjb3JkQ2xpY2tBY3Rpb24iOnRydWV9fV19XQ',
|
||||
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
|
||||
'Cookie': '' + this.cookkie
|
||||
|
||||
},
|
||||
data: data
|
||||
};
|
||||
|
||||
try {
|
||||
let { data: res } = await this.request(options);
|
||||
$.log(res);
|
||||
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
}
|
||||
async run() {
|
||||
|
||||
|
||||
await this.signIn()
|
||||
await this.signInMoney()
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
!(async () => {
|
||||
await getNotice()
|
||||
$.checkEnv(ckName);
|
||||
|
||||
for (let user of $.userList) {
|
||||
//
|
||||
|
||||
await new Task(user).run();
|
||||
|
||||
}
|
||||
|
||||
|
||||
})()
|
||||
.catch((e) => console.log(e))
|
||||
.finally(() => $.done());
|
||||
|
||||
async function getNotice() {
|
||||
let options = {
|
||||
url: `https://gitee.com/smallfawn/Note/raw/main/Notice.json`,
|
||||
headers: {
|
||||
"User-Agent": defaultUserAgent,
|
||||
}
|
||||
}
|
||||
let { data: res } = await new Public().request(options);
|
||||
$.log(res)
|
||||
return res
|
||||
}
|
||||
|
||||
|
||||
// prettier-ignore
|
||||
function Env(t, s) {
|
||||
return new (class {
|
||||
constructor(t, s) {
|
||||
this.userIdx = 1;
|
||||
this.userList = [];
|
||||
this.userCount = 0;
|
||||
this.name = t;
|
||||
this.notifyStr = [];
|
||||
this.logSeparator = "\n";
|
||||
this.startTime = new Date().getTime();
|
||||
Object.assign(this, s);
|
||||
this.log(`\ud83d\udd14${this.name},\u5f00\u59cb!`);
|
||||
}
|
||||
checkEnv(ckName) {
|
||||
let userCookie = (this.isNode() ? process.env[ckName] : "") || "";
|
||||
this.userList = userCookie.split(envSplitor.find((o) => userCookie.includes(o)) || "&").filter((n) => n);
|
||||
this.userCount = this.userList.length;
|
||||
this.log(`共找到${this.userCount}个账号`);
|
||||
}
|
||||
async sendMsg() {
|
||||
this.log("==============📣Center 通知📣==============")
|
||||
let message = this.notifyStr.join(this.logSeparator);
|
||||
if (this.isNode()) {
|
||||
|
||||
await notify.sendNotify(this.name, message);
|
||||
} else {
|
||||
|
||||
}
|
||||
}
|
||||
isNode() {
|
||||
return "undefined" != typeof module && !!module.exports;
|
||||
}
|
||||
|
||||
queryStr(options) {
|
||||
return Object.entries(options)
|
||||
.map(
|
||||
([key, value]) =>
|
||||
`${key}=${typeof value === "object" ? JSON.stringify(value) : value
|
||||
}`
|
||||
)
|
||||
.join("&");
|
||||
}
|
||||
getURLParams(url) {
|
||||
const params = {};
|
||||
const queryString = url.split("?")[1];
|
||||
if (queryString) {
|
||||
const paramPairs = queryString.split("&");
|
||||
paramPairs.forEach((pair) => {
|
||||
const [key, value] = pair.split("=");
|
||||
params[key] = value;
|
||||
});
|
||||
}
|
||||
return params;
|
||||
}
|
||||
isJSONString(str) {
|
||||
try {
|
||||
return JSON.parse(str) && typeof JSON.parse(str) === "object";
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
isJson(obj) {
|
||||
var isjson =
|
||||
typeof obj == "object" &&
|
||||
Object.prototype.toString.call(obj).toLowerCase() ==
|
||||
"[object object]" &&
|
||||
!obj.length;
|
||||
return isjson;
|
||||
}
|
||||
|
||||
randomNumber(length) {
|
||||
const characters = "0123456789";
|
||||
return Array.from(
|
||||
{ length },
|
||||
() => characters[Math.floor(Math.random() * characters.length)]
|
||||
).join("");
|
||||
}
|
||||
randomString(length) {
|
||||
const characters = "abcdefghijklmnopqrstuvwxyz0123456789";
|
||||
return Array.from(
|
||||
{ length },
|
||||
() => characters[Math.floor(Math.random() * characters.length)]
|
||||
).join("");
|
||||
}
|
||||
uuid() {
|
||||
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(
|
||||
/[xy]/g,
|
||||
function (c) {
|
||||
var r = (Math.random() * 16) | 0,
|
||||
v = c == "x" ? r : (r & 0x3) | 0x8;
|
||||
return v.toString(16);
|
||||
}
|
||||
);
|
||||
}
|
||||
time(t) {
|
||||
let s = {
|
||||
"M+": new Date().getMonth() + 1,
|
||||
"d+": new Date().getDate(),
|
||||
"H+": new Date().getHours(),
|
||||
"m+": new Date().getMinutes(),
|
||||
"s+": new Date().getSeconds(),
|
||||
"q+": Math.floor((new Date().getMonth() + 3) / 3),
|
||||
S: new Date().getMilliseconds(),
|
||||
};
|
||||
/(y+)/.test(t) &&
|
||||
(t = t.replace(
|
||||
RegExp.$1,
|
||||
(new Date().getFullYear() + "").substr(4 - RegExp.$1.length)
|
||||
));
|
||||
for (let e in s) {
|
||||
new RegExp("(" + e + ")").test(t) &&
|
||||
(t = t.replace(
|
||||
RegExp.$1,
|
||||
1 == RegExp.$1.length
|
||||
? s[e]
|
||||
: ("00" + s[e]).substr(("" + s[e]).length)
|
||||
));
|
||||
}
|
||||
return t;
|
||||
}
|
||||
|
||||
log(content) {
|
||||
this.notifyStr.push(content)
|
||||
console.log(content)
|
||||
}
|
||||
wait(t) {
|
||||
return new Promise((s) => setTimeout(s, t));
|
||||
}
|
||||
done(t = {}) {
|
||||
this.sendMsg();
|
||||
const s = new Date().getTime(),
|
||||
e = (s - this.startTime) / 1e3;
|
||||
this.log(
|
||||
`\ud83d\udd14${this.name},\u7ed3\u675f!\ud83d\udd5b ${e}\u79d2`
|
||||
);
|
||||
if (this.isNode()) {
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
})(t, s);
|
||||
}
|
||||
224
蔚来.js
Normal file
224
蔚来.js
Normal file
@ -0,0 +1,224 @@
|
||||
/*
|
||||
------------------------------------------
|
||||
@Author: sm
|
||||
@Date: 2024.06.07 19:15
|
||||
@Description: 测试
|
||||
------------------------------------------
|
||||
#Notice:
|
||||
⚠️【免责声明】
|
||||
------------------------------------------
|
||||
1、此脚本仅用于学习研究,不保证其合法性、准确性、有效性,请根据情况自行判断,本人对此不承担任何保证责任。
|
||||
2、由于此脚本仅用于学习研究,您必须在下载后 24 小时内将所有内容从您的计算机或手机或任何存储设备中完全删除,若违反规定引起任何事件本人对此均不负责。
|
||||
3、请勿将此脚本用于任何商业或非法目的,若违反规定请自行对此负责。
|
||||
4、此脚本涉及应用与本人无关,本人对因此引起的任何隐私泄漏或其他后果不承担任何责任。
|
||||
5、本人对任何脚本引发的问题概不负责,包括但不限于由脚本错误引起的任何损失和损害。
|
||||
6、如果任何单位或个人认为此脚本可能涉嫌侵犯其权利,应及时通知并提供身份证明,所有权证明,我们将在收到认证文件确认后删除此脚本。
|
||||
7、所有直接或间接使用、查看此脚本的人均应该仔细阅读此声明。本人保留随时更改或补充此声明的权利。一旦您使用或复制了此脚本,即视为您已接受此免责声明。
|
||||
*/
|
||||
|
||||
const $ = new Env("蔚来");
|
||||
let ckName = `testA`;
|
||||
const strSplitor = "#";
|
||||
const envSplitor = ["&", "\n"];
|
||||
process.env[ckName] = "testA#testB&testC#testD"
|
||||
const notify = $.isNode() ? require("./sendNotify") : "";
|
||||
const axios = require("axios");
|
||||
const defaultUserAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.31(0x18001e31) NetType/WIFI Language/zh_CN miniProgram"
|
||||
|
||||
class Public {
|
||||
async request(options) {
|
||||
return await axios.request(options);
|
||||
}
|
||||
}
|
||||
class Task extends Public {
|
||||
constructor(env) {
|
||||
|
||||
super();
|
||||
this.index = $.userIdx++
|
||||
let user = env.split("#");
|
||||
this.name = user[0];
|
||||
this.passwd = user[1];
|
||||
}
|
||||
|
||||
|
||||
async run() {
|
||||
|
||||
|
||||
|
||||
console.log(this.index);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
!(async () => {
|
||||
await getNotice()
|
||||
$.checkEnv(ckName);
|
||||
|
||||
for (let user of $.userList) {
|
||||
//
|
||||
|
||||
await new Task(user).run();
|
||||
|
||||
}
|
||||
|
||||
|
||||
})()
|
||||
.catch((e) => console.log(e))
|
||||
.finally(() => $.done());
|
||||
|
||||
async function getNotice() {
|
||||
let options = {
|
||||
url: `https://gitee.com/smallfawn/Note/raw/main/Notice.json`,
|
||||
headers: {
|
||||
"User-Agent": defaultUserAgent,
|
||||
}
|
||||
}
|
||||
let { data: res } = await new Public().request(options);
|
||||
$.log(res)
|
||||
return res
|
||||
}
|
||||
|
||||
|
||||
// prettier-ignore
|
||||
function Env(t, s) {
|
||||
return new (class {
|
||||
constructor(t, s) {
|
||||
this.userIdx = 1;
|
||||
this.userList = [];
|
||||
this.userCount = 0;
|
||||
this.name = t;
|
||||
this.notifyStr = [];
|
||||
this.logSeparator = "\n";
|
||||
this.startTime = new Date().getTime();
|
||||
Object.assign(this, s);
|
||||
this.log(`\ud83d\udd14${this.name},\u5f00\u59cb!`);
|
||||
}
|
||||
checkEnv(ckName) {
|
||||
let userCookie = (this.isNode() ? process.env[ckName] : "") || "";
|
||||
this.userList = userCookie.split(envSplitor.find((o) => userCookie.includes(o)) || "&").filter((n) => n);
|
||||
this.userCount = this.userList.length;
|
||||
this.log(`共找到${this.userCount}个账号`);
|
||||
}
|
||||
async sendMsg() {
|
||||
this.log("==============📣Center 通知📣==============")
|
||||
let message = this.notifyStr.join(this.logSeparator);
|
||||
if (this.isNode()) {
|
||||
|
||||
await notify.sendNotify(this.name, message);
|
||||
} else {
|
||||
|
||||
}
|
||||
}
|
||||
isNode() {
|
||||
return "undefined" != typeof module && !!module.exports;
|
||||
}
|
||||
|
||||
queryStr(options) {
|
||||
return Object.entries(options)
|
||||
.map(
|
||||
([key, value]) =>
|
||||
`${key}=${typeof value === "object" ? JSON.stringify(value) : value
|
||||
}`
|
||||
)
|
||||
.join("&");
|
||||
}
|
||||
getURLParams(url) {
|
||||
const params = {};
|
||||
const queryString = url.split("?")[1];
|
||||
if (queryString) {
|
||||
const paramPairs = queryString.split("&");
|
||||
paramPairs.forEach((pair) => {
|
||||
const [key, value] = pair.split("=");
|
||||
params[key] = value;
|
||||
});
|
||||
}
|
||||
return params;
|
||||
}
|
||||
isJSONString(str) {
|
||||
try {
|
||||
return JSON.parse(str) && typeof JSON.parse(str) === "object";
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
isJson(obj) {
|
||||
var isjson =
|
||||
typeof obj == "object" &&
|
||||
Object.prototype.toString.call(obj).toLowerCase() ==
|
||||
"[object object]" &&
|
||||
!obj.length;
|
||||
return isjson;
|
||||
}
|
||||
|
||||
randomNumber(length) {
|
||||
const characters = "0123456789";
|
||||
return Array.from(
|
||||
{ length },
|
||||
() => characters[Math.floor(Math.random() * characters.length)]
|
||||
).join("");
|
||||
}
|
||||
randomString(length) {
|
||||
const characters = "abcdefghijklmnopqrstuvwxyz0123456789";
|
||||
return Array.from(
|
||||
{ length },
|
||||
() => characters[Math.floor(Math.random() * characters.length)]
|
||||
).join("");
|
||||
}
|
||||
uuid() {
|
||||
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(
|
||||
/[xy]/g,
|
||||
function (c) {
|
||||
var r = (Math.random() * 16) | 0,
|
||||
v = c == "x" ? r : (r & 0x3) | 0x8;
|
||||
return v.toString(16);
|
||||
}
|
||||
);
|
||||
}
|
||||
time(t) {
|
||||
let s = {
|
||||
"M+": new Date().getMonth() + 1,
|
||||
"d+": new Date().getDate(),
|
||||
"H+": new Date().getHours(),
|
||||
"m+": new Date().getMinutes(),
|
||||
"s+": new Date().getSeconds(),
|
||||
"q+": Math.floor((new Date().getMonth() + 3) / 3),
|
||||
S: new Date().getMilliseconds(),
|
||||
};
|
||||
/(y+)/.test(t) &&
|
||||
(t = t.replace(
|
||||
RegExp.$1,
|
||||
(new Date().getFullYear() + "").substr(4 - RegExp.$1.length)
|
||||
));
|
||||
for (let e in s) {
|
||||
new RegExp("(" + e + ")").test(t) &&
|
||||
(t = t.replace(
|
||||
RegExp.$1,
|
||||
1 == RegExp.$1.length
|
||||
? s[e]
|
||||
: ("00" + s[e]).substr(("" + s[e]).length)
|
||||
));
|
||||
}
|
||||
return t;
|
||||
}
|
||||
|
||||
log(content) {
|
||||
this.notifyStr.push(content)
|
||||
console.log(content)
|
||||
}
|
||||
wait(t) {
|
||||
return new Promise((s) => setTimeout(s, t));
|
||||
}
|
||||
done(t = {}) {
|
||||
this.sendMsg();
|
||||
const s = new Date().getTime(),
|
||||
e = (s - this.startTime) / 1e3;
|
||||
this.log(
|
||||
`\ud83d\udd14${this.name},\u7ed3\u675f!\ud83d\udd5b ${e}\u79d2`
|
||||
);
|
||||
if (this.isNode()) {
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
})(t, s);
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user