Last active
February 24, 2024 18:29
-
-
Save iovar/9091078 to your computer and use it in GitHub Desktop.
Simple PHP Proxy Script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Warning! Read and use at your own risk! | |
* | |
* This tiny proxy script is completely transparent and it passes | |
* all requests and headers without any checking of any kind. | |
* The same happens with JSON data. They are simply forwarded. | |
* | |
* This is just an easy and convenient solution for the AJAX | |
* cross-domain request issue, during development. | |
* No sanitization of input is made either, so use this only | |
* if you are sure your requests are made correctly and | |
* your urls are valid. | |
* | |
*/ | |
$method = $_SERVER['REQUEST_METHOD']; | |
if ($_GET && $_GET['url']) { | |
$headers = getallheaders(); | |
$headers_str = []; | |
$url = $_GET['url']; | |
foreach ( $headers as $key => $value){ | |
if($key == 'Host') | |
continue; | |
$headers_str[]=$key.":".$value; | |
} | |
$ch = curl_init($url); | |
curl_setopt($ch,CURLOPT_URL, $url); | |
if( $method !== 'GET') { | |
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); | |
} | |
if($method == "PUT" || $method == "PATCH" || ($method == "POST" && empty($_FILES))) { | |
$data_str = file_get_contents('php://input'); | |
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_str); | |
//error_log($method.': '.$data_str.serialize($_POST).'\n',3, 'err.log'); | |
} | |
elseif($method == "POST") { | |
$data_str = array(); | |
if(!empty($_FILES)) { | |
foreach ($_FILES as $key => $value) { | |
$full_path = realpath( $_FILES[$key]['tmp_name']); | |
$data_str[$key] = '@'.$full_path; | |
} | |
} | |
//error_log($method.': '.serialize($data_str+$_POST).'\n',3, 'err.log'); | |
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_str+$_POST); | |
} | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers_str ); | |
$result = curl_exec($ch); | |
curl_close($ch); | |
header('Content-Type: application/json'); | |
echo $result; | |
} | |
else { | |
echo $method; | |
var_dump($_POST); | |
var_dump($_GET); | |
$data_str = file_get_contents('php://input'); | |
echo $data_str; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is a working code: