php-proxy
php-proxy copied to clipboard
A web proxy script written in PHP and built as an alternative to Glype.
This malformed href= is not correctly parsed: `` On Glype it is parsed correctly using this regex: `#(?>\s+[^>\s]+)*?\s*(?>(href|src|background|poster)\s*=(?!\\\\)\s*)(?>([\\\'"])?)((?(2)(?(?
Instead of doing all the checks for `magnet:` or `data:` inside each function on `ProxifyPlugin.php`: ``` private function html_src($matches){ if(stripos(trim($matches[2]), 'data:') === 0){ return $matches[0]; } return str_replace($matches[2], proxify_url($matches[2], $this->base_url),...
In the video page of youtube such as this one: `https://www.youtube.com/watch?v=GeoUELDgyM4` The images on the right of the page are not proxified, such as this one: `https://i.ytimg.com/vi/Q6dsRpVyyWs/hqdefault.jpg?custom=true&w=168&h=94&stc=true&jpg444=true&jpgq=90&sp=68&sigh=CdrLZ13uW2VKmznBKnQypFadBcI` In some places,...
If a proxied server responses with chunked content the header misleads the browser cause the content you get by cURL is already unchunked but you still send the transfer-encoding: chunked...
As resources may have a header like `Content-Type: text/javascript;charset=UTF-8`
Hi, Dropbox and GDrive fails with the proxy. Has anyone a plugin or a fix for this sites? There are scripting errors - CORS issues because of different origins.
The address is just encoded with base64, and address may be logged by gateways or firewalls it passed, which may be an unexpected privacy leak. Some firewalls now already have...
When posting a file and an additional field that holds an array, the `Request::buildPostBody()` function will fail as line 244 will fail. ``` $body .= "{$value}\r\n"; ``` This leads to...
Hi, i have trouble with a few websites. Because there is no Access-Control-Allow-Origin Header that allow the access to cross origin resource. has been blocked from loading by Cross-Origin Resource...
Nice job man (sorry for the english) ! On your demo site https://unblockvideos.com/ I found a SSRF failure. I don't know if it is the good place to share this...