Questions tagged [proxies]
215 questions
0
votes
1 answer
Can't Curl to PHP Page with $_SERVER Variables
A bit confused about this. Trying to find a way to detect proxies and their type. Not sure if there are restrictions, or if some option needs to be enabled or what.
Here's the php script uploaded to one of my live sites
…

Brian Bruman
- 883
- 12
- 28
0
votes
0 answers
Symfony 4 doctrine orm proxies problem when working with docker compose and Windows 10
I'm working with a dockerized symfony 4 application. when I tried to clear cache i received this error:
Failed to copy "/home/wwwroot/sf4/var/cache/dev/doctrine/orm/Proxies/__CG__AppEntityCountry.php" to…

Claude
- 81
- 1
- 9
0
votes
0 answers
PowerShell Credentials being invalidated for REST API Requests
I have a whole lot of requests that need to be made, hundreds infact. I run a simple for loop which then runs a new request for each object in an array.
The odd thing is that initially, these requests all succeed. However, once we get to the later…
user10641148
0
votes
0 answers
C# Proxy Checking
So this code is not doing anything when Im passing a list of proxies to it. I can confirm everything else is working, just not this part. Ive done this in VB.NET but not in C# and it should be practically the same dang thang... Ideally I wanted…

Lewis Curl
- 1
- 2
0
votes
0 answers
Override default proxy creation behavior
I have a project with the following xml configuration:
Now I…

Gonzalo Calvo
- 304
- 4
- 15
0
votes
1 answer
How to properly checks socks5 proxies
Hello today i posted some Socks5 proxies on a forum and some person went in discussion with me and said many of the proxies where "connect" proxies and socks4 proxies but i don't think my code is checking for any socks4 proxies:
def process(self,…

Thiplol
- 165
- 1
- 1
- 13
0
votes
1 answer
How to use file_get_contents with proxy?
When I use file_get_contents with SSL and Proxy I have the following errors:
Warning: file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages: error:1408F10B:SSL routines:ssl3_get_record:wrong version number in…

Alex Petrov
- 27
- 5
0
votes
1 answer
Exceeding maximum stack call size using Proxies
I'm trying to make a proxy for a certain object to check if the properties are either accessed or modified then console.log the property that was changed. I'm fairly new to JavaScript so I'm not sure what could be causing the stack to overflow. I…

Akeem
- 98
- 1
- 2
- 10
0
votes
0 answers
VB.NET WebClient Proxy Not Connecting To Google
I'm working on a small application that can query google from the WebClient class in VB.NET. I noticed that the WebClient queries Google just fine without the proxy property being added, but I'd like to also have the capability of using proxies to…
user4908224
0
votes
1 answer
docker-compose build fails with weird python errors
docker-compose build
Traceback (most recent call last):
File "docker-compose", line 6, in
File "compose/cli/main.py", line 68, in main
File "compose/cli/main.py", line 118, in perform_command
File "compose/cli/command.py",…

chandra deepak kasiraju
- 111
- 1
- 3
- 7
0
votes
1 answer
nodeJS - socks.Agent is not a constructor
var fs = require('fs');
var socks = require('socks');
var proxies = fs.readFileSync('proxies.txt').replace(/\r/g, '').split('\n');
function createAgent() {
var proxy = proxies[Math.floor(Math.random() * proxies.length)];
return…

xmile90
- 3
- 6
0
votes
1 answer
Switching proxies in python: Psuedo code
Lets say I have a website that I want to scrape. Ex. cheapoair.com
I want to use a normal requests in python to scrape the data on the first, hypothetical page. If I end up being blocked by the server, I want to switch to a proxy. I have a list of…

CENTURION
- 355
- 3
- 11
0
votes
1 answer
Send Proxies to a URL vb.net
Hello does anyone know how I can send proxies to a URL in vb.net?
Like if I put a proxy in a textbox it will be sent to the URL when I click a button, any help? Thanks.

Terry
- 1
0
votes
0 answers
HTTPS Version of $_SERVER['HTTP_X_FORWARDED_FOR'] PHP
Does anyone know if there is a HTTPS 'version' of $_SERVER['HTTP_X_FORWARDED_FOR'] therefore I can resolve https proxies? If not, does anyone know a way to resolve the actual IP of HTTPS proxy user in PHP?

John Doe
- 41
- 1
- 2
- 6
0
votes
2 answers
PHP CURL - how to tell if the entire file requested was not fully downloaded
I'm using CURL and a proxy to grab some xml files, occasionally only part of the XML document comes through and fails when I try to load/use the xml (simplexml_load_string).
I thought something like..
if(curl_errno($ch))
{
$error =…

Steffan
- 307
- 5
- 16