Dude, just use `corkscrew` over SSH. It's like the lazy dev's dream for a simple proxy with auth.
```
ssh -D 8080 -o "ProxyCommand=corkscrew proxy.com 3128 %h %p" user@target
```
Boom. Auth handled by SSH, and you get a SOCKS proxy. No config hell.
```
ssh -D 8080 -o "ProxyCommand=corkscrew proxy.com 3128 %h %p" user@target
```
Boom. Auth handled by SSH, and you get a SOCKS proxy. No config hell.
