© 2024 halopro.com. All Rights Reserved
- Residential Proxies
- Static ISP Proxies
- Rotating ISP Proxies
- Rotating Datacenter Proxies
- Dedicated Datacenter Proxies
No data
curl -x proxy.halopro.vip:7777 -U "USER:PASS" ipinfo.halopro.vip
Copy
import requests
username = "USER"
password = "PASS"
proxy = "proxy.halopro.vip:7777"
proxies = {
'http': f'http://{username}:{password}@{proxy}',
'https': f'http://{username}:{password}@{proxy}'
}
response = requests.request(
'GET',
'https://ipinfo.halopro.vip',
proxies=proxies,
)
print(response.text)
Copy
import fetch from 'node-fetch';
import createHttpsProxyAgent from 'https-proxy-agent'
const username = 'USER';
const password = 'PASS';
const proxy = 'proxy.halopro.vip:7777'
const agent = createHttpsProxyAgent(
`http://${username}:${password}@${proxy}`
);
const response = await fetch('https://ipinfo.halopro.vip', {
method: 'get',
agent: agent,
});
console.log(await response.text());
Copy
<?php
$username = 'USER';
$password = 'PASS';
$proxy = 'proxy.halopro.vip:7777';
$query = curl_init('https://ipinfo.halopro.vip');
curl_setopt($query, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($query, CURLOPT_PROXY, "http://$proxy");
curl_setopt($query, CURLOPT_PROXYUSERPWD, "$username:$password");
$output = curl_exec($query);
curl_close($query);
if ($output)
echo $output;
?>
Copy
package main
import (
"fmt"
"io/ioutil"
"net/http"
"net/url"
)
func main() {
const username = "USER"
const password = "PASS"
const proxy = "proxy.halopro.vip:7777"
proxyUrl, _ := url.Parse(
fmt.Sprintf(
"http://%s:%s@%s",
username,
password,
proxy,
),
)
client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyUrl)}}
request, _ := http.NewRequest("GET",
"https://ipinfo.halopro.vip",
nil,
)
request.SetBasicAuth(username, password)
response, err := client.Do(request)
if err != nil {
fmt.Println(err)
return
}
responseText, _ := ioutil.ReadAll(response.Body)
fmt.Println(string(responseText))
}
Copy
package example;
import org.apache.http.HttpHost;
import org.apache.http.client.fluent.*;
public class Main {
public static void main(String[] args) throws Exception {
String username = "USER";
String password = "PASS";
String proxyHost = "proxy.halopro.vip";
int proxyPort = 7777;
HttpHost entry = new HttpHost(proxyHost, proxyPort);
String query = Executor.newInstance()
.auth(entry, username, password)
.execute(Request.Get("https://ipinfo.halopro.vip")
.viaProxy(entry))
.returnContent()
.asString();
System.out.println(query);
}
}
Copy
using System;
using System.Net;
class Example
{
static void Main()
{
var username = "USER";
var password = "PASS";
var proxy = "proxy.halopro.vip:7777";
var client = new WebClient();
client.Proxy = new WebProxy(proxy);
client.Proxy.Credentials = new NetworkCredential(username, password);
Console.WriteLine(client.DownloadString("https://ipinfo.halopro.vip"));
}
}
Copy
curl -x ip:2333 -U "USER:PASS" ipinfo.halopro.vip
Copy
import requests
username = "USER"
password = "PASS"
proxy = "ip:2333"
proxies = {
'http': f'http://{username}:{password}@{proxy}',
'https': f'http://{username}:{password}@{proxy}'
}
response = requests.request(
'GET',
'https://ipinfo.halopro.vip',
proxies=proxies,
)
print(response.text)
Copy
import fetch from 'node-fetch';
import createHttpsProxyAgent from 'https-proxy-agent'
const username = 'USER';
const password = 'PASS';
const proxy = 'ip:2333'
const agent = createHttpsProxyAgent(
`http://${username}:${password}@${proxy}`
);
const response = await fetch('https://ipinfo.halopro.vip', {
method: 'get',
agent: agent,
});
console.log(await response.text());
Copy
<?php
$username = 'USER';
$password = 'PASS';
$proxy = 'ip:2333';
$query = curl_init('https://ipinfo.halopro.vip');
curl_setopt($query, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($query, CURLOPT_PROXY, "http://$proxy");
curl_setopt($query, CURLOPT_PROXYUSERPWD, "$username:$password");
$output = curl_exec($query);
curl_close($query);
if ($output)
echo $output;
?>
Copy
package main
import (
"fmt"
"io/ioutil"
"net/http"
"net/url"
)
func main() {
const username = "USER"
const password = "PASS"
const proxy = "ip:2333"
proxyUrl, _ := url.Parse(
fmt.Sprintf(
"http://%s:%s@%s",
username,
password,
proxy,
),
)
client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyUrl)}}
request, _ := http.NewRequest("GET",
"https://ipinfo.halopro.vip",
nil,
)
request.SetBasicAuth(username, password)
response, err := client.Do(request)
if err != nil {
fmt.Println(err)
return
}
responseText, _ := ioutil.ReadAll(response.Body)
fmt.Println(string(responseText))
}
Copy
package example;
import org.apache.http.HttpHost;
import org.apache.http.client.fluent.*;
public class Main {
public static void main(String[] args) throws Exception {
String username = "USER";
String password = "PASS";
String proxyHost = "ip";
int proxyPort = 2333;
HttpHost entry = new HttpHost(proxyHost, proxyPort);
String query = Executor.newInstance()
.auth(entry, username, password)
.execute(Request.Get("https://ipinfo.halopro.vip")
.viaProxy(entry))
.returnContent()
.asString();
System.out.println(query);
}
}
Copy
using System;
using System.Net;
class Example
{
static void Main()
{
var username = "USER";
var password = "PASS";
var proxy = "ip:2333";
var client = new WebClient();
client.Proxy = new WebProxy(proxy);
client.Proxy.Credentials = new NetworkCredential(username, password);
Console.WriteLine(client.DownloadString("https://ipinfo.halopro.vip"));
}
}
Copy
curl -x proxy.halopro.vip:7777 -U "USER-zone-isp:PASS" ipinfo.halopro.vip
Copy
import requests
username = "USER-zone-isp"
password = "PASS"
proxy = "proxy.halopro.vip:7777"
proxies = {
'http': f'http://{username}:{password}@{proxy}',
'https': f'http://{username}:{password}@{proxy}'
}
response = requests.request(
'GET',
'https://ipinfo.halopro.vip',
proxies=proxies,
)
print(response.text)
Copy
import fetch from 'node-fetch';
import createHttpsProxyAgent from 'https-proxy-agent'
const username = 'USER-zone-isp';
const password = 'PASS';
const proxy = 'proxy.halopro.vip:7777'
const agent = createHttpsProxyAgent(
`http://${username}:${password}@${proxy}`
);
const response = await fetch('https://ipinfo.halopro.vip', {
method: 'get',
agent: agent,
});
console.log(await response.text());
Copy
<?php
$username = 'USER-zone-isp';
$password = 'PASS';
$proxy = 'proxy.halopro.vip:7777';
$query = curl_init('https://ipinfo.halopro.vip');
curl_setopt($query, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($query, CURLOPT_PROXY, "http://$proxy");
curl_setopt($query, CURLOPT_PROXYUSERPWD, "$username:$password");
$output = curl_exec($query);
curl_close($query);
if ($output)
echo $output;
?>
Copy
package main
import (
"fmt"
"io/ioutil"
"net/http"
"net/url"
)
func main() {
const username = "USER-zone-isp"
const password = "PASS"
const proxy = "proxy.halopro.vip:7777"
proxyUrl, _ := url.Parse(
fmt.Sprintf(
"http://%s:%s@%s",
username,
password,
proxy,
),
)
client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyUrl)}}
request, _ := http.NewRequest("GET",
"https://ipinfo.halopro.vip",
nil,
)
request.SetBasicAuth(username, password)
response, err := client.Do(request)
if err != nil {
fmt.Println(err)
return
}
responseText, _ := ioutil.ReadAll(response.Body)
fmt.Println(string(responseText))
}
Copy
package example;
import org.apache.http.HttpHost;
import org.apache.http.client.fluent.*;
public class Main {
public static void main(String[] args) throws Exception {
String username = "USER-zone-isp";
String password = "PASS";
String proxyHost = "proxy.halopro.vip";
int proxyPort = 7777;
HttpHost entry = new HttpHost(proxyHost, proxyPort);
String query = Executor.newInstance()
.auth(entry, username, password)
.execute(Request.Get("https://ipinfo.halopro.vip")
.viaProxy(entry))
.returnContent()
.asString();
System.out.println(query);
}
}
Copy
using System;
using System.Net;
class Example
{
static void Main()
{
var username = "USER-zone-isp";
var password = "PASS";
var proxy = "proxy.halopro.vip:7777";
var client = new WebClient();
client.Proxy = new WebProxy(proxy);
client.Proxy.Credentials = new NetworkCredential(username, password);
Console.WriteLine(client.DownloadString("https://ipinfo.halopro.vip"));
}
}
Copy
curl -x proxy.halopro.vip:7777 -U "USER-zone-static:PASS" ipinfo.halopro.vip
Copy
import requests
username = "USER-zone-static"
password = "PASS"
proxy = "proxy.halopro.vip:7777"
proxies = {
'http': f'http://{username}:{password}@{proxy}',
'https': f'http://{username}:{password}@{proxy}'
}
response = requests.request(
'GET',
'https://ipinfo.halopro.vip',
proxies=proxies,
)
print(response.text)
Copy
import fetch from 'node-fetch';
import createHttpsProxyAgent from 'https-proxy-agent'
const username = 'USER-zone-static';
const password = 'PASS';
const proxy = 'proxy.halopro.vip:7777'
const agent = createHttpsProxyAgent(
`http://${username}:${password}@${proxy}`
);
const response = await fetch('https://ipinfo.halopro.vip', {
method: 'get',
agent: agent,
});
console.log(await response.text());
Copy
<?php
$username = 'USER-zone-static';
$password = 'PASS';
$proxy = 'proxy.halopro.vip:7777';
$query = curl_init('https://ipinfo.halopro.vip');
curl_setopt($query, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($query, CURLOPT_PROXY, "http://$proxy");
curl_setopt($query, CURLOPT_PROXYUSERPWD, "$username:$password");
$output = curl_exec($query);
curl_close($query);
if ($output)
echo $output;
?>
Copy
package main
import (
"fmt"
"io/ioutil"
"net/http"
"net/url"
)
func main() {
const username = "USER-zone-static"
const password = "PASS"
const proxy = "proxy.halopro.vip:7777"
proxyUrl, _ := url.Parse(
fmt.Sprintf(
"http://%s:%s@%s",
username,
password,
proxy,
),
)
client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyUrl)}}
request, _ := http.NewRequest("GET",
"https://ipinfo.halopro.vip",
nil,
)
request.SetBasicAuth(username, password)
response, err := client.Do(request)
if err != nil {
fmt.Println(err)
return
}
responseText, _ := ioutil.ReadAll(response.Body)
fmt.Println(string(responseText))
}
Copy
package example;
import org.apache.http.HttpHost;
import org.apache.http.client.fluent.*;
public class Main {
public static void main(String[] args) throws Exception {
String username = "USER-zone-static";
String password = "PASS";
String proxyHost = "proxy.halopro.vip";
int proxyPort = 7777;
HttpHost entry = new HttpHost(proxyHost, proxyPort);
String query = Executor.newInstance()
.auth(entry, username, password)
.execute(Request.Get("https://ipinfo.halopro.vip")
.viaProxy(entry))
.returnContent()
.asString();
System.out.println(query);
}
}
Copy
using System;
using System.Net;
class Example
{
static void Main()
{
var username = "USER-zone-static";
var password = "PASS";
var proxy = "proxy.halopro.vip:7777";
var client = new WebClient();
client.Proxy = new WebProxy(proxy);
client.Proxy.Credentials = new NetworkCredential(username, password);
Console.WriteLine(client.DownloadString("https://ipinfo.halopro.vip"));
}
}
Copy
curl -x ip:2333 -U "USER:PASS" ipinfo.halopro.vip
Copy
import requests
username = "USER"
password = "PASS"
proxy = "ip:2333"
proxies = {
'http': f'http://{username}:{password}@{proxy}',
'https': f'http://{username}:{password}@{proxy}'
}
response = requests.request(
'GET',
'https://ipinfo.halopro.vip',
proxies=proxies,
)
print(response.text)
Copy
import fetch from 'node-fetch';
import createHttpsProxyAgent from 'https-proxy-agent'
const username = 'USER';
const password = 'PASS';
const proxy = 'ip:2333'
const agent = createHttpsProxyAgent(
`http://${username}:${password}@${proxy}`
);
const response = await fetch('https://ipinfo.halopro.vip', {
method: 'get',
agent: agent,
});
console.log(await response.text());
Copy
<?php
$username = 'USER';
$password = 'PASS';
$proxy = 'ip:2333';
$query = curl_init('https://ipinfo.halopro.vip');
curl_setopt($query, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($query, CURLOPT_PROXY, "http://$proxy");
curl_setopt($query, CURLOPT_PROXYUSERPWD, "$username:$password");
$output = curl_exec($query);
curl_close($query);
if ($output)
echo $output;
?>
Copy
package main
import (
"fmt"
"io/ioutil"
"net/http"
"net/url"
)
func main() {
const username = "USER"
const password = "PASS"
const proxy = "ip:2333"
proxyUrl, _ := url.Parse(
fmt.Sprintf(
"http://%s:%s@%s",
username,
password,
proxy,
),
)
client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyUrl)}}
request, _ := http.NewRequest("GET",
"https://ipinfo.halopro.vip",
nil,
)
request.SetBasicAuth(username, password)
response, err := client.Do(request)
if err != nil {
fmt.Println(err)
return
}
responseText, _ := ioutil.ReadAll(response.Body)
fmt.Println(string(responseText))
}
Copy
package example;
import org.apache.http.HttpHost;
import org.apache.http.client.fluent.*;
public class Main {
public static void main(String[] args) throws Exception {
String username = "USER";
String password = "PASS";
String proxyHost = "ip";
int proxyPort = 2333;
HttpHost entry = new HttpHost(proxyHost, proxyPort);
String query = Executor.newInstance()
.auth(entry, username, password)
.execute(Request.Get("https://ipinfo.halopro.vip")
.viaProxy(entry))
.returnContent()
.asString();
System.out.println(query);
}
}
Copy
using System;
using System.Net;
class Example
{
static void Main()
{
var username = "USER";
var password = "PASS";
var proxy = "ip:2333";
var client = new WebClient();
client.Proxy = new WebProxy(proxy);
client.Proxy.Credentials = new NetworkCredential(username, password);
Console.WriteLine(client.DownloadString("https://ipinfo.halopro.vip"));
}
}
Copy