https tunnel client 2.3
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3246
HTTunnel::Client 0.08
HTTunnel::Client is a client class for Apache::HTTunnel. more>>
HTTunnel::Client is a client class for Apache::HTTunnel.
SYNOPSIS
my $hc = new HTTunnel::Client("http://localhost/httunnel") ;
$hc->connect(tcp, $some_host, $some_port) ;
$hc->print(some request) ;
my $some_response = $hc->read(1024) ;
$ch->close() ;
HTTunnel::Client is the client class to Apache::HTTunnel. It allows the creation of a network connection tunnelled through HTTP. All data sent and received during this connection will be transported inside normal HTTP requests.
HTTunnel::Client extends LWP::UserAgent, so all LWP::UserAgent methods are available through HTTunnel::Client.
CONSTRUCTORS
new ( URL, [ARGS] )
Creates an HTTunnel::Client object that will use URL to contact the Apache::HTTunnel server. ARGS are is passed directly to the LWP::UserAgent constructor.
METHODS
connect ( PROTO, HOST, PORT, [TIMEOUT] )
Asks the Apache::HTTunnel server to establish a connection of protocol PROTO to HOST:PORT. An exception is thrown if an error occurs.
Accepted values for PROTO are tcp and udp.
print ( DATA )
Asks the Apache::HTTunnel server to write DATA to the established remote connection. An exception is thrown if an error occurs.
DATA can be a scalar or a list, in which case the list items are concatenated together.
read ( LEN, [TIMEOUT], [LIFELINE], [LIFELINE_CUT_ACTION] )
Asks the Apache::HTTunnel server to read up to LEN bytes from the established remote connection. An exception is thrown if an error occurs.
When trying to read, HTTunnel::Client will establish an HTTP connection to the Apache::HTTunnel server asking that LEN bytes be read. If no data is available after TIMEOUT seconds (the default value is 15 seconds), the HTTP connection is closed by the server and the read method will establish a new one. This will go on until some data or EOF is returned.
Therefore read will return only when some (or no more) data is available to be read (like the regular read).
LIFELINE can be any valid filehandle from which one can read. If used, read will interrupt its connection loop and execute LIFELINE_CUT_ACTION when data (or EOF) is available to be read from LIFELINE. It will then return undef.
LIFELINE_CUT_ACTION wust be a CODE ref. The default value is
sub {die("lifeline cutn")}
These features can be used if you want fork and to start a process that does nothing but reads and returns the data via a pipe. You can then use a second pipe to make sure the reader process terminates when the master process terminates.
Here is an example:
my $lifeline = new IO::Pipe() ;
my $reader = new IO::Pipe() ;
my $pid = fork() ;
if ($pid){
$reader->reader() ;
$lifeline->writer() ;
# Read data from $reader...
}
else {
$reader->writer() ;
$reader->autoflush(1) ;
$lifeline->reader() ;
while (1){
my $data = $hc->read(1024, 15, $lifeline, sub {exit()}) ;
exit() unless defined($data) ;
print $reader $data ;
}
}
close ( )
Asks the Apache::HTTunnel server to close a previously established connection.
get_peer_info ( )
The get_peer_info method returns information about the remote connection. A string containing the IP address and port number, separated by a colon (:) is returned. This method can be useful with UDP connections to validate the sender of each packet.
request_callback ( REQUEST )
The request_callback method is a callback method that can be used to access the HTTP::Request object just before it is sent. The default implementation does nothing.
response_callback ( RESPONSE )
The response_callback method is a callback method that can be used to access the HTTP::Response object just after it is received. The default implementation does nothing.
<<lessSYNOPSIS
my $hc = new HTTunnel::Client("http://localhost/httunnel") ;
$hc->connect(tcp, $some_host, $some_port) ;
$hc->print(some request) ;
my $some_response = $hc->read(1024) ;
$ch->close() ;
HTTunnel::Client is the client class to Apache::HTTunnel. It allows the creation of a network connection tunnelled through HTTP. All data sent and received during this connection will be transported inside normal HTTP requests.
HTTunnel::Client extends LWP::UserAgent, so all LWP::UserAgent methods are available through HTTunnel::Client.
CONSTRUCTORS
new ( URL, [ARGS] )
Creates an HTTunnel::Client object that will use URL to contact the Apache::HTTunnel server. ARGS are is passed directly to the LWP::UserAgent constructor.
METHODS
connect ( PROTO, HOST, PORT, [TIMEOUT] )
Asks the Apache::HTTunnel server to establish a connection of protocol PROTO to HOST:PORT. An exception is thrown if an error occurs.
Accepted values for PROTO are tcp and udp.
print ( DATA )
Asks the Apache::HTTunnel server to write DATA to the established remote connection. An exception is thrown if an error occurs.
DATA can be a scalar or a list, in which case the list items are concatenated together.
read ( LEN, [TIMEOUT], [LIFELINE], [LIFELINE_CUT_ACTION] )
Asks the Apache::HTTunnel server to read up to LEN bytes from the established remote connection. An exception is thrown if an error occurs.
When trying to read, HTTunnel::Client will establish an HTTP connection to the Apache::HTTunnel server asking that LEN bytes be read. If no data is available after TIMEOUT seconds (the default value is 15 seconds), the HTTP connection is closed by the server and the read method will establish a new one. This will go on until some data or EOF is returned.
Therefore read will return only when some (or no more) data is available to be read (like the regular read).
LIFELINE can be any valid filehandle from which one can read. If used, read will interrupt its connection loop and execute LIFELINE_CUT_ACTION when data (or EOF) is available to be read from LIFELINE. It will then return undef.
LIFELINE_CUT_ACTION wust be a CODE ref. The default value is
sub {die("lifeline cutn")}
These features can be used if you want fork and to start a process that does nothing but reads and returns the data via a pipe. You can then use a second pipe to make sure the reader process terminates when the master process terminates.
Here is an example:
my $lifeline = new IO::Pipe() ;
my $reader = new IO::Pipe() ;
my $pid = fork() ;
if ($pid){
$reader->reader() ;
$lifeline->writer() ;
# Read data from $reader...
}
else {
$reader->writer() ;
$reader->autoflush(1) ;
$lifeline->reader() ;
while (1){
my $data = $hc->read(1024, 15, $lifeline, sub {exit()}) ;
exit() unless defined($data) ;
print $reader $data ;
}
}
close ( )
Asks the Apache::HTTunnel server to close a previously established connection.
get_peer_info ( )
The get_peer_info method returns information about the remote connection. A string containing the IP address and port number, separated by a colon (:) is returned. This method can be useful with UDP connections to validate the sender of each packet.
request_callback ( REQUEST )
The request_callback method is a callback method that can be used to access the HTTP::Request object just before it is sent. The default implementation does nothing.
response_callback ( RESPONSE )
The response_callback method is a callback method that can be used to access the HTTP::Response object just after it is received. The default implementation does nothing.
Download (0.020MB)
Added: 2007-06-09 License: Perl Artistic License Price:
868 downloads
HTTPTunnel 0.9.4
HTTPTunnel is a simple client/server application for creating an HTTP tunnel between two machines, optionally via a Web proxy. more>>
HTTPTunnel is a simple client/server application for creating an HTTP tunnel between two machines, optionally via a Web proxy.
This is a small application for tunnelling an arbitrary TCP socket connection over HTTP. It can be used, for example, to tunnel traffic out from behind a restrictive firewall that only allows outgoing HTTP web connections.
The basic idea is that you run an instance of the HTTP Tunnel application locally in client mode, that then connects out to another instance that you run at the remote end of the tunnel in server mode.
You then connect to the local client end of the tunnel with the application whose traffic you wish to tunnel, and all communications are then wrapped in HTTP. The tunnel may also go via a HTTP proxy, either explicitly or transparently.
Enhancements:
- This release includes some major bugfixes and improvements in the tunneling error detection and retransmission code.
- It also introduces support for building and running under Cygwin.
<<lessThis is a small application for tunnelling an arbitrary TCP socket connection over HTTP. It can be used, for example, to tunnel traffic out from behind a restrictive firewall that only allows outgoing HTTP web connections.
The basic idea is that you run an instance of the HTTP Tunnel application locally in client mode, that then connects out to another instance that you run at the remote end of the tunnel in server mode.
You then connect to the local client end of the tunnel with the application whose traffic you wish to tunnel, and all communications are then wrapped in HTTP. The tunnel may also go via a HTTP proxy, either explicitly or transparently.
Enhancements:
- This release includes some major bugfixes and improvements in the tunneling error detection and retransmission code.
- It also introduces support for building and running under Cygwin.
Download (0.059MB)
Added: 2007-08-19 License: GPL (GNU General Public License) Price:
807 downloads
Perl MUD Client 2.7
Perl MUD Client is a text-based MUD client supporting SSL, ANSI, telnet negotations, and MCP. more>>
Perl MUD Client project is a text-based MUD client supporting SSL, ANSI, telnet negotations, and MCP.
PMC is a text based mudclient written in Perl 5. It utilizes GNU readline, supports SSL, local editing support through MCP (MudClientProtocol), full telnet negotiation support and of course ANSI support if your terminal supports it.
Unlike other mudclients with input line editors/history, it also supports the telnet character mode, which enables it to use e.g. fullscreen applications within a mud (like the xeditor found on some LP Muds).
<<lessPMC is a text based mudclient written in Perl 5. It utilizes GNU readline, supports SSL, local editing support through MCP (MudClientProtocol), full telnet negotiation support and of course ANSI support if your terminal supports it.
Unlike other mudclients with input line editors/history, it also supports the telnet character mode, which enables it to use e.g. fullscreen applications within a mud (like the xeditor found on some LP Muds).
Download (0.023MB)
Added: 2006-12-18 License: Artistic License Price:
1043 downloads
JSecureTunneling 0.2.3
JSecureTunneling provides a Java SSH client for tunnels management. more>>
JSecureTunneling provides a Java SSH client for tunnels management.
SecureTunneling is a Java SSH client that is entirely oriented toward the management of SSH tunnels, offering the ability to establish secure and permanent tunnels to a remote SSH server transparently, just like a simple network connection.
The key features are: auto-reconnection, connection monitoring, connection triggers, tunneling changes on-the-fly, and profile management.
<<lessSecureTunneling is a Java SSH client that is entirely oriented toward the management of SSH tunnels, offering the ability to establish secure and permanent tunnels to a remote SSH server transparently, just like a simple network connection.
The key features are: auto-reconnection, connection monitoring, connection triggers, tunneling changes on-the-fly, and profile management.
Download (MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
966 downloads
tcptunnel 1.0
tcptunnel is a simple TCP tunnel written in Perl. more>>
tcptunnel is a simple TCP tunnel written in Perl.
Also is a versatile tcp tunnel. The tcptunnel uses:
- tunnelling through a firewall or proxy
- redirecting tcp connections to other ports or machines
- debugging tcp connections in-place
- packet sniffing
The tcptunnel listens on local port < port > and when a connection is made it connects the other end of the tunnel as follows:
a) With no proxy specified, it connects the other end
to < srvport > on < srv >.
b) With a proxy, it connects to < srvport > on < proxy >.
It then directs the proxy to telnet to < srv >, and then it connects the ends of the tunnel.
<<lessAlso is a versatile tcp tunnel. The tcptunnel uses:
- tunnelling through a firewall or proxy
- redirecting tcp connections to other ports or machines
- debugging tcp connections in-place
- packet sniffing
The tcptunnel listens on local port < port > and when a connection is made it connects the other end of the tunnel as follows:
a) With no proxy specified, it connects the other end
to < srvport > on < srv >.
b) With a proxy, it connects to < srvport > on < proxy >.
It then directs the proxy to telnet to < srv >, and then it connects the ends of the tunnel.
Download (0.005MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1213 downloads
PPTP Client 1.7.1
PPTP Client allows you to connect to a PPTP server from a Linux box. more>>
PPTP Client allows you to connect to a PPTP server from a Linux box. It sets up a PPTP connection, after which the PPP daemon establishes a PPP link over that PPTP call.
So youd like to run a PPTP tunnel from your Linux, FreeBSD, NetBSD or OpenBSD system? Need to connect to your employers VPN? Just got ADSL? We suggest that you:
find documentation on our site that matches your distribution, or use our generic instructions,
download and install the software according to the instructions,
refer to our Diagnosis HOWTO if you experience problems,
join our mailing list and ask for help, and
contribute to the project by helping us to improve the documentation or software.
Main features:
- compatible with the Linux PPTP Server,
- compatible with Microsoft Windows VPN Server,
- compatible with many ADSL service providers,
- compatible with Cisco PIX,
- supports 128-bit stateless encryption using MPPE,
- supports on-demand or persistent tunnels using pppd psuedo-tty support,
- supports synchronous HDLC PPP encoding,
- supports reordering of out of order packets,
- runs on Linux, FreeBSD, NetBSD and OpenBSD.
<<lessSo youd like to run a PPTP tunnel from your Linux, FreeBSD, NetBSD or OpenBSD system? Need to connect to your employers VPN? Just got ADSL? We suggest that you:
find documentation on our site that matches your distribution, or use our generic instructions,
download and install the software according to the instructions,
refer to our Diagnosis HOWTO if you experience problems,
join our mailing list and ask for help, and
contribute to the project by helping us to improve the documentation or software.
Main features:
- compatible with the Linux PPTP Server,
- compatible with Microsoft Windows VPN Server,
- compatible with many ADSL service providers,
- compatible with Cisco PIX,
- supports 128-bit stateless encryption using MPPE,
- supports on-demand or persistent tunnels using pppd psuedo-tty support,
- supports synchronous HDLC PPP encoding,
- supports reordering of out of order packets,
- runs on Linux, FreeBSD, NetBSD and OpenBSD.
Download (0.057MB)
Added: 2006-08-21 License: GPL (GNU General Public License) Price:
1171 downloads
Tunnel Vision 1.0
TunnelVision creates an encrypted VirtualPrivateNetwork, or VPN, between two Tunnel Vision-capable sites on the Internet. more>>
TunnelVision creates an encrypted VirtualPrivateNetwork, or VPN, between two Tunnel Vision-capable sites on the Internet.
TunnelVision creates an encrypted VirtualPrivateNetwork?, or VPN, between two Tunnel Vision-capable sites on the Internet. Realistically, that means sites with a Linux server running TunnelVision or with a WorldvisionsWeaver? or NetIntegrator acting as their Internet gateway.
TunnelVision requires a Linux 2.2.x kernel or later for running properly. Were sorry about that, but we wanted to use the new features.
Enhancements:
- Also known as 0.70pre2.
- Lots of underlying library changes as WvStreams v2 was debugged.
- A new way of handling strings and lists makes things prettier.
- Several bug fixes resulting from the use of our new stresstest program.
- Connections regenerate themselves after the 10-minute idle timeout.
- All known bugs have been eliminated.
<<lessTunnelVision creates an encrypted VirtualPrivateNetwork?, or VPN, between two Tunnel Vision-capable sites on the Internet. Realistically, that means sites with a Linux server running TunnelVision or with a WorldvisionsWeaver? or NetIntegrator acting as their Internet gateway.
TunnelVision requires a Linux 2.2.x kernel or later for running properly. Were sorry about that, but we wanted to use the new features.
Enhancements:
- Also known as 0.70pre2.
- Lots of underlying library changes as WvStreams v2 was debugged.
- A new way of handling strings and lists makes things prettier.
- Several bug fixes resulting from the use of our new stresstest program.
- Connections regenerate themselves after the 10-minute idle timeout.
- All known bugs have been eliminated.
Download (0.099MB)
Added: 2006-07-14 License: GPL (GNU General Public License) Price:
1197 downloads
Ghoti IRC Client 0.86
Ghoti is a GUI-based IRC Client for unix/linux. more>>
Ghoti is a GUI-based IRC Client for unix/linux, written in Perl, and distributed under the GPL. Ghoti IRC Client has an uncanny similarity to mIRC.
Main features:
- Multi-server support
- Fully customisable GUI
- DCC Resume support
- Support for mIRC colours
- Robust CTCP flood protection
- Built in XDCC/CDCC file offering
- On-event sounds (if you really must)
<<lessMain features:
- Multi-server support
- Fully customisable GUI
- DCC Resume support
- Support for mIRC colours
- Robust CTCP flood protection
- Built in XDCC/CDCC file offering
- On-event sounds (if you really must)
Download (0.15MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1190 downloads
prtunnel 0.2.7
prtunnel is a program that can tunnel TCP/IP connections in a variety of ways. more>>
prtunnel is a program that can tunnel TCP/IP connections in a variety of ways, including through HTTP and SOCKS5 proxy servers. Some if its possible uses include:
- Tunneling TCP connections from client programs to a remote server through an HTTP or SOCKS5 proxy (useful if youre behind such a proxy and want to use a program that doesnt have native proxy support)
- Tunneling TCP connections from SOCKS-capable client programs through an HTTP or SOCKS5 proxy
- Tunneling TCP connections from an IPv4 client program to an IPv6 server and vice-versa
- Forwarding TCP connections
- Running as a simple SOCKS proxy server
prtunnel project was developed and used under Linux and BSD-based operating systems.
Enhancements:
- A bug that would cause malloc(0) to be called in some situations (which could cause problems on some systems) has been fixed.
- The server timeout, if specified, is now set before the proxy server successfully connects to the remote server, which will prevent the program from hanging if the proxy does not respond to the client.
<<less- Tunneling TCP connections from client programs to a remote server through an HTTP or SOCKS5 proxy (useful if youre behind such a proxy and want to use a program that doesnt have native proxy support)
- Tunneling TCP connections from SOCKS-capable client programs through an HTTP or SOCKS5 proxy
- Tunneling TCP connections from an IPv4 client program to an IPv6 server and vice-versa
- Forwarding TCP connections
- Running as a simple SOCKS proxy server
prtunnel project was developed and used under Linux and BSD-based operating systems.
Enhancements:
- A bug that would cause malloc(0) to be called in some situations (which could cause problems on some systems) has been fixed.
- The server timeout, if specified, is now set before the proxy server successfully connects to the remote server, which will prevent the program from hanging if the proxy does not respond to the client.
Download (0.020MB)
Added: 2006-03-13 License: BSD License Price:
1325 downloads
autotunnel 1.3
Autotunnel is a small Project for setting up ipip-tunnel automatically. more>>
Autotunnel is a small Project for setting up ipip-tunnel automatically. This can give you the possibility to have a static ip address although you get a dynamic address by your dial-in provider. You need Linux-2.2.x or 2.4.x kernel on the server and the client to run it. (with ipip support of course)
A client have to connect to an autotunnel daemon, which is setting up the ipip tunnel after the client has authentificated. Authentification is done via PAM, SSL encrypted. So you need libpam and libssl libcrypt
Change into the diectory where you unpacked the tar-ball. Have a look at the Makefile and type make and make install . If you need a new certificate - key pair type make key
The certificate and key is installed /var/autotunnel.
<<lessA client have to connect to an autotunnel daemon, which is setting up the ipip tunnel after the client has authentificated. Authentification is done via PAM, SSL encrypted. So you need libpam and libssl libcrypt
Change into the diectory where you unpacked the tar-ball. Have a look at the Makefile and type make and make install . If you need a new certificate - key pair type make key
The certificate and key is installed /var/autotunnel.
Download (0.014MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1214 downloads
SMM++ Mud Client 6.1.1
SMM++ Mud Client project is a client with mapping functionality and lots of other features. more>>
SMM++ Mud Client project is a client with mapping functionality and lots of other features.
SMM++ Mud Client is a mud client with extended and unique features.
Aside from all standard mud client functionality like ANSI color support, aliases, action triggers, and tab-completion, SMM++ features a highly-customizable user interface (labels, buttons, and menus) and unique and powerful mapping capabilities, and SMM++ is the only mapping crossplatform (Tcl/Tk based) mud client available.
Enhancements:
- ::smm::action replaced with ::smm::reaction (pretty stable)
Added:
- ::smm::pasteok hook (not tested extensively, yet)
<<lessSMM++ Mud Client is a mud client with extended and unique features.
Aside from all standard mud client functionality like ANSI color support, aliases, action triggers, and tab-completion, SMM++ features a highly-customizable user interface (labels, buttons, and menus) and unique and powerful mapping capabilities, and SMM++ is the only mapping crossplatform (Tcl/Tk based) mud client available.
Enhancements:
- ::smm::action replaced with ::smm::reaction (pretty stable)
Added:
- ::smm::pasteok hook (not tested extensively, yet)
Download (0.24MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1082 downloads
Piorun Jabber Client 0.1.0
Piorun Jabber Client is a Jabber client for Gnome with user interface simmilar to IRC clients. more>>
Piorun Jabber Client is a Jabber client for Gnome with user interface simmilar to IRC clients.
Currenly implemented features include: standard chat, multi-user chat, roster and subscriptions management, VCards, privacy lists, secure connections (TLS and SALSL).
Piorun is written using Mono/Gtk#
<<lessCurrenly implemented features include: standard chat, multi-user chat, roster and subscriptions management, VCards, privacy lists, secure connections (TLS and SALSL).
Piorun is written using Mono/Gtk#
Download (0.22MB)
Added: 2005-09-02 License: GPL (GNU General Public License) Price:
1514 downloads
Tunnel 1.2.1
Tunnel project is a simple game involving a ball going down a tunnel. more>>
Tunnel project is a simple game involving a ball going down a tunnel.
Tunnel is a game in which you control a capsule going down a tunnel, shooting other balls in the way. In the process you should pick up power-ups and avoid collisions with enemy balls coming your way.
During the game, you can fire at other balls. They break into fragments which can damage your capsule, so beware.
If the game is too slow on your computer, try using a lower resolution, either using command line options or by modifying the options files.
Tunnel is free software released under the GPL.
<<lessTunnel is a game in which you control a capsule going down a tunnel, shooting other balls in the way. In the process you should pick up power-ups and avoid collisions with enemy balls coming your way.
During the game, you can fire at other balls. They break into fragments which can damage your capsule, so beware.
If the game is too slow on your computer, try using a lower resolution, either using command line options or by modifying the options files.
Tunnel is free software released under the GPL.
Download (0.40MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1087 downloads
Ping Tunnel 0.61
Ping Tunnel is a tool for reliably tunneling TCP connections over ICMP echo request. more>>
Ptunnel is an application that allows you to reliably tunnel TCP connections to a remote host using ICMP echo request and reply packets, commonly known as ping requests and replies. At first glance, this might seem like a rather useless thing to do, but it can actually come in your help in some cases.
Setting: Youre on the go, and stumble across an open wireless network. The network gives you an IP address, but wont let you send TCP or UDP packets out to the rest of the internet, for instance to check your mail. What to do? By chance, you discover that the network will allow you to ping any computer on the rest of the internet. With ptunnel, you can utilize this feature to check your mail, or do other things that require TCP.
Main features:
- Tunnel TCP using ICMP echo request and reply packets
- Connections are reliable (lost packets are resent as necessary)
- Handles multiple connections
- Acceptable bandwidth (150 kb/s downstream and about 50 kb/s upstream are the currently measured maximas for one tunnel, but with tweaking this can be improved further)
- Authentication, to prevent just anyone from using your proxy
<<lessSetting: Youre on the go, and stumble across an open wireless network. The network gives you an IP address, but wont let you send TCP or UDP packets out to the rest of the internet, for instance to check your mail. What to do? By chance, you discover that the network will allow you to ping any computer on the rest of the internet. With ptunnel, you can utilize this feature to check your mail, or do other things that require TCP.
Main features:
- Tunnel TCP using ICMP echo request and reply packets
- Connections are reliable (lost packets are resent as necessary)
- Handles multiple connections
- Acceptable bandwidth (150 kb/s downstream and about 50 kb/s upstream are the currently measured maximas for one tunnel, but with tweaking this can be improved further)
- Authentication, to prevent just anyone from using your proxy
Download (0.047MB)
Added: 2006-07-04 License: BSD License Price:
1234 downloads
ssh tunnel on demand 1.0
ssh tunnel on demand provides a script that creates an SSH tunnel on demand. more>>
ssh tunnel on demand provides a script that creates an SSH tunnel on demand.
ssh tunnel on demand is a script that makes it possible for a user to create an SSH tunnel to a server and connect to it without needing an account on the box or any experience with SSH.
It was written for users that wanted to connect to Usermin at a remote site. Users enter information into a Web form and the server then connects an SSH tunnel to the remote Usermin server and redirects the browser through the tunnel.
<<lessssh tunnel on demand is a script that makes it possible for a user to create an SSH tunnel to a server and connect to it without needing an account on the box or any experience with SSH.
It was written for users that wanted to connect to Usermin at a remote site. Users enter information into a Web form and the server then connects an SSH tunnel to the remote Usermin server and redirects the browser through the tunnel.
Download (0.013MB)
Added: 2007-04-17 License: GPL (GNU General Public License) Price:
933 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above https tunnel client 2.3 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed