西西软件园多重安全检测下载网站、值得信赖的软件下载站!
西西首页 电脑软件 安卓软件 电脑游戏 安卓游戏 排行榜 专题合集

Alipay-wufu.exe(额外福卡)

V1.0.1绿色版
  • Alipay-wufu.exe(额外福卡)V1.0.1绿色版
  • 软件大小:8.5M
  • 更新时间:2021-02-04 08:51
  • 软件语言:中文
  • 软件厂商:
  • 软件类别:国产软件 / 免费软件 / 浏览辅助
  • 软件等级:3级
  • 应用平台:WinAll
  • 官方网站:暂无
  • 应用备案:
好评:50%
坏评:50%

软件介绍

Alipay-wufu.exe(额外福卡)是一款支付宝全自动领取额外53张福卡五福助手,支付宝联合其他52个产品推出送五福的活动,用pyhton简单写了一个自动连续领取的程序,只需要每隔60s把手机的验证码输入即可。

软件注意:

连续获取60(2月3日,根据大家的情况反映,支付宝已经把风控数量调整到10个验证码左右,24小时后解除风控)个支付宝验证码则会被风控,24小时内无法继续获取验证码,请按照需求获取!!

使用说明:

首先输入要领取的站点开始的序号,总共53个站点可以领取

每隔60s会自动切换到下个站点进行领取,已经领取成功的,会进行记录,下次程序运行时将忽略领取成功的站点

如果要换手机号领取,需要重新解压这个压缩包,把success.json覆盖掉,不然会因为上个手机号领取成功的站点而进行跳过。

注意:支付宝此活动不能连续获得60(2月3日,根据大家的情况反映,支付宝已经把风控数量调整到10个验证码左右,24小时后解除风控)个验证码,否则24小时内无法再参加此次活动!

程序暂无GUI页面,先凑合着用把。site.json和success.json必须和程序在一个目录,否则程序会闪退!

因为打包环境是64位的,所以程序不支持32位操作系统。

因为此次支付宝五福为了让大家交换卡,每人获得除了敬业福之外的随机两种福的概率是最大的,所以一般会大量开出两种福,这是正常现象。

代码说明:

很多人想要检查一下代码的安全性,其实没有在程序中加壳,直接反编译即可看到了。有人如果有人想要改进的话直接改就可以了哦。

import requests

import os

import codecs

import sys

import time

import json

import re

class WebRequests:

    def __init__(self):

        self.dirPath = ''

        self.getCaptchaUrl = 'https://rds.alipay.com/captcha.htm'

        self.getResultUrl = 'https://mobilegw.alipay.com/mgw.htm'

        self.operationType = {

            'sendVerifyCode': 'alipay.tradecsa.biz.blessingprod.wufu2021.sendVerifyCode',

            'outPrize': 'alipay.tradecsa.biz.blessingprod.wufu2021.outPrize'

        }

        self.s = requests.Session()

        self.headers = {

            'User-Agent': 'Mozilla/5.0 (Linux; U; Android 10; zh-CN; MI 9 Build/QKQ1.190828.002) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 Quark/4.3.3.145 Mobile Safari/537.36 Edg/89.0.4389.6',

            'DNT': '1'

        }

    def loads_jsonp(self, _jsonp):

        try:

            return json.loads(re.match(".*?({.*}).*", _jsonp, re.S).group(1))

        except:

            raise ValueError('Invalid Input')

    def getCaptcha(self, mobile, source):

        digits = 32

        hex = codecs.encode(os.urandom(digits), 'hex').decode()

        data = {

            'appid': "blessingprod_wufu_otp",

            'bizNo': hex,

            'mobile': mobile,

            'refer': "",

            'scene': "DO_NOTHING",

            'type': "silence",

            'useragent': "Mozilla/5.0 (Linux; U; Android 10; zh-CN; MI 8 UD Build/QKQ1.190828.002) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 Quark/4.3.3.145 Mobile Safari/537.36 Edg/89.0.4389.6"

        }

        self.s.options(self.getCaptchaUrl)

        try:

            r = self.s.post(self.getCaptchaUrl, json=data,

                            headers=self.headers)

            # print(r.text)

            rdsToken = json.loads(r.content)['data']['extra']['token']

            requestData = [{"mobile": mobile, "source": source,

                            "rdsBizNo": hex, "rdsToken": rdsToken}]

            getResultData = {

                '_fli_online': True,

                'operationType': self.operationType['sendVerifyCode'],

                'requestData': str(requestData),

                '_': int(round(time.time() * 1000)),

                'callback': 'jsonp' + str(int(round(time.time() * 1000)))

            }

            re = self.s.get(self.getResultUrl,

                            params=getResultData, headers=self.headers)

            # 'jsonp16121({"resultStatus":1000,"result":{"code":"5101","resultView":"人气太旺了,请稍后再试","success":true}})'

            # print(re.text)

            re_json = self.loads_jsonp(re.text)

            if re_json['result']['success'] == True:

                return {"code": 1000, "info": f'成功获取验证码,请注意查收'}

            else:

                resultView = re_json['result']['resultView']

                return {"code": 1001, "info": f'获取验证码失败,原因为{resultView}'}

        except Exception as e:

            return {"code": 1001, "info": f'获取验证码失败,原因为 {e}'}

    def getResult(self, mobile, source, ackCode):

        requestData = [

            {"mobile": mobile, "source": source, "ackCode": str(ackCode)}]

        getResultData = {

            '_fli_online': True,

            'operationType': self.operationType['outPrize'],

            'requestData': str(requestData),

            '_': int(round(time.time() * 1000)),

            'callback': 'jsonp' + str(int(round(time.time() * 1000)))

        }

        try:

            re = self.s.get(self.getResultUrl,

                            params=getResultData, headers=self.headers)

            # jsonp16121({"resultStatus":1000,"result":{"code":"50144","hasPrized":false,"hasUserId":false,"resultView":"已经领取过奖品","success":false}})

            # print(re.text)

            re_json = self.loads_jsonp(re.text)

            if re_json['result']['success'] == True:

                return {"code": 1000, "info": f'成功领取'}

            else:

                resultView = re_json['result']['resultView']

                return {"code": 1001, "info": f'领取失败,原因为 {resultView}'}

        except Exception as e:

            return {"code": 1001, "info": f'领取失败,原因为 {e}'}

    def getSiteNum(self):

        path = os.path.join(self.dirPath, "site.json")

        with open(path, 'r', encoding='utf8')as fp:

            json_data = json.load(fp)

            return len(json_data['channelList'])

    def getSiteInfo(self, num):

        path = os.path.join(self.dirPath, "site.json")

        with open(path, 'r', encoding='utf8')as fp:

            json_data = json.load(fp)

            length = len(json_data['channelList'])

            if num > length:

                print(f"站点的长度为{length},{num}已经超出这个长度")

                return None

            return json_data['channelList'][num-1]

    def getAllSiteInfo(self):

        path = os.path.join(self.dirPath, "site.json")

        with open(path, 'r', encoding='utf8')as fp:

            json_data = json.load(fp)

            return json_data['channelList']

    def getSiteName(self, siteInfo):

        return siteInfo['sourceList'][0]['name']

    def getSiteSource(self, siteInfo):

        return siteInfo['sourceList'][0]['source']

    def addSuccessSite(self, siteInfo):

        path = os.path.join(self.dirPath, "success.json")

        add = self.isSuccessSite(siteInfo)

        if add == False:

            with open(path, 'r+', encoding='utf8')as fp:

                json_data = json.load(fp)

            with open(path, 'w', encoding='utf8')as fp:

                json_data['channelList'].append(siteInfo)

                fp.write(json.dumps(json_data, indent=4))

    def isSuccessSite(self, siteInfo):

        path = os.path.join(self.dirPath, "success.json")

        with open(path, 'r+', encoding='utf8')as fp:

            json_data = json.load(fp)

            if siteInfo in list(json_data['channelList']):

                return True

            else:

                return False

def main(path):

    webRequests = WebRequests()

    webRequests.dirPath = path

    print(f"总共有{webRequests.getSiteNum()}个站点可以领取福卡")

    for i in range(1, webRequests.getSiteNum()+1):

        siteInfo = webRequests.getSiteInfo(i)

        siteName = webRequests.getSiteName(siteInfo)

        print(f"{i}:{siteName}")

    startSite = int(input("您要从第几个站点开始向后领取?"))

    mobile = input("请输入您的手机号:")

    for i in range(startSite, webRequests.getSiteNum()+1):

        siteInfo = webRequests.getSiteInfo(i)

        siteName = webRequests.getSiteName(siteInfo)

        siteSource = webRequests.getSiteSource(siteInfo)

        if webRequests.isSuccessSite(siteInfo):

            print(f"{i}:{siteName} 已经成功领取,跳过")

            continue

        print(f"{i}:{siteName} 正在领取中")

        result = webRequests.getCaptcha(mobile, siteSource)

        print(result['info'])

        if result['code'] == 1001:

            if str(result['info']).find("验证码发送过频繁") != -1:

                print("验证码需等待60s后才能获取,正在等待..")

                time.sleep(60)

                result = webRequests.getCaptcha(mobile, siteSource)

            if str(result['info']).find("人气太旺啦,稍候再试试") != -1:

                print("您的手机号在近期已经获得了多次支付宝验证码,已被支付宝限制,24小时内无法再获得验证码,程序终止。")

                break

            elif str(result['info']).find("人气太旺啦,稍候再试试") == -1 and str(result['info']).find("验证码发送过频繁") == -1:

                continue

        ackCode = input("请输入验证码:")

        result = webRequests.getResult(mobile, siteSource, ackCode)

        print(result['info'])

        if result['code'] == 1000 or result['info'].find("已经领取过奖品") != -1:

            webRequests.addSuccessSite(siteInfo)

        print("验证码需等待60s后才能获取,正在等待..")

        time.sleep(60)

    input("程序已结束,您可以关闭此程序了")

if __name__ == '__main__':

    path = os.path.dirname(os.path.realpath(sys.argv[0]))

    main(path)

软件截图

Alipay-wufu.exe(额外福卡) V1.0.1绿色版

其他版本下载

发表评论

昵称:
表情: 高兴 可 汗 我不要 害羞 好 下下下 送花 屎 亲亲
TOP
软件下载