From 5c9ba5da8a7118fb7c49c74f9e9caaf0c817a7f4 Mon Sep 17 00:00:00 2001 From: XOF Date: Mon, 15 Dec 2025 18:37:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20proxy/rewriter.go?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proxy/rewriter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/rewriter.go b/proxy/rewriter.go index e6da60a..d2f5c20 100644 --- a/proxy/rewriter.go +++ b/proxy/rewriter.go @@ -52,7 +52,7 @@ func (r *ContentRewriter) rewriteNode(n *html.Node) { } script.AppendChild(&html.Node{ Type: html.TextNode, - Data: `(function(){var t="/p/` + r.token + `";function r(u){if(typeof u!=="string")return u;if(u.startsWith(t))return u;if(u.startsWith("/")){return t+u}return u}var o=XMLHttpRequest.prototype.open;XMLHttpRequest.prototype.open=function(m,u){arguments[1]=r(u);return o.apply(this,arguments)};var f=window.fetch;window.fetch=function(u,opt){return f.call(this,r(u),opt)}})();`, + Data: `(function(){var t="/p/` + r.token + `";function r(u){if(!u||typeof u!=="string")return u;if(u.startsWith(t)||u.startsWith("http")||u.startsWith("data:")||u.startsWith("blob:"))return u;if(u.startsWith("/")){return t+u}return u}var o=XMLHttpRequest.prototype.open;XMLHttpRequest.prototype.open=function(m,u){arguments[1]=r(u);return o.apply(this,arguments)};var f=window.fetch;window.fetch=function(u,opt){return f.call(this,r(u),opt)};var oa=Element.prototype.setAttribute;Element.prototype.setAttribute=function(n,v){if((n==="href"||n==="src")&&typeof v==="string"){v=r(v)}return oa.call(this,n,v)};var oi=Image;window.Image=function(){var i=new oi();var os=Object.getOwnPropertyDescriptor(oi.prototype,"src").set;Object.defineProperty(i,"src",{set:function(v){os.call(this,r(v))}});return i}})();`, }) script.NextSibling = n.FirstChild n.FirstChild.PrevSibling = script