Skip to content

Commit

Permalink
fixes most of the encoding issues in embeded javascripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ladddder committed Nov 21, 2023
1 parent 79a229f commit ddba232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxychain/responsemodifers/rewrite_http_resource_urls.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func (r *HTMLResourceURLRewriter) Read(p []byte) (int, error) {
}

r.tokenBuffer.Reset()
r.tokenBuffer.WriteString(r.currentToken.String())
r.tokenBuffer.WriteString(html.UnescapeString(r.currentToken.String()))
r.currentTokenProcessed = false
r.currentTokenIndex = 0
}
Expand Down

0 comments on commit ddba232

Please sign in to comment.