news 2026/5/1 6:51:34

盼之代售 分析 decode__1174

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
盼之代售 分析 decode__1174

声明:
本文章中所有内容仅供学习交流使用,不用于其他任何目的,抓包内容、敏感网址、数据接口等均已做脱敏处理,严禁用于商业用途和非法用途,否则由此产生的一切后果均与作者无关!
部分python代码

json_data = { "order": "DESC", "sort": "section2", "page": 1, "pageSize": 21, "action": { "gameId": "1767", "goodsCatalogueId": 6, "merchantMark": None, "keywords": [], "searchWords": [], "searchPropertyIds": [], "unionGameIds": [], "goodsSearchActions": [] } } result = cp1.call('decode1174' ,json_data) url = result['url'] header = result['header'] print(header) # url = result['url'] print(url) headers = { 'PZTimestamp': str(header['Timestamp']), 'PZVersion': '1.0.0', 'PZVersionCode': '1', 'Pragma': 'no-cache', 'Random': str(header['Random']), 'Referer': 'https://www.pzds.com/', 'Sec-Fetch-Dest': 'empty', 'Sec-Fetch-Mode': 'cors', 'Sec-Fetch-Site': 'same-site', 'Sign': header['strMd5'], 'x-oss-forbid-overwrite': 'true', } response = session.post( url, headers=headers, json=json_data, ) print(response.text)
json_data = { "order": "DESC", "sort": "section2", "page": 1, "pageSize": 21, "action": { "gameId": "1767", "goodsCatalogueId": 6, "merchantMark": None, "keywords": [], "searchWords": [], "searchPropertyIds": [], "unionGameIds": [], "goodsSearchActions": [] } } result = cp1.call('decode1174' ,json_data) url = result['url'] header = result['header'] print(header) # url = result['url'] print(url) headers = { 'PZTimestamp': str(header['Timestamp']), 'PZVersion': '1.0.0', 'PZVersionCode': '1', 'Pragma': 'no-cache', 'Random': str(header['Random']), 'Referer': 'https://www.pzds.com/', 'Sec-Fetch-Dest': 'empty', 'Sec-Fetch-Mode': 'cors', 'Sec-Fetch-Site': 'same-site', 'Sign': header['strMd5'], 'x-oss-forbid-overwrite': 'true', } response = session.post( url, headers=headers, json=json_data, ) print(response.text)

结果

总结

1.出于安全考虑,本章未提供完整流程,调试环节省略较多,只提供大致思路,具体细节要你自己还原,相信你也能调试出来。

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/4/29 2:58:19

AlienFX Tools终极解决方案:告别AWCC臃肿的完整控制指南

AlienFX Tools终极解决方案:告别AWCC臃肿的完整控制指南 【免费下载链接】alienfx-tools Alienware systems lights, fans, and power control tools and apps 项目地址: https://gitcode.com/gh_mirrors/al/alienfx-tools 还在为Alienware Command Center的…

作者头像 李华
网站建设 2026/4/22 17:58:39

UI自动化测试框架:PO 模式+数据驱动

🍅 点击文末小卡片,免费获取软件测试全套资料,资料在手,涨薪更快1. PO 设计模式简介什么是 PO 模式?PO(PageObject)设计模式将某个页面的所有元素对象定位和对元素对象的操作封装成一个 Page 类…

作者头像 李华
网站建设 2026/4/17 11:00:01

无网络环境下的开发神器:Awesome Claude Code离线使用全攻略

无网络环境下的开发神器:Awesome Claude Code离线使用全攻略 【免费下载链接】awesome-claude-code A curated list of awesome commands, files, and workflows for Claude Code 项目地址: https://gitcode.com/GitHub_Trending/aw/awesome-claude-code 在网…

作者头像 李华
网站建设 2026/5/1 1:56:40

55、Tectia服务器配置文件扩展与插件使用指南

Tectia服务器配置文件扩展与插件使用指南 1. 子配置文件的作用与使用 在某些情况下,根据连接或会话的类型自定义SSH服务器配置是很有用的。例如,系统管理员可能希望对来自防火墙外部客户端的连接施加更强的认证要求,或者记录特殊用途来宾账户活动的更详细日志信息。 Tect…

作者头像 李华
网站建设 2026/4/24 21:23:51

51、Python网络编程与数据处理:模块功能与应用详解

Python网络编程与数据处理:模块功能与应用详解 1. 网络浏览器操作模块(webbrowser) 1.1 模块概述 webbrowser模块提供了以平台无关的方式在网络浏览器中打开文档的实用功能,主要用于开发和测试场景。例如,若编写了一个生成HTML输出的脚本,可使用该模块的函数自动引导系…

作者头像 李华