|
|
发表于 2025-12-9 23:12:15
|
显示全部楼层
贵州省贵阳市
这个简单:
| 变量名 | 类 型 | 静态 | 数组 | 备 注 | | POST地址 | 文本型 | | | | boundary | 文本型 | | | | headers0 | 类_POST数据类 | | | | headersS | 文本型 | | | | post0 | 类_POST数据类_字节集 | | | | postB | 字节集 | | | | 结果 | 字节集 | | |
POST地址 = “https://***************.com/” boundary = 取重复文本 (4, “-”) + “WebKitFormBoundary” + 校验_取md5_文本 (文本_取随机字符 (18, 位或 (1, 2, 4 )), , , )headers0. 置值 (“Content-Type”, “multipart/form-data; boundary=” + boundary )headers0. 置值 (“Referer”, “来源”) headers0. 置值 (“Content-Length”, 到文本 (取字节集长度 (到字节集 (“内容内容内容”)) )) headers0. 置值 (“User-Agent”, “Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36”)headersS = headers0. 获取协议头数据 ()post0. 添加 (“username”, 到字节集 (“chen”), , )post0. 添加 (“password”, 到字节集 (“1111”), , )post0. 添加 (“product”, 到字节集 (“其他”), , )post0. 添加 (“content”, 到字节集 (“内容内容内容”), , )postB = post0. 获取Post数据 (boundary, )调试输出 (到文本 (postB )) 结果 = 网页_访问_对象 (POST地址, 1, , , , headersS, , , 真, postB, , , , , , , , , )调试输出 (编码_Utf8到Ansi (结果 ))
|
|