Questions tagged [socks5]

27 questions
0
votes
0 answers

Puppeteer not changing public ip on iproyal proxy servers on socks5 protocol

I want to scrap this site http://cheapinsurancebyzip.info/medicare using puppeteer node js and proxy serevers from iproyal. When I scrap this using http or https protocol, its gives error. SO I have to use socks5 protocol for this, But its not…
0
votes
0 answers

How to read HTTP header from Netty SOCKS5 Server implementation?

I'm currently working on a project that uses Netty's SOCKS5 implementation to proxy HTTP requests. I need to intercept and read the HTTP headers of the incoming requests to apply some custom logic. However, I'm having trouble figuring out how to…
Arun
  • 1,167
  • 18
  • 37
0
votes
0 answers

How SOCKS5 use just 4 bytes to describe both host and port?

I'm learning socks5 protocol and trying to write my own socks5 TCP-based server relying on RFC 1928 documentation (https://www.rfc-editor.org/rfc/rfc1928). I use python to handle all networking. My goal is to inspect all http traffic going from my…
CodingTea
  • 15
  • 4
0
votes
1 answer

Login with proxy using Instagrapi

I wrote some code that logs in with 2fa and a proxy and then gets some info and returns it. It is not finished yet but the login section will not work. Here is the code, if someone could tell me what is wrong I would greatly appreciate it. As a side…
0
votes
0 answers

How can I redirect traffic from localhost:port to a socks5 proxy?

I am trying to redirect all traffic from localhost with a specific port to a socks5 proxy which has authentication. Kind of like how the Tor proxy works. I tried usinc ncat, but it does not support socks5 proxies
0
votes
1 answer

How to configure git's sock5 proxy to use remote dns resolve

I configured the git proxy globally: [https "https://github.com"] proxy = socks5://127.0.0.1:51837 However, when it was pushed to github, the connection was still abnormal. Through the opening log, I could see that although git uses socks…
Hccake
  • 11
  • 2
0
votes
0 answers

how to use socks5 proxies with puppeteer inside docker container?

I use a script which runs a browser with socks5 proxy connection. The connection is stable when I run it on my local machine. But once I build the docker image and try to run as docker container it always shows ERR_TIMED_OUT in logs. Doing the same…
todel23
  • 128
  • 7
0
votes
1 answer

How to use a socks5 proxy with authentication via selenium 4, Python and Firefox (options)

I searched a lot, this came up many times over the past decade, but nothing addressing the problem or with the latest version of Selenium + Python (that I can find) If I set up a socks5 proxy server (using Ubuntu 22.04 and Dante), I can forward my…
Reily Bourne
  • 5,117
  • 9
  • 30
  • 41
0
votes
0 answers

How can I turn a no-authentication socks5 proxy to one that need authentication?

I have a socks5 proxy in my Ubuntu 20.04 server, which does not have authentication. I want to make it have authentication(username & password). How can I achieve this with another program? Because I cannot modify the origin socks5 proxy directly. I…
-1
votes
0 answers

How can I create 100 SOCKS5 proxies with squid on Ubuntu

Is there any way to create about 100 SOCKS5 proxies, with randomly generated usernames and passwords? And is there a way to get acess to a list of each of the proxies, with it's IP address, the port and the username/password listed? I have…
-1
votes
1 answer

How does python access the apiClient of k8s through socks5 proxy

Accessing k8s apiclient is successful without using a proxy, as follows: configuration = client. Configuration() configuration.verify_ssl = False configuration.host = "xxx" configuration.api_key = {"authorization": "Bearer " + self.token} c =…
1
2