758 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
148
views
Why is UDP traffic bypassing my Android SOCKS5 Proxy server? (Is VpnService essential for UDP?)
I'm a student developer working on an Android application that acts as a SOCKS5 proxy server.
What I've Implemented:
A SOCKS5 server on Android that handles the protocol's handshake, request, and ...
0
votes
1
answer
106
views
Cannot communicate to SMTP server with socket and proxy due to timeout error [closed]
Here's my code for simple proxy validation:
import smtplib, socks
socks.set_default_proxy(socks.PROXY_TYPE_SOCKS5,
'*.*.*.*',
<PORT>,
...
0
votes
1
answer
103
views
How to bind a http.server to a remote socks proxy?
I've a webserver that is going to answer requests at a remote socks5 proxy.
I want the webserver to connect to the proxy, send the bind command, and listen to a connection.
How can I set up a http....
0
votes
1
answer
51
views
Multihop shared SSH tunnel [closed]
I would like to create a multihop SSH tunnel that allows multiple SSH sessions for users but only uses one SSH session on the Second Hop.
Scenario:
User 1 --\
|
User 2 ---> First Hop ---&...
1
vote
0
answers
1k
views
How to Connect to PostgreSQL Over a SOCKS5 Proxy Without Affecting Global Socket Settings in Python?
I'm trying to establish a connection to a PostgreSQL database over a SOCKS5 proxy in Python using the PySocks library. Here's the approach I'm currently using:
import socks
import socket
# Configure ...
0
votes
1
answer
268
views
Why is my WebRTC connection stuck in connecting state?
I'm working on an Angular app that uses webRTC. The purpose of this app is to display a video stream coming from a software running on a Google Cloud Platform VM, and being transmitted through WebRTC.
...
0
votes
1
answer
202
views
Nodemailer to send a letter with a proxy
I can't send an e-mail via Nodemailer with authenticated proxy. Error: Socks5 proxy rejected connection - ConnectionRefused. If I don't use proxy, everything works. Code (of course my data is valid):
...
1
vote
1
answer
1k
views
Is there a way to add proxy to Tauri webview?
I need to add a proxy to the window itself, so that all requests from that window are made through the http or socks5 proxy.
Is this even possible? because I did not find any information on the ...
-1
votes
1
answer
256
views
How can I implement a SOCKS proxy to make requests to the whois protocol?
Having trouble wrapping my head around making requests through the SOCKS proxy to whois.lookup.
I have a socks proxy (smartproxy) and a node server. I've tried tunnel, request, socks-proxy-agent, It ...
0
votes
0
answers
277
views
socks5 puppeteer node.js with auth
I would like use puppeteer to connect to other websites with socks5 from privadovpn, but when i try connected i receive a message error: "net::ERR_EMPTY_RESPONSE at https://stackoverflow.com/...
2
votes
0
answers
3k
views
How to update a package's dependency in Node.js?
I can see that npm indicated that there is severe security vulnerability in my application. I tried to use npm audit fix but the issue persisted, I tried npm update to update the packages but the ...
1
vote
0
answers
484
views
How do I connect to postgres through a proxy in node.js
TL; DR: my node app is deployed to heroku, which uses dynamic IPs. I want to proxy all Postgres requests through a static IP. How can I add a proxy to the node pg library? There don't seem to be any ...
0
votes
0
answers
2k
views
PERROR torsocks: socks5 libc connect: Connection refused (in socks5_connect() at socks5.c:202)
Sometimes,if not often,the IP address assigned to me by TOR does not work. Is there a way to choose the exit IP numbers where my traffic should exit the Tor network ? I've found a script that tells to ...
1
vote
0
answers
438
views
Tethering - Sharing mobile network to LAN
I am working on an Android 10 device, which have 4G access, Wifi and Ethernet port. I do not have root. I am researching a ethernet tethering solution.
This Android device will have LAN/ethernet ...
0
votes
0
answers
2k
views
How to turn Squid from HTTPs to SOCKS Server
I have successfully setup a Squid server, and it works well in HTTPs. I been researchign how to enable SOCKS access to it. And I have read some of the documentaiton. And it specifies that you need to ...