吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 14533|回复: 59
收起左侧

[Python 转载] 阿里/腾讯/亚马逊云函数天翼云盘自动签到+抽奖,每月扩容3G+qq推送签到结果

  [复制链接]
mikeee 发表于 2020-8-30 12:17
本帖最后由 mikeee 于 2020-8-30 18:49 编辑

[Python] 纯文本查看 复制代码
"""
[url=https://www.52pojie.cn/thread-1231190-1-1.html]https://www.52pojie.cn/thread-1231190-1-1.html[/url]

感谢作者开源天翼云签到部分源码:
https://github.com/t00t00-crypto/cloud189-action/blob/master/checkin.py 及 [login_function.py](https://github.com/Dawnnnnnn/Cloud189/blob/master/functions/login_function.py) 
"""
import time
import re
# import json
import base64
import hashlib
# from urllib import parse

import rsa
import requests

BI_RM = list("0123456789abcdefghijklmnopqrstuvwxyz")

B64MAP = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"

s = requests.Session()

# 在下面两行的引号内贴上账号(仅支持手机号)和密码
username = ""
password = ""

_ = """
if(username == "" or password == ""):
    username = input("账号:")
    password = input("密码:")
# """

assert username and password, "在第23、24行填入有效账号和密码"

# https://cp.xuthus.cc/ 申请key 并设置测试好酷推
xuthuskey = ""
# xuthuskey = "27a...........................7b"

if not xuthuskey:
    print("第36行的xuthuskey 为空,签到结果将不会通过酷推发到你的qq")

def int2char(a):
    return BI_RM[a]

def b64tohex(a):
    d = ""
    e = 0
    c = 0
    for i in range(len(a)):
        if list(a)[i] != "=":
            v = B64MAP.index(list(a)[i])
            if 0 == e:
                e = 1
                d += int2char(v >> 2)
                c = 3 & v
            elif 1 == e:
                e = 2
                d += int2char(c << 2 | v >> 4)
                c = 15 & v
            elif 2 == e:
                e = 3
                d += int2char(c)
                d += int2char(v >> 2)
                c = 3 & v
            else:
                e = 0
                d += int2char(c << 2 | v >> 4)
                d += int2char(15 & v)
    if e == 1:
        d += int2char(c << 2)
    return d


def rsa_encode(j_rsakey, string):
    rsa_key = f"-----BEGIN PUBLIC KEY-----\n{j_rsakey}\n-----END PUBLIC KEY-----"
    pubkey = rsa.PublicKey.load_pkcs1_openssl_pem(rsa_key.encode())
    result = b64tohex((base64.b64encode(rsa.encrypt(f'{string}'.encode(), pubkey))).decode())
    return result

def calculate_md5_sign(params):
    return hashlib.md5('&'.join(sorted(params.split('&'))).encode('utf-8')).hexdigest()

def login(username, password):
    url = "https://cloud.189.cn/udb/udb_login.jsp?pageId=1&redirectURL=/main.action"
    r = s.get(url)
    captchaToken = re.findall(r"captchaToken' value='(.+?)'", r.text)[0]
    lt = re.findall(r'lt = "(.+?)"', r.text)[0]
    returnUrl = re.findall(r"returnUrl = '(.+?)'", r.text)[0]
    paramId = re.findall(r'paramId = "(.+?)"', r.text)[0]
    j_rsakey = re.findall(r'j_rsaKey" value="(\S+)"', r.text, re.M)[0]
    s.headers.update({"lt": lt})

    username = rsa_encode(j_rsakey, username)
    password = rsa_encode(j_rsakey, password)
    url = "https://open.e.189.cn/api/logbox/oauth2/loginSubmit.do"
    headers = {
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/76.0',
        'Referer': 'https://open.e.189.cn/',
    }
    data = {
        "appKey": "cloud",
        "accountType": '01',
        "userName": f"{{RSA}}{username}",
        "password": f"{{RSA}}{password}",
        "validateCode": "",
        "captchaToken": captchaToken,
        "returnUrl": returnUrl,
        "mailSuffix": "@189.cn",
        "paramId": paramId
    }
    r = s.post(url, data=data, headers=headers, timeout=5)
    if(r.json()['result'] == 0):
        print(r.json()['msg'])
    else:
        print(r.json()['msg'])
    redirect_url = r.json()['toUrl']
    r = s.get(redirect_url)
    return s


def main():
    login(username, password)
    rand = str(round(time.time() * 1000))
    surl = f'https://api.cloud.189.cn/mkt/userSign.action?rand={rand}&clientType=TELEANDROID&version=8.6.3&model=SM-G930K'
    url = f'https://m.cloud.189.cn/v2/drawPrizeMarketDetails.action?taskId=TASK_SIGNIN&activityId=ACT_SIGNIN'
    url2 = f'https://m.cloud.189.cn/v2/drawPrizeMarketDetails.action?taskId=TASK_SIGNIN_PHOTOS&activityId=ACT_SIGNIN'
    headers = {
        'User-Agent': 'Mozilla/5.0 (Linux; Android 5.1.1; SM-G930K Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/74.0.3729.136 Mobile Safari/537.36 Ecloud/8.6.3 Android/22 clientId/355325117317828 clientModel/SM-G930K imsi/460071114317824 clientChannelId/qq proVersion/1.0.6',
        "Referer": "https://m.cloud.189.cn/zhuanti/2016/sign/index.jsp?albumBackupOpened=1",
        "Host": "m.cloud.189.cn",
        "Accept-Encoding": "gzip, deflate",
    }
    response = s.get(surl, headers=headers)
    netdiskBonus = response.json()['netdiskBonus']
    if(response.json()['isSign'] == "false"):
        print(f"未签到,签到获得{netdiskBonus}M空间")
        res1 = f"未签到,签到获得{netdiskBonus}M空间"
    else:
        print(f"已经签到过了,签到获得{netdiskBonus}M空间")
        res1 = f"已经签到过了,签到获得{netdiskBonus}M空间"

    headers = {
        'User-Agent': 'Mozilla/5.0 (Linux; Android 5.1.1; SM-G930K Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/74.0.3729.136 Mobile Safari/537.36 Ecloud/8.6.3 Android/22 clientId/355325117317828 clientModel/SM-G930K imsi/460071114317824 clientChannelId/qq proVersion/1.0.6',
        "Referer": "https://m.cloud.189.cn/zhuanti/2016/sign/index.jsp?albumBackupOpened=1",
        "Host": "m.cloud.189.cn",
        "Accept-Encoding": "gzip, deflate",
    }
    response = s.get(url, headers=headers)
    if ("errorCode" in response.text):
        print(response.text)
        res2 = ""
    else:
        description = response.json()['description']
        print(f"抽奖获得{description}")
        res2 = f"抽奖获得{description}"
    response = s.get(url2, headers=headers)
    if ("errorCode" in response.text):
        print(response.text)
        res3 = ""
    else:
        description = response.json()['description']
        print(f"抽奖获得{description}")
        res3 = f"抽奖获得{description}"

    if xuthuskey.strip():
        _ = xuthuskey.strip()
        requests.get(f"https://push.xuthus.cc/send/{_}?c=func compute: {res1}, {res2}, {res3}")


def lambda_handler(event, context):  # aws default
    main()


def main_handler(event, context):  # tencent default
    main()


def handler(event, context):  # aliyun default
    main()


if __name__ == "__main__":
    main()

看这个贴 https://www.52pojie.cn/thread-1231190-1-1.html 很火,整了个相应的云函数签到+qq推送签到结果

小白用法

  • 下载 tianyiyun-qiandao.zip(dupan链接(2M): [u]链接: https://pan.baidu.com/s/14kNBCp-Q8-5PdFDa1C2sSA 提取码: qi55)解压
  • index.py的第24、25行贴上账号和密码
    • 可选:在第36行贴上酷推密钥序列串。(申请酷推密钥序列参考第35行)
  • 更新包里的 index.py (将新的index.py拉到tianyiyun-qiandao.zip里)
  • 'tianyiyun-qiandao.zip'上传到阿里云或腾讯云或亚马逊云的云函数里测试并设置好触发

非小白用法

  • 开一个目录,例如 mkdir qiandao && cd qiandao
  • 将上面的源码存到目录里的 index.py
  • 在index.py的第24、25行贴上账号和密码
    • 可选:在第36行贴上酷推密钥序列串。(申请酷推密钥序列参考第35行)
  • qiandao目录里运行pip install requests rsa -t . (注意最后的点,表示当前目录)
  • qiandao目录里运行zip qiandao.zip * -r打包上传到阿里云或腾讯云或亚马逊云的云函数里测试并设置好触发。

有坛友在腾讯云上成功运行,查看 #29楼  https://www.52pojie.cn/forum.php ... 257004&pid=33893749

一些云函数部署的坑参看 https://www.52pojie.cn/thread-1256451-1-1.html 的 2-... 楼

如果测试运行时出现类似与验证码有关的信息,试着将第102行的"accountType": '01',改成"accountType": '02',

登录天翼云部分最原始的起源可能来自 https://github.com/Dawnnnnnn/Cloud189 。 有兴趣自己打补丁的坛友可以参看 functions目录里的login_function.py打补丁。

免费评分

参与人数 5吾爱币 +5 热心值 +5 收起 理由
太阳在前方 + 1 + 1 谢谢@Thanks!
Lara + 1 用心讨论,共获提升!
Ning0725 + 1 + 1 谢谢@Thanks!
极地企鹅 + 1 + 1 用心讨论,共获提升!
lg99 + 2 + 1 用心讨论,共获提升!

查看全部评分

本帖被以下淘专辑推荐:

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

列明 发表于 2020-8-30 12:38
360云盘我天天签到,签了几十T了,说关就关了!
袁昌旺 发表于 2020-8-30 12:52
列明 发表于 2020-8-30 12:38
360云盘我天天签到,签了几十T了,说关就关了!

360自从云盘删库起,他家的东西我再也不用了
呆萌爱士 发表于 2020-8-30 12:43
感谢分享,不过好奇这些云是啥,是送服务器的空间容量还是送像百度网盘那样的储存流量。不是很懂,没玩过
mayahs 发表于 2021-8-16 10:53
本帖最后由 mayahs 于 2021-8-16 11:24 编辑
Mcqh 发表于 2021-8-13 22:39
大佬您好,我用云函数但是测试失败了请问这是什么意思?
{"errorCode":-1,"errorMessage":"user code exce ...

同样的问题,本地运行也是这个

参考了git大佬的代码,login_url改成login_url = "https://cloud.189.cn/api/portal/loginUrl.action?" \
                "redirectURL=https://cloud.189.cn/web/redirect.html?returnURL=/main.action"
极地企鹅 发表于 2020-8-30 12:39
这是移动端的签到嘛
pc很久以前有,后来没了,没想到在移动端
梅石楠 发表于 2020-8-30 12:30
感谢楼主分享
啊笨 发表于 2020-8-30 12:32
阿里云现在能开通了?
能动者与受动者 发表于 2020-8-30 12:36
啊笨 发表于 2020-8-30 12:32
阿里云现在能开通了?

我的申请金色徽章还没送到
头像被屏蔽
偶尔平凡 发表于 2020-8-30 12:37
提示: 作者被禁止或删除 内容自动屏蔽
袁昌旺 发表于 2020-8-30 12:50
列明 发表于 2020-8-30 12:38
360云盘我天天签到,签了几十T了,说关就关了!

360从建库到删库跑路,他删了数据还有理,这种行为?
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-22 03:23

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表