-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcheck_proxy.php
33 lines (28 loc) · 1015 Bytes
/
check_proxy.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
if (isset($_GET['proxy'])) {
$proxy = $_GET['proxy'];
$result = isProxyWorking($proxy);
echo json_encode(['success' => $result]);
} else {
echo json_encode(['success' => false, 'message' => 'Proxy not provided.']);
}
function isProxyWorking($proxy) {
$proxyUrl = 'http://' . $proxy;
$testUrl = 'http://httpbin.org/ip'; // URL para verificar el proxy (solo HTTP)
$options = array(
'http' => array(
'proxy' => $proxyUrl,
'request_fulluri' => true,
),
);
$context = stream_context_create($options);
$response = @file_get_contents($testUrl, false, $context);
// Verificar si la respuesta contiene la dirección IP del proxy
if ($response !== false) {
$responseJson = json_decode($response, true);
if (isset($responseJson['origin'])) {
return true; // El proxy está funcionando correctamente
}
}
return false; // El proxy no está funcionando o hay un error en la solicitud
}