【WP】猿人学12_入门级js

https://match.yuanrenxue.cn/match/12

img_5

Fiddler分析发现,所有请求只是 page已经 m不一样img_6

这个m看起来就很像 base64,解码发现确实如此

img_7

下面直接构建Python代码:

import base64

import requests


def base64_encode_string(input_string):
    try:
        # 编码为Base64
        encoded_bytes = base64.b64encode(input_string.encode("utf-8"))
        encoded_string = encoded_bytes.decode("utf-8")
        return encoded_string
    except Exception as e:
        print(f"Base64编码时发生错误: {str(e)}")
        return None


ret = 0
headers = {
    "Accept": "application/json, text/javascript, */*; q=0.01",
    "Accept-Language": "zh-CN,zh;q=0.9",
    "Connection": "keep-alive",
    "Referer": "https://match.yuanrenxue.cn/match/12",
    "Sec-Fetch-Dest": "empty",
    "Sec-Fetch-Mode": "cors",
    "Sec-Fetch-Site": "same-origin",
    "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "X-Requested-With": "XMLHttpRequest",
    "sec-ch-ua": "\"Google Chrome\";v=\"123\", \"Not:A-Brand\";v=\"8\", \"Chromium\";v=\"123\"",
    "sec-ch-ua-mobile": "?0",
    "sec-ch-ua-platform": "\"Windows\""
}
cookies = {
    "qpfccr": "true",
    "sessionid": "729kf3d812ke104yb3zif4jt1talnpul",
    "no-alert3": "true",
    "m": "cccd537fe41173e0ceffc7cd1caa3180|1713248369000"
}
url = "https://match.yuanrenxue.cn/api/match/12"
for page_index in range(1, 6):
    params = {
        "page": str(page_index),
        "m": base64_encode_string("yuanrenxue" + str(page_index))
    }
    response = requests.get(url, headers=headers, cookies=cookies, params=params)

    for item in response.json()["data"]:
        ret += item.get("value")

print(ret)

img_8

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

D0ublecl1ck

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值