硕士生
 
- 金币
- 3032
- 好评
- 14
- 信誉
- 101
|
发表于
2026-5-2 22:25:47
来自手机
|
显示全部楼层
来自 重庆
本帖最后由 则铭 于 2026-5-2 22:40 编辑
http://dav.luac.top?token=47e1546ee0962af91fa707998afd6a85010af3ef49a804e2&sig=e1e4e2b103ac0eb14eb48f3cf36c9fdb5eb6082c081931d2c4022f4eb9ea8019

通过Cloudflare Worker绕过虚拟主机cookie限制
- export default {
- async fetch(request) {
- const url = new URL(request.url);
- // 你的真实分享地址
- const targetUrl =
- "https://mt.gt.tc/davsig/share.php" + url.search;
- const response = await fetch(targetUrl, {
- headers: {
- "Cookie": "__test=746573745f706173736564"
- }
- });
- return new Response(response.body, {
- status: response.status,
- headers: {
- "Content-Type": response.headers.get("Content-Type"),
- "Cache-Control": "public, max-age=31536000"
- }
- });
- }
- };
复制代码 |
|