Questions tagged [socks5]
27 questions
2
votes
0 answers
Socks5 connection problem on telegram android
Because of censorship of telegram in my country I use proxies. Proxies(socks5) works fast on telegram desktop on windows but the same proxies doesn't work on telegram android on same network and I have no idea why this problem occurs.
Could you…

Ft Uy
- 21
- 1
2
votes
0 answers
Golang socks5 proxy client
I'm trying to make a proxy:
I need to listen to port 1080 (socks 5), and complete a request to a destination using an external ip:port socks 5, I managed to open this connection with the external ip, but I don't know how I could complete the request…

Ming
- 1,349
- 4
- 13
- 36
1
vote
0 answers
How to implement a ssh tunnel base vpn in flutter
this is my first question at this comunity, so please forgive me if I made a mistake in asking the question
I want to connect to my server through Flutter and the ssh command and pass all the traffic of my application through the tunnel like a VPN…

Armin KH
- 21
- 3
1
vote
1 answer
Bypass Socks for localhost
I'm in the process of shifting an application from one VM Instance to another within the Azure cloud. The new instance is now hosted behind (multi?) firewalls. For HTTPS I had to configure -Dhttps.proxyHost=my.https.proxy and for a required SFTP…

Eric
- 1,321
- 2
- 15
- 30
1
vote
1 answer
socks5 proxy using go
I wanted to know if it is possible to listen to a local port ex: 1080 socks5, and all connections on that port be made a proxy to use an external host:port socks5
func main() {
l, err := net.Listen("tcp", "127.0.0.1:1080")
if err != nil {
…

Ming
- 1,349
- 4
- 13
- 36
0
votes
0 answers
How to configure async apache http client 5 to use SOCKS proxy with auth?
How to configure async apache http client 5 to use SOCKS proxy with auth?
Here is the answer for socks5 without auth.
IOReactorConfig.Builder config = IOReactorConfig.custom()
.setSocksProxyAddress(inetSocketAddress)
…

papaya
- 1
- 1
0
votes
0 answers
Can't read proper address type from client
I am trying to create socks5 proxy but I have problem to read valid address type. I have configured the socks5 proxy in firefox to test. I also tried with firewall disabled. No matter if I enter domain name,ipv4 or ipv6 address there is always…

manjitolo
- 53
- 6
0
votes
0 answers
Unexpected protocol version 74 when connecting with terraform to AWS resource through BASTION / SOCKS5 tunnel
I have a MySQL database inside a private subnet on AWS. I need a MySQL Terraform provider to connect to this using a BASTION SOCKS5 proxy. The Terraform script is running on my PC. From my (Ubuntu) PC command line I can tunnel with SSH to the…

JannesH
- 33
- 1
- 1
- 8
0
votes
0 answers
How to make smtplib work over SOCKS5 proxy?
I am writing an SMTP client and I want to build proxy server support into it.
How to make smtplib work through socks5 proxy?
I had the idea to use the SocksiPy module because it was recommended to the user in another question. But this method is…

rvze
- 1
- 2
0
votes
1 answer
JS is disabled when trying to get page via Selenium "--headless=new"
The Twitter API is now paid, so now I need to write a parser for the tweet pages. I am using socks5 proxy.
So my first step was to get the tweet page directly through the socks5 proxy. I got a 302 code and an endless redirect.
Then I tried adding…

Alex
- 1
- 1
0
votes
0 answers
Make a SOCKS5 proxy with AWS EC2
I want create proxy SOCKS5 from AWS EC2 server. I'm use this guide: https://github.com/vifreefly/ec2_proxies
My progress through the guide has come to the point where the script creates the server, adds SSH keys to AWS, then goes on to create the…

klipsoN
- 1
0
votes
0 answers
SOCKS to HTTP proxy chaining using SSH
I have a server where in order to talk to the outside world it must go through an HTTP proxy. However, this server is often talking non-HTTP to these external systems.
I'm not able to establish CONNECT tunnels from the server itself, but I am able…

TR1096
- 47
- 8
0
votes
1 answer
Is it possible to create multiple WebSocket connections to a server using different socks5 proxies in Node.js?
Im trying programmatically create multiple websocket connections to my server where each websocket uses a different socks5 proxy.
I have not found a way to create a websocket connection, Ive seen that websocket servers through a proxy exist but not…

DrakoHyena
- 47
- 7
0
votes
0 answers
Running chrome using docker-selenium, authentication socks5 proxy on python
Main problem
I need to run chrome using docker. I have found docker images on github, using this I have tried to run chrome.
options = ChromeOptions()
os.system(f'docker run -d -p 4444:4444 -p 7900:7900 --shm-size="2g" -e SCREEN_WIDTH={width} -e…

Magprone
- 23
- 6
0
votes
0 answers
I am creating a socks 5 proxy server for TCP and UDP in python 3
here is my code in python 3. It is working properly for TCP But Not For UDP as per brooktest
I want this code to be working for UDP also as it is working for TCP
This implementation handles both TCP and UDP connections by checking the SOCKS5 command…