Questions tagged [proxies]
215 questions
2
votes
1 answer
CORS Web request through a proxy is security breach?
I see that we can't make direct web request to the web server through another domain when CORS is not enabled.
However there are multiple way to break this security (ex. using proxies) and these tweaks works like a charm.
Recently I had a similar…

Paresh Varde
- 1,084
- 3
- 16
- 39
2
votes
0 answers
How to make requests to a HTTPS page using urllib and proxies on python3
I am making something where I need to be sending requests with post data to a https page. While trying to make this I got the following error.
urllib.error.HTTPError: HTTP Error 500: Domain Not Found
So I made something else really quick just for…

Mruusi
- 43
- 5
2
votes
1 answer
Julia extremely slow behind firewall
I work at an organization where I need proxies. I don't know much about the network security and how it is set up, but I do know that it makes adding and building Julia packages extremely slow. Is there some way to speed this up or am I…

v2v1
- 640
- 8
- 18
2
votes
1 answer
Is it possible to use shared hosting IP as a proxy?
Is it possible to use my shared hosting IP as a proxy? I have cPanel access to my hosting, and I need a proxy to use in a software. Is it possible and how? Thanks

hasani
- 43
- 1
- 7
2
votes
0 answers
Validate proxied connections with the .htaccess
I'm struggling with the following issue.
My goal is to deny all connections to my site except for a couple of IPs. This is what I have in my .htaccess file.
order deny,allow
deny from all
allow from **.***.**.*** #person1
allow from **.***.**.***…

cabesd
- 31
- 5
2
votes
0 answers
Using multiple proxies across different JCEF browser instances
This question pertains to JCEF chromium embedded framework and it's ability to use proxies:
Hi, I'm currently creating multiple browser instances and passing a proxy to them using the --proxy-server command line flag and passing that into…

Brian Bokoske
- 61
- 5
2
votes
2 answers
PHP multi curl - find out what proxy was used for a particular curl handle
I'm using multi curl with anonymous proxies, and I want to flag the proxies based on performance and location etc after the curl handle is returned. I've tried curl_getinfo() but that does not return information about the proxy used for that curl…

Steffan
- 307
- 5
- 16
2
votes
3 answers
Is it possible to access https pages through a proxy with Scrapy?
I can successfully access http pages through a proxy in Scrapy, but I cannot access https sites. I've researched the topic, but it's still unclear to me. Is it possible to access https pages through a proxy with Scrapy? Do I need to patch anything?…

patrick.s
- 43
- 5
2
votes
3 answers
"SAP Connector for .NET": Generate proxies without Visual Studio 2003
Are there possibilities/ways to generate "SAP Connector for .NET"-proxies without Visual Studio 2003, so that they can be used in Visual Studio 2008 ?

Kottan
- 4,944
- 9
- 41
- 67
2
votes
0 answers
OutOfMemory error Permgen space due to dynamic proxy objects
I am repeatedly deploying and undeploying the same Spring based application on my server.
This is an Oracle Event Processing application and the container uses Spring heavily.
From jprofiler I see multiple instances of…

Yogesh Bedekar
- 129
- 1
- 1
- 3
2
votes
1 answer
htaccess protection against PROXIES
I was using this code (recommended by some forums in the net) to block Proxies to my website files, using htaccess file:
RewriteEngine on
RewriteCond %{HTTP:XROXY_CONNECTION} !^$ [OR]
RewriteCond %{HTTP:X-FORWARDED-FOR} !^$ [OR] …

graygoo
- 25
- 4
2
votes
1 answer
How can I use TOR as a proxy?
I'm trying to use TOR as a generic proxy but it fails
Right now I'm trying with python but I'm pretty sure it would be the same with any other language. I can connect to other proxies with python so I get how it "should" be done.
I found a list of…

Eric
- 19,525
- 19
- 84
- 147
2
votes
1 answer
Is it possible to use UdpClient through an anonymous proxy?
I am sending a big endian byte array to a UDP host and all works well, but I need to incorporate proxies into the mix.
From what I've found (or haven't found) there is no straight forward way to use anonymous proxies (or even Socks4/5) with…

Vince Severson
- 51
- 1
- 1
- 2
2
votes
4 answers
Python - make script loop until condition met and use a different proxy address for each loop
I'm the definition of a noob. I know next to nothing about python and am looking for help. I can read just enough code to alter variables to suit my wants/needs but I when it comes to doing something the original code didn't call for... I'm…

Timothy Core
- 31
- 1
- 6
1
vote
0 answers
Can´t connect to proxies
I try do use proxies for people also ask but it does not work.
import people_also_ask
import people_also_ask.request.session
username = "user"
password = "123456"
proxy = "pr.oxylabs.io:7777"
people_also_ask.request.session.set_proxies(
(
…

Raspberry Pi
- 23
- 3