Skip to main content

All Questions

Tagged with
0 votes
2 answers
2k views

Check whether SOCKS5 proxy server support UDP

Suppose I have UDP server that listen incoming message on 192.168.43.1:1234 and SOCKS5 proxy server that listen on 192.168.43.2:9999. How do I check whether SOCKS5 proxy server support UDP when ...
Muhammad Ikhwan Perwira's user avatar
0 votes
1 answer
602 views

Generic TCP connections over a proxy?

Is there any way to achieve this command: APPX --listen=127.0.0.1:1111 --socks5=someproxy.com:2222 --connect=server.com:3333 Then, if I connect to 127.0.0.1:1111, it will be as if I connected to ...
caveman's user avatar
  • 173
1 vote
1 answer
761 views

Share Telnet connection as a proxy

i have telnet connection to device behind firewall (there is no SSH) and i want to use this connection as a proxy to give local network access to Firefox for example if is possible using Putty ...
Antonio Italiano's user avatar
2 votes
0 answers
2k views

how to open up socks/SSH on different network interfaces?

iptables -A PREROUTING -i usb0 -t mangle -p tcp --dport 8080 -j MARK --set-mark 1 iptables -L Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD ...
Jimmy Cummings's user avatar
1 vote
0 answers
2k views

How to redirect/forward between a tun/tap device and a socket using linux tools?

I have a socks5 proxy that is bind to eth0. It opens two ports, Port1 is used to connect to remote (for example a http server), Port2 is to listen for clients to connect. Then I created a tun device. ...
Magicloud's user avatar
  • 763