From ac18d68bf8ee192c15dc6d2b9382361abb80a223 Mon Sep 17 00:00:00 2001 From: W1ndys Date: Tue, 7 Jan 2025 23:48:45 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=96=87=E6=A1=A3?= =?UTF-8?q?=EF=BC=8C=E5=88=9B=E5=BB=BA=E5=85=B3=E4=BA=8E=E6=9B=B2=E5=B8=88?= =?UTF-8?q?=E5=A4=A7=E5=9C=A8=E6=A0=A1=E7=94=9F=E8=AE=BA=E5=9D=9B=E6=8A=93?= =?UTF-8?q?=E5=8C=85=E5=88=86=E6=9E=90=E7=9A=84=E6=96=87=E7=AB=A0=EF=BC=8C?= =?UTF-8?q?=E5=8C=85=E5=90=AB=E8=AF=B7=E6=B1=82=E5=8C=85=E7=A4=BA=E4=BE=8B?= =?UTF-8?q?=E5=8F=8A=E7=9B=B8=E5=85=B3API=E8=B0=83=E7=94=A8=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...23\345\214\205\345\210\206\346\236\220.md" | 73 +++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 "source/_posts/\346\233\262\345\270\210\345\244\247\345\234\250\346\240\241\347\224\237\350\256\272\345\235\233\346\212\223\345\214\205\345\210\206\346\236\220.md" diff --git "a/source/_posts/\346\233\262\345\270\210\345\244\247\345\234\250\346\240\241\347\224\237\350\256\272\345\235\233\346\212\223\345\214\205\345\210\206\346\236\220.md" "b/source/_posts/\346\233\262\345\270\210\345\244\247\345\234\250\346\240\241\347\224\237\350\256\272\345\235\233\346\212\223\345\214\205\345\210\206\346\236\220.md" new file mode 100644 index 000000000..905621f12 --- /dev/null +++ "b/source/_posts/\346\233\262\345\270\210\345\244\247\345\234\250\346\240\241\347\224\237\350\256\272\345\235\233\346\212\223\345\214\205\345\210\206\346\236\220.md" @@ -0,0 +1,73 @@ +--- +title: "曲师大在校生论坛抓包分析" +tags: ["QFNU", "在校生论坛", "抓包", "分析"] +categories: ["QFNU", "在校生论坛"] +date: 2025-01-07 23:42:14 +cover: https://img.zxs-bbs.cn/common/logo.png +--- + +## 前言 + +在校生论坛,野生平台,爬着玩玩 + +### 请求包示例 + +获取帖子详情 + +```http +GET /api/client/topics/1906634 HTTP/1.1 +Host: api.zxs-bbs.cn +Xweb_xhr: 1 +User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 MicroMessenger/7.0.20.1781(0x6700143B) NetType/WIFI MiniProgramEnv/Windows WindowsWechat/WMPF WindowsWechat(0x63090c11)XWEB/11581 +Authorization: Bearer ******************** +Tenant: 1 +Content-Type: application/json +Accept: */* +Sec-Fetch-Site: cross-site +Sec-Fetch-Mode: cors +Sec-Fetch-Dest: empty +Referer: https://servicewechat.com/wx866b5984d70bdf22/61/page-frame.html +Accept-Encoding: gzip, deflate, br +Accept-Language: zh-CN,zh;q=0.9 +Connection: keep-alive +``` + +获取帖子评论 + +```http +GET /api/client/comments?topic_id=3106970&sort=hot&page=1 HTTP/1.1 +Host: api.zxs-bbs.cn +Xweb_xhr: 1 +User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 MicroMessenger/7.0.20.1781(0x6700143B) NetType/WIFI MiniProgramEnv/Windows WindowsWechat/WMPF WindowsWechat(0x63090c11)XWEB/11581 +Authorization: Bearer ******************** +Tenant: 1 +Content-Type: application/json +Accept: */* +Sec-Fetch-Site: cross-site +Sec-Fetch-Mode: cors +Sec-Fetch-Dest: empty +Referer: https://servicewechat.com/wx866b5984d70bdf22/61/page-frame.html +Accept-Encoding: gzip, deflate, br +Accept-Language: zh-CN,zh;q=0.9 +Connection: keep-alive +``` + +获取十大热帖 + +```http +GET /api/client/topics/top?school=QFNU HTTP/1.1 +Host: api.zxs-bbs.cn +Xweb_xhr: 1 +User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 MicroMessenger/7.0.20.1781(0x6700143B) NetType/WIFI MiniProgramEnv/Windows WindowsWechat/WMPF WindowsWechat(0x63090c11)XWEB/11581 +Authorization: Bearer ******************** +Tenant: 1 +Content-Type: application/json +Accept: */* +Sec-Fetch-Site: cross-site +Sec-Fetch-Mode: cors +Sec-Fetch-Dest: empty +Referer: https://servicewechat.com/wx866b5984d70bdf22/61/page-frame.html +Accept-Encoding: gzip, deflate, br +Accept-Language: zh-CN,zh;q=0.9 +Connection: keep-alive +``` From ddf518a2d203aad096567f9778b44334daf40755 Mon Sep 17 00:00:00 2001 From: W1ndys Date: Tue, 7 Jan 2025 23:54:26 +0800 Subject: [PATCH 2/2] =?UTF-8?q?Update=20=E6=9B=B2=E5=B8=88=E5=A4=A7?= =?UTF-8?q?=E5=9C=A8=E6=A0=A1=E7=94=9F=E8=AE=BA=E5=9D=9B=E6=8A=93=E5=8C=85?= =?UTF-8?q?=E5=88=86=E6=9E=90.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\235\233\346\212\223\345\214\205\345\210\206\346\236\220.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/source/_posts/\346\233\262\345\270\210\345\244\247\345\234\250\346\240\241\347\224\237\350\256\272\345\235\233\346\212\223\345\214\205\345\210\206\346\236\220.md" "b/source/_posts/\346\233\262\345\270\210\345\244\247\345\234\250\346\240\241\347\224\237\350\256\272\345\235\233\346\212\223\345\214\205\345\210\206\346\236\220.md" index 905621f12..d8bb85963 100644 --- "a/source/_posts/\346\233\262\345\270\210\345\244\247\345\234\250\346\240\241\347\224\237\350\256\272\345\235\233\346\212\223\345\214\205\345\210\206\346\236\220.md" +++ "b/source/_posts/\346\233\262\345\270\210\345\244\247\345\234\250\346\240\241\347\224\237\350\256\272\345\235\233\346\212\223\345\214\205\345\210\206\346\236\220.md" @@ -9,7 +9,7 @@ cover: https://img.zxs-bbs.cn/common/logo.png ## 前言 在校生论坛,野生平台,爬着玩玩 - +推荐阅读:【微信小程序Burp+Proxifter抓包详细教程 - CSDN App】https://blog.csdn.net/CKT_GOD/article/details/134076065?sharetype=blog&shareId=134076065&sharerefer=APP&sharesource=m0_73731989&sharefrom=link ### 请求包示例 获取帖子详情