Skip to main content

All Questions

Tagged with
0 votes
0 answers
22 views

Proxy config setting in angular for websocket

I have an issue to connect to WS in different domain with angular. The ws is ok, I can connect to it via postman: The url looks like this: {{hosturlws}}/ws?station=1f51228c-25ae-47c0-965f-68025268e2a2 ...
Ben's user avatar
  • 1
0 votes
0 answers
13 views

ValueError: check_hostname requires server_hostname on a proxy enables system

I want to load the BPEmb model on a machine which is accessbile using proxy only. Initially, I configured the proxy setting, environment and tried. But it couldn't load the model. Therefore I ...
Maria's user avatar
  • 1
0 votes
0 answers
20 views

How can I make my proxy server intercept and forward https trrafic too and can I block https websites too (like youtube.com)

I am working on a http proxy in Python with blocking websites functionality and logging. It works fine but it works only with http and not with https. I try it to make it work with the ssl library and ...
exodia's user avatar
  • 1
-1 votes
1 answer
43 views

HTTPS proxy server gets timeout

I am trying to implement an HTTP/HTTPS proxy server in Kotlin (for Android), and it works as expected for HTTP but for HTTPS requests it gets The connection has timed out all the time. The client ...
Jagar's user avatar
  • 862
1 vote
0 answers
26 views

How does nodejs net module socket data work?

Consider this piece of code: app.on("connection", (clientToProxySocket) => { console.log("Client connected to proxy"); clientToProxySocket.once("data", (data) ...
yunus's user avatar
  • 11
0 votes
0 answers
20 views

Socket io connection problem from postman

I have a Node.js code deployed to Render; it works fine with Socket.IO. However, when I deploy it to my server, it connects to https://xx.io, but https://xx.io/api does not connect i made this nginx ...
nginxx xxnx's user avatar
0 votes
0 answers
38 views

SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN while building a mitm proxy server in python

I am trying to build a proxy server in python, which should be able to handle both http and https requests. This is the code: import os import socket import ssl import threading from http.server ...
Kumar Mayank's user avatar
0 votes
0 answers
229 views

Golang TCP connections randomly closing when copying data back and forth

So I have both a client side and a server side applitcation. The server side application looks like so: package connpool import ( "log" "net" ) var Pool *ConnPool func ...
xvertile's user avatar
0 votes
0 answers
10 views

Use an exisiting socket connection as proxy for http requests

The situation is, I wish to start a proxy server on the client side, and then the server side could use it as a proxy to connect to some third party serverices. However the client cannot expose it's ...
MyOnlyStarCN's user avatar
1 vote
0 answers
68 views

Proxy Python HTTPS (with ssl and socket)

I spend a week with my code, I try to make a proxy capable of handling http and https requests but I can't do it with https. Here is my server code : Server.py import socket import threading import ...
Augustin Mons's user avatar
0 votes
1 answer
87 views

Unix Socket is not generated for Goggle's SQL Auth Proxy using docker-compose

I suspect that I have some issue related to the volume where I intend to have Google's SQL Auth Proxy generate its socket. While running the SQL Auth Proxy locally... ~/cloud-sql-proxy --unix-socket ~/...
Nate May's user avatar
  • 3,982
1 vote
1 answer
236 views

node.js: using http-proxy with http agent causes to file descriptors leak

I'm using http-proxy to create websocket-proxy. Proxy works fine, but after a while of starting the process I'm facing with the problem: the process starts keeping a lot of open sockets. I can see ...
Rostislav Shtanko's user avatar
1 vote
1 answer
675 views

HTTPS Proxy using Tunnelling

I am new to networking. I am trying to build a program that runs on the proxy. However, this only works for HTTP based requests. I am trying to implement it for HTTPS. I came across this concept of ...
MT 16's user avatar
  • 33
0 votes
1 answer
712 views

socks.GeneralProxyError: Socket error: 0x01: General SOCKS server failure [duplicate]

I am trying if a service is up or not using socket and tor but I am getting this error. import socks import socket def tor_connect(): socks.set_default_proxy(socks.PROXY_TYPE_SOCKS5, "...
Mayank Joshi's user avatar
0 votes
0 answers
39 views

Python proxy: how to forward traffic from sockets efficently?

I am trying to create very simple http proxy using python. Using http library I created handler for CONNECT method. when I got address to which I need forward traffic from client I met with the issue. ...
Fun_Dan3's user avatar

15 30 50 per page
1
2 3 4 5
35