Results 1 to 3 of 3

Thread: [SOLVED] plaintext http => ssl proxy?

  1. #1
    Join Date
    Feb 2006
    Beans
    3

    [SOLVED] plaintext http => ssl proxy?

    I'm looking for a solution that would allow me to mask my plaintext http traffic -- "proxy" it through an SSL enabled middle man, is this possible?

    Obviously some sites don't support SSL, so I'd want to pass it from my public access computer or work computer through my ubuntu server, onto the target machine.

    Anyone know how this might be accomplished?

  2. #2

    Re: plaintext http => ssl proxy?

    Check this link out. OpenSSH has a built in SOCKS5 proxy, so you can simply:

    Code:
    ssh -D 9999 username@ip-address-of-ssh-server
    And then have your browser use localhost:9999 (or whatever port you chose).

    You can also use tsocks in combination with the OpenSSH socks proxy to proxify almost any application. ssh as in the example above, and set up your tsocks.conf file to point to localhost 9999, then run "tsocks /path/to/application" and tsocks will do the proxying for you.
    Seth Grover
    e: sethdgrover [at] gmail [dot] com

  3. #3
    Join Date
    Feb 2006
    Beans
    3

    Re: plaintext http => ssl proxy?

    exactly what I was looking for. thanks a bunch!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •