summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sshconnect.c
AgeCommit message (Collapse)Author
2004-05-08kill a tiny header; ok deraadt@Damien Miller
2004-01-25reset nonblocking flag after ConnectTimeout > 0 connect; (bugzilla #785)Damien Miller
from jclonguet AT free.fr; ok millert@
2003-12-09rename keepalive to tcpkeepalive; the old name causes too muchMarkus Friedl
confusion; ok djm, dtucker; with help from jmc@
2003-11-21unexpand and delete whitespace at EOL; ok markus@Damien Miller
2003-11-12update SSHFP validation. ok markus@Jakob Schlyter
2003-11-10constify. ok markus@ & djm@Jakob Schlyter
2003-11-03do not free static type pointer in warn_changed_key()Jakob Schlyter
2003-11-03move changed key warning into warn_changed_key(). ok markus@Jakob Schlyter
2003-10-14include SSHFP lookup code (not enabled by default). ok markus@Jakob Schlyter
2003-09-18missing {}; bug #656; jclonguet at free.frMarkus Friedl
2003-06-29memset 0, not \0; andrushock@korovino.netMarkus Friedl
2003-06-28deal with typing of write vs read in atomicioTheo de Raadt
2003-06-11clean up check_host_key() and improve SSHFP feedback. ok markus@Jakob Schlyter
2003-06-04disable challenge/response and keyboard-interactive auth methods upon hostkeyDamien Miller
mismatch. based on patch from fcusack AT fcusack.com. bz #580; ok markus@
2003-05-26fix format strings; ok markus@Damien Miller
2003-05-23fix leak; ok markus@Damien Miller
2003-05-15add a ConnectTimeout option to ssh, based on patch fromDamien Miller
Jean-Charles Longuet (jclonguet at free.fr); portable #207 ok markus@
2003-05-14add experimental support for verifying hos keys using DNS as describedJakob Schlyter
in draft-ietf-secsh-dns-xx.txt. more information in README.dns. ok markus@ and henning@
2003-04-14avoid hardcoded SOCK_xx; with itojun@; should allow ssh over SCTPMarkus Friedl
2003-04-08rename log() into logit() to avoid name conflict. markus ok, from netbsdJun-ichiro itojun Hagino
2002-11-21KNFTheo de Raadt
2002-11-21debug->debug2, unify debug messagesMarkus Friedl
2002-09-19bugzilla.mindrot.org #223 - ProxyCommands don't exit.Damien Miller
Patch from dtucker@zip.com.au; ok markus@
2002-09-13remove use of SO_LINGER, it should not be needed. error checkKevin Steves
SO_REUSEADDR. fixup comments. ok markus@
2002-07-29print file:lineMarkus Friedl
2002-07-24print out all known keys for a host if we get a unknown host key,Markus Friedl
see discussion at http://marc.theaimsgroup.com/?t=101069210100016&r=1&w=4 the ssharp mitm tool attacks users in a similar way, so i'd like to pointed out again: A MITM attack is always possible if the ssh client prints: The authenticity of host 'bla' can't be established. (protocol version 2 with pubkey authentication allows you to detect MITM attacks)
2002-07-12print connect failure during debugging mode.Jun-ichiro itojun Hagino
2002-07-10bark if all connection attempt fails.Jun-ichiro itojun Hagino
2002-07-09ed static function (less warnings)Jun-ichiro itojun Hagino
2002-07-09silently try next address on connect(2). markus okJun-ichiro itojun Hagino
2002-06-27more checks for NULL pointers; from grendel@zeitbombe.org; ok deraadt@Markus Friedl
2002-06-23various KNF and %d for unsignedTheo de Raadt
2002-06-19KNF done automatically while reading....Theo de Raadt
2002-06-11no longer use uidswap.[ch] from the ssh clientMarkus Friedl
run less code with euid==0 if ssh is installed setuid root just switch the euid, don't switch the complete set of groups (this is only needed by sshd). ok provos@
2002-06-09pass salen to sockaddr_ntop so that we are happy on linux/solarisJun-ichiro itojun Hagino
2002-06-09abort() - > fatal()Markus Friedl
2002-06-08always use getnameinfo. (diag message only)Jun-ichiro itojun Hagino
2002-05-23add /usr/libexec/ssh-keysign: a setuid helper program for hostbased ↵Markus Friedl
authentication in protocol v2 (needs to access the hostkeys).
2002-01-21use read_passphrase+ECHO in confirm(), allows use of ssh-askpassMarkus Friedl
for hostkey confirm.
2001-12-19basic KNF done while i was looking for something elseTheo de Raadt
2001-12-06shutdown(sock, SHUT_RDWR) not needed here; ok markus@Kevin Steves
2001-12-05minor KNFTheo de Raadt
2001-10-08some more IPv4or6 cleanupMarkus Friedl
2001-10-08use correct family for -b optionMarkus Friedl
2001-10-06unify hostkey check error messages, simplify prompt.Markus Friedl
2001-10-06remove unused argumentMarkus Friedl
2001-10-01add NoHostAuthenticationForLocalhost; note that the hostkey isMarkus Friedl
now check for localhost, too.
2001-07-25cleanup connect(); connection_attempts 4 -> 1; from eivind@freebsd.orgMarkus Friedl
2001-06-23more strict prototypes. raise warning level in Makefile.inc. markus ok'edJun-ichiro itojun Hagino
TODO; cleanup headers
2001-06-23get rid of known_hosts2, use it for hostkey lookup, but do not modify.Markus Friedl