Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/W1ndys/Blog
Browse files Browse the repository at this point in the history
  • Loading branch information
W1ndys committed Jan 8, 2025
2 parents e560a1c + ddf518a commit 38dfc3a
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions source/_posts/曲师大在校生论坛抓包分析.md
Original file line number Diff line number Diff line change
@@ -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
---

## 前言

在校生论坛,野生平台,爬着玩玩
推荐阅读:【微信小程序Burp+Proxifter抓包详细教程 - CSDN App】https://blog.csdn.net/CKT_GOD/article/details/134076065?sharetype=blog&shareId=134076065&sharerefer=APP&sharesource=m0_73731989&sharefrom=link
### 请求包示例

获取帖子详情

```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
```

0 comments on commit 38dfc3a

Please sign in to comment.