• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

debian/H25-Feb-2001-214149

doc/H03-May-2022-

port/H25-Feb-2001-2,3121,448

AUTHORSH A D25-Feb-20011.2 KiB2827

COPYINGH A D07-Feb-199917.6 KiB341281

ChangeLogH A D25-Feb-200129.6 KiB981635

DISCLAIMERH A D07-Feb-1999410 76

FAQH A D05-Aug-19993.2 KiB9564

HACKINGH A D20-Mar-19992.9 KiB9770

INSTALLH A D07-Feb-19997.6 KiB183143

Makefile.amH A D29-Jun-2000635 2517

Makefile.inH A D25-Feb-200115.5 KiB512408

NEWSH A D12-Jan-20007 KiB308166

READMEH A D12-Aug-19992.1 KiB6048

TODOH A D18-Aug-19994.5 KiB15598

acconfig.hH A D20-Mar-1999212 114

acinclude.m4H A D15-Oct-1999973 3732

aclocal.m4H A D25-Feb-20015.4 KiB178156

base64.cH A D13-Aug-19991.6 KiB9467

base64.hH A D02-Apr-1999185 102

common.cH A D25-Feb-20017.6 KiB404346

common.hH A D25-Jul-20003.5 KiB171141

config.h.inH A D29-Jun-20002.3 KiB10267

configureH A D25-Feb-200179.3 KiB2,7002,213

configure.inH A D25-Feb-20011.5 KiB5948

htc.1H A D24-Aug-19991.8 KiB6765

htc.cH A D25-Feb-200117.2 KiB675574

hts.1H A D05-Aug-19991.4 KiB5049

hts.cH A D25-Feb-200112.3 KiB492417

http.cH A D11-Jul-200017.2 KiB855731

http.hH A D18-May-19992.1 KiB8566

install-shH A D07-Feb-19995.5 KiB252153

missingH A D07-Feb-19996.1 KiB191154

mkinstalldirsH A D07-Feb-1999726 4123

stamp-h.inH A D25-Feb-200110 21

tunnel.cH A D01-Sep-200031.2 KiB1,4541,237

tunnel.hH A D25-Jul-20002.5 KiB8823

README

1httptunnel creates a bidirectional virtual data path tunnelled in HTTP
2requests.  The requests can be sent via an HTTP proxy if so desired.
3
4This can be useful for users behind restrictive firewalls.  If WWW
5access is allowed through an HTTP proxy, it's possible to use
6httptunnel and, say, telnet or PPP to connect to a computer outside
7the firewall.
8
9If you still don't understand what this is all about, maybe you
10can find some useful information in the FAQ file.
11
12This program is mostly intended for technically oriented users.
13They should know what to do.
14
15httptunnel is free software.  See COPYING for terms and conditions.
16If you like it, I would appreciate if you sent a post card to:
17	Lars Brinkhoff
18	Kopmansgatan 2
19	411 13  Goteborg
20	Sweden
21
22Information and/or latest release should be available from these places:
23	http://www.nocrew.org/software/httptunnel.html
24	http://www.gnu.org/software/httptunnel/httptunnel.html
25	ftp://ftp.nocrew.org/pub/nocrew/unix
26	ftp://ftp.gnu.org/pub/httptunnel
27
28I take no responsibility for what you do with this software.  It has
29the potential to do dangerous things, like disabling the protection
30you system administrator has set up for the local network.  Read the
31DISCLAIMER file.
32
33There are two programs: hts and htc.  hts is the httptunnel server
34and htc is the client.  hts should be installed on a computer outside
35the HTTP proxy, and htc should be installed on your local computer.
36
37Documentation about how to use the programs should be searched in this
38order:
39	source code
40	--help output
41        FAQ
42	README
43
44Having said that, here's a (probably outdated) example:
45	At host REMOTE, start hts like this:
46		hts -F localhost:23 8888
47	At host LOCAL, start htc like this:
48		htc -F 2323 -P PROXY:8000 REMOTE:8888
49	or, if using a buffering HTTP proxy:
50		htc -F 2323 -P PROXY:8000 -B 48K REMOTE:8888
51
52	Now you can do this at host LOCAL:
53		telnet localhost 2323
54	and you will hopefully get a login prompt from host REMOTE.
55
56See also
57	http://metalab.unc.edu/LDP/HOWTO/mini/Firewall-Piercing.html
58which is a good introduction to firewall piercing.  It also has
59describes one way to use httptunnel.
60