沃尔玛APP 礼品卡绑定算法分析
声明
本文章中所有内容仅供学习交流使用,不用于其他任何目的,抓包内容、敏感网址、数据接口 等均已做脱敏处理,严禁用于商业用途和非法用途,否则由此产生的一切后果均与作者无关!
有相关问题请第一时间点击头像看简介或私信联系我删除博客!
部分python 代码
cardPwd = D(。。。。。。。。。。。) headers = { "Content-Type": "application/json", "Accept": "*/*", "Accept-Language": "zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7" } url = "/ouser-web/frontapi/giftCard/bind/card" data = { "cardNo": cardNo, "cardPwd": cardPwd, "positioner": "" } data = json.dumps(data, separators=(',', ':')) response = requests.post(url, headers=headers, data=data, cookies=cookies) print(response.text) print(response) else: print("secret not found")