i just want a way to use a wireguard vpn as a sock5 proxy ive been trying for hours and nothing i try works im too stupid to figure this out on my own can some one please help me
>>106438858
wtf are you trying to do? what are you trying to accomplish?
>>106438875i want to use a vpn but only for specific applications like a proxy and i dont want to use my vpn system wide cause it will break my locally hosted hosted vpn i use to access my network out side my house
>>106438873I’m pretty sure this would accomplish nothing. You’d either have to WireGuard into the server, then use the socks proxy (accomplishes nothing), or expose the socks proxy which negates the need for WireGuard in the first place.>>106438963If you’re using Linux, you can use network namespaces with WireGuard to launch specific applications with different WireGuards each
>>106439028i will try that thank u anon
>>106438858search and download whyvl/wireproxy on github, here's an example using it with gallery-dl:1. start wireproxy -c cs-dallas.conf2. gallery-dl --cookies cookies1.txt --proxy socks5://127.0.0.1:1081 --sleep=1 --sleep-request=0.01 --sleep-extractor=0.01 -R 1 --user-agent browser -i 1.txtThe config file needs to look like:[Interface]PrivateKey = ........=Address = XX.XX.XXX.XXX/32, fd00:10:10::3ac9/128DNS = 10.31.33.8, 2001:db8::8[Peer]PublicKey = .........=PresharedKey = ........=AllowedIPs = 0.0.0.0/0, ::/0Endpoint = dallas.cstorm.is:443PersistentKeepalive = 25[socks5]BindAddress = "127.0.0.1:1081"
>>106438963have your proxy server bind on the address of the vpn network interface and just relay without doing anything if an http proxy works(http proxies work with all tcp traffic, not only http) this is simple with privoxy