Page 1 of 1

How to implement local application proxy in Windows?

Posted: Mon Mar 20, 2023 12:00 pm
by valterjoyce
I want to implement vpn only on my browser instead of the whole world, how can I do it?

Re: How to implement local application proxy in Windows?

Posted: Mon Mar 20, 2023 12:03 pm
by solo

Re: How to implement local application proxy in Windows?

Posted: Mon Mar 20, 2023 3:26 pm
by shakibamoshiri
valterjoyce wrote:
Mon Mar 20, 2023 12:00 pm
I want to implement vpn only on my browser instead of the whole world, how can I do it?
Here is another solution

Assuming
- you have VPS (Virtual Private Server) out of your restricted network
- on your PC you have install SSH
- your browser could be any which supports "socks5 proxy"

On you PC run

Code: Select all

ssh -fNTCD localhost:<PORT> <REMOTE-SERVER>

# example
ssh -fNTCD localhost:1080 root@1.2.3.4
It will create a local socks5 server (no user and pass needed) and you can connect to this via any browser supports configuring socks5 . FireFox has built-in support. Open Firefox , go to network setting, enable socks5 and add localhost and port.

You do not need a VPN for having a proxy