Bidirectional data stream tunnelled in HTTP requests.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
hundertzwei d8f91af976 Repair disconnect message. 7 months ago
debian Copy of the latest code from the old CVS repo. 12 years ago
doc Copy of the latest code from the old CVS repo. 12 years ago
port Copy of the latest code from the old CVS repo. 12 years ago
.gitignore Update for newer Automake. 6 years ago
.travis.yml Build in Travis CI. 8 years ago
AUTHORS Debian: Update my email address in the AUTHORS file. 8 years ago
COPYING Copy of the latest code from the old CVS repo. 12 years ago
ChangeLog Update some text files. 8 years ago
DISCLAIMER Copy of the latest code from the old CVS repo. 12 years ago
FAQ docs: fix tiny typos 2 years ago
HACKING Copy of the latest code from the old CVS repo. 12 years ago
INSTALL Copy of the latest code from the old CVS repo. 12 years ago
Makefile.am Add a target which cleans everything that can be rebuild from scratch. 12 years ago
NEWS Update some text files. 8 years ago
README Replace nocrew.org web page with GitHub. 3 years ago
README.md Fix typo in README; make links INSTALL and DISCLAIMER. 2 years ago
TODO Copy of the latest code from the old CVS repo. 12 years ago
acinclude.m4 Updates for modern autoconf versions. 12 years ago
autogen.sh Update for newer Automake. 6 years ago
base64.c Fix most warnings. 8 years ago
base64.h Copy of the latest code from the old CVS repo. 12 years ago
common.c Copy of the latest code from the old CVS repo. 12 years ago
common.h feature/change_uri: 6 years ago
configure.ac Update for newer Automake. 6 years ago
depcomp Copy of the latest code from the old CVS repo. 12 years ago
htc.1 Debian: Quote dashes in the manpages 8 years ago
htc.c feature/change_uri: 6 years ago
hts.1 Debian: Quote dashes in the manpages 8 years ago
hts.c Repair disconnect message. 7 months ago
http.c Fix buffer overflows in sprintf() usage 3 years ago
http.h feature/change_uri: 6 years ago
httunv2s.png Copy of the latest code from the old CVS repo. 12 years ago
tunnel.c Fix buffer overflows in sprintf() usage 3 years ago
tunnel.h feature/change_uri: 6 years ago

README.md

About

httptunnel creates a bidirectional virtual data path tunnelled in HTTP
requests. The requests can be sent via an HTTP proxy if so desired.

This can be useful for users behind restrictive firewalls. If WWW
access is allowed through an HTTP proxy, it's possible to use
httptunnel and, say, telnet or PPP to connect to a computer outside
the firewall.

If you still don't understand what this is all about, maybe you
can find some useful information in the FAQ file.

This program is mostly intended for technically-oriented users.
They should know what to do.

Install

Read INSTALL for instructions on how to build a released version.
If you build the development repository, run ./autogen.sh first.

License

httptunnel is free software. See COPYING for terms and conditions.
If you like it, I would appreciate if you sent a post card to:

Lars Brinkhoff
Bokskogsbacken 66 422 56 Goteborg
Sweden

Information and/or latest release should be available from these places:

I take no responsibility for what you do with this software. It has
the potential to do dangerous things, like disabling the protection
your system administrator has set up for the local network. Read the
DISCLAIMER file.

Usage & Documentation

There are two programs: hts and htc. hts is the httptunnel server
and htc is the client. hts should be installed on a computer outside
the HTTP proxy, and htc should be installed on your local computer.

Documentation about how to use the programs should be searched in this
order:

  1. source code
  2. --help output
  3. FAQ
  4. README

Having said that, here are some examples:

  • start httptunnel server:
  • At host REMOTE, start hts like this:
    hts -F localhost:23 8888 (set up httptunnel server to listen on port 8888 and forward to localhost:23)
  • start httptunnel client:
    • At host LOCAL, start htc like this:
      htc -F 2323 -P PROXY_ADDRESS:8000 REMOTE_IP:8888 (set up httptunnel client to forward localhost:2323 to REMOTE_IP:8888 via a local proxy at PROXY_ADDRESS:8000)
  • or, if using a buffering HTTP proxy:
    htc -F 2323 -P PROXY_ADDRESS:8000 -B 48K REMOTE_IP:8888
  • Now you can do this at host LOCAL:
    telnet localhost 2323 (telnet in to REMOTE_IP:8888 via your httptunnel you just configured above on port localhost:2323)
    ...and you will hopefully get a login prompt from host REMOTE_IP.
  • Debugging:
  • For debug output, add -Dn to the end of a command, where n is the level of debug output you'd like to see, with 0 meaning no debug messages at all, and 5 being the highest level (verbose).
  • ex: htc -F 10001 -P PROXY_ADDRESS:8000 REMOTE_IP:8888 -D5 will show verbose debug output (level 5 debugging) while setting up an httptunnel client to forward localhost:10001 to REMOTE_IP:8888 via a local proxy at PROXY_ADDRESS:8000

External help, examples, & links