Questions tagged [webproxy]
136 questions
0
votes
2 answers
Authentication failed because remote party has closed the transport stream, need solution
Our VPC of company using an http system proxy. Due to the fact, there are no https proxy and any web links should using http proxy even it is a https.
I tried to add these two solutions to my C# code, but it doesn't…

parallelbgls
- 143
- 1
- 7
0
votes
0 answers
c# Connect via a proxy
Our system when we are on the corporate network connects through a proxy, I'm struggling to get my application to connect
The only way i've been able to get it to connect is without a proxy, off our corp network. The proxy url is a internal url,…

Ceri Turner
- 830
- 2
- 12
- 36
0
votes
0 answers
list index out of range - split() function in python 3
I create a web proxy server and try to parse the url from the header but I get a problem with split()
def proxy_thread(connectionSocket,addr):
request = connectionSocket.recv(Buffer)
GETREQ = request.decode('utf-8',…

Dang Truong
- 11
- 2
0
votes
1 answer
list index out of range (Web Proxy Server)
I have a project about WebProxyServer. When I run the code, it has error "list index out of range." I can't find where is a mistake.
def proxy_thread(conn, client_addr):
# get the request from browser
request = conn.recv(MAX_DATA_RECV)
#print("…

Dang Truong
- 11
- 2
0
votes
1 answer
Change webclient proxy with every new request
How can I change the proxy every time when I make a new request?
If I start the application and run this request multiple times, I can see it uses the first proxy used, even if I change the parameters for proxy from a list of proxy servers every…

Nick_F
- 1,103
- 2
- 13
- 30
0
votes
1 answer
Jenkins Slave Agent Proxy 407
I have a Jenkins installation on Windows Server which consists auf one master node and two build nodes. Jenkins master as well as the build nodes are running as windows service under a domain service user.
For test purpose I created a pipeline where…

Peter K.
- 123
- 1
- 6
0
votes
0 answers
using mikrotik webproxy to bypass telegram filtering
as you know Telegram, Facebook and also Twitter are block in Iran.
I using mikrotik Web-proxy which located in other country to using such as websites.
I can open Facebook and Twitter website without any problem but i can't open Telegram And…

abrpr
- 11
- 2
0
votes
0 answers
How One IP Public To Multiple Web Server And Multiple Mysql WebProxy Mikrotik
i follow this step from this link Mikrotik Multiple WebServer with WebProxy
and I try to redirect ports other than 80 to create multiple webproxy MySQL Server From 1 IP Public as above tutorial
IP Public -> WAN -> dstnat(Mikrotik to Web Proxy) Port…

Yovangga Anandhika
- 25
- 7
0
votes
1 answer
How to save web proxy enabled logs of mikrotik into remote mysql database
Currently I am developing a web application that works with freeradius. Some days before client asked me to develop a module to save users activity logs into remote database. I tried syslog-ng. I successfully saved its logs into database, but it…

Muhammad Faryad
- 13
- 5
0
votes
3 answers
How to create a simple Proxy to access web servers in C
I’m trying to create an small Web Proxy in C. First, I’m trying to get a webpage, sending a GET frame to the server.
I don’t know what I have missed, but I am not receiving any response. I would really appreciate if you can help me to find what is…

Jk041
- 934
- 1
- 15
- 33
0
votes
1 answer
Creating web proxy using node js and express
I am trying to create a personal web proxy using javascript so that users can browse the internet through a website. Example http://webproxy.to/.
I'm trying to send the response back from a url to the user by using pipe request, but then it doesn't…

jamesalone
- 301
- 1
- 6
- 19
0
votes
1 answer
Dealing with HTTPS CONNECT requests
I'm writing a really simple web proxy through python and right now I'm working on dealing with HTTPS CONNECT requests so I can open HTTPS websites. I'm trying to set up an SSL tunnel but my code is just not quite right. I think I'm close but if…

Jack Cassidy
- 159
- 2
- 14
0
votes
0 answers
TCP connections are stacked until 65k when using HttpWebRequest fetching function - internet connectivity is lost
I don't understand what may cause this error
I am using the below function with about 1000 concurrent connections
Each connection uses a different webproxy
After a while like 15 minutes working, the established TCP connection count starts to stack…

Furkan Gözükara
- 22,964
- 77
- 205
- 342
0
votes
0 answers
Too many proxy connection kills window's resolving hosts ability
My problem is a bit complex and i don't know how to explain it best
I have a 125k public proxy list. As you can also guess, most of them are invalid
I would like to quickly test all of them
So i have written an application which spawns 250…

Furkan Gözükara
- 22,964
- 77
- 205
- 342
0
votes
0 answers
Python Web Proxy Error: No address associated with hostname
I am writing a really basic web proxy in Python. In it's current state all I want it to do is take the request from the client and pass it straight through to the web, no caching or anything like that yet. My problem arises when I try to accept the…

Jack Cassidy
- 159
- 2
- 14