$Id: README,v 1.4 2003/08/07 12:21:05 lha Exp $ HLS hls is a kex gssapi enabled ssh client (no gss userauth support) it uses a readonly dsa/ssh hostkey keystore (ie doesn't add keys) userauth mechs: publickey (using a ssh-agent), external-keyx, and passwd kex algs are: gss and dh host algs are: rsa and dsa agent forwarding (openssh flavor, not the ssh-agent draft) x11 forwarding Homepage: http://people.su.se/~lha/hls/ : lha@nutcracker ; ./hls --version hls 0.98 Copyright 2003 Love Hörnquist Åstrand Send bug-reports to lha@it.su.se : lha@nutcracker ; uname -rsmn NetBSD nutcracker.stacken.kth.se 1.6U i386 : lha@nutcracker ; klist Credentials cache: FILE:/tmp/krb5cc_00000194aa Principal: lha@SU.SE Issued Expires Principal Aug 3 22:15:34 Aug 4 08:15:28 krbtgt/SU.SE@SU.SE : lha@nutcracker ; ./hls -l lha hummel.it.su.se Trying to connect to hummel.it.su.se (2001:6b0:5:1095:250:fcff:fe24:dbf)...done. Last login: Sun Aug 3 21:44:28 2003 from cimex.it.su.se FreeBSD 4.8-RC (SU-GENERIC) #0: Tue Apr 1 16:19:37 CEST 2003 Welcome to FreeBSD! : lha@hummel ; klist Credentials cache: FILE:/tmp/krb5cc_6333_D24738 Principal: lha@SU.SE Issued Expires Principal Aug 3 22:59:21 Aug 4 08:15:28 krbtgt/SU.SE@SU.SE Aug 3 22:59:22 Aug 4 08:15:28 afs@SU.SE : lha@hummel ; hls> status version: hls 0.98 server version: SSH-1.99-OpenSSH_3.6.1 NetBSD_Secure_Shell-20030403 remote host: hummel.it.su.se kex: diffie-hellman-group1-sha1 in crypto: blowfish-cbc out crypto: blowfish-cbc seq in: 19 out: 19 agent forwarding is off, x11 forwarding is on channels: pty channel hls> : lha@hummel ; exit logout Connection to hummel.it.su.se closed. : lha@nutcracker ; ./hls hummel.it.su.se 'date ; echo foo >&2' Sun Aug 3 22:58:24 CEST 2003 foo : lha@nutcracker ; : lha@nutcracker ; ./hls --agent-forward vr.l.nxs.se ssh-add -l | grep dsa 2048 65:ca:52:77:1c:73:3f:42:9d:7b:ac:ea:2a:a1:03:a3 /home/lha/.ssh/id_dsa (DSA) /* * Copyright (c) 2003 Love Hörnquist Åstrand * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. Neither the name of the Love Hörnquist Åstrand nor the names of * the contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY LOVE HÖRNQUIST ÅSTRAND AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LOVE HÖRNQUIST * ÅSTRAND OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * Copyright (c) 2000 Niels Provos. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * Copyright (c) 1995 - 2003 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. Neither the name of the Institute nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */